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不是: