pystall
Version 0.3.0
自动化资源安装和配置的系统。
您可以使用pip install pystall或pip3 install pystall从PYPI安装项目
使用github按钮或git clone https://github.com/Descent098/pystall克隆此源回购
然后在根目录(带有设置的一个)中运行pip install .或sudo pip3 install .这将安装软件包及其依赖项。
该脚本显示下载Python 3安装程序(A .EXE)GO Installer(a .msi)和徽标映像(a .png)。
from pystall . core import EXEResource , MSIResource , StaticResource , build
python = EXEResource ( "python-installer" , "https://www.python.org/ftp/python/3.8.1/python-3.8.1.exe" )
go = MSIResource ( "Golang" , "https://dl.google.com/go/go1.13.5.windows-amd64.msi" )
logo = StaticResource ( "Wallpaper" , ".png" , "https://canadiancoding.ca/static/img/post-banners/python-post-banner.9bf19b390832.png" )
build ( python , go , logo )还可以选择使用已设置的内置资源库。
from pystall . core import build
from pystall . library import python , go , micro
build ( python , go , micro )如果要在脚本运行时要日志,则可以在核心库中使用show_logs()函数
from pystall . core import build , show_logs
from pystall . library import python , go , chrome , micro
show_logs ()
build ( python , go , chrome , micro )有关可用库资源的完整列表,如何扩展特定功能的框架以及开发指南,如果您想贡献,请检查文档:https://pystall.readthedocs.io/en/en/latest/
有关更多详细的路线图
Pystall是:
Pystall不是: