pystall
Version 0.3.0
리소스 설치 및 구성을 자동화하는 시스템.
pip install pystall 또는 pip3 install pystall 사용하여 PYPI에서 프로젝트를 설치할 수 있습니다.
github 버튼 또는 git clone https://github.com/Descent098/pystall 사용 하여이 소스 repo를 복제하십시오.
그런 다음 루트 디렉토리 (setup.py가있는)에서 pip install . 또는 sudo pip3 install . 패키지를 설치하고 종속성입니다.
이 스크립트는 Python 3 Installer (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/latest/
보다 자세한 로드맵은 github의 프로젝트 계획위원회를 확인하십시오 : https://github.com/descent098/pystall/projects/1
Pystall은 다음과 같습니다.
Pystall은 다음과 같습니다.