A system to automate configuration and setup of fresh Operating systems.
Project description
A system to automate configuration and setup of fresh Operating systems.
Quick-start
Installation
From PyPi
You can install the project from PyPi using pip install pystall
or pip3 install pystall
From Source
clone this source repo using either the github button or git clone https://github.com/Descent098/pystall
.
Then in the root directory (the one with setup.py) run pip install .
or sudo pip3 install .
. This will install the package and it's dependencies.
Basic Usage
Custom defined resources
This script shows downloading the python 3 installer (a .exe) the go installer (a .msi) and a logo image (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)
Built-in resource library
There is also the option to use the built-in library of resources that have been setup.
from pystall.core import build
from pystall.library import python, go, micro
build(python, go, micro)
Logging
If you want logs while the script runs you can use the show_logs() function in the core library
from pystall.core import build, show_logs
from pystall.library import python, go, chrome, micro
show_logs()
build(python, go, chrome, micro)
Additional Docs
For a full list of available library resources & how to extend the framework for specific functionality check the wiki: https://github.com/Descent098/pystall/wiki
Roadmap
Class that's inherited to setup dependencies- Main python module that can be installed with pip through pypi
Can be used in a python script.- Can be used as a CLI.
Use pyinstaller to run as a direct binary.
- A way of supporting many filetypes (images, video files, installers etc.)
Grab the filesPut them in a particular path if necessary- Run installers if necessary (make sure there is a flag not to run the binary, and that arguments can be passed)
- MacOS Support (needs to be validated)
- A CLI interface
- Pass files with a JSON schema for installing dependencies.
- Configuration of installations
- Handling PATH variables
- Handle running installers as admin.
- Asynchronously download files. (technically already possible with popen but a better solution can be found)
For more detailed roadmap check out the project planning board on github: https://github.com/Descent098/pystall/projects/1
Unknowns
Anything you don't know implementation details of yet.
- Not sure how to implement .dmg installation.
- Don't know how to support unconventional installations. (Maybe out of scope)
- don't necessarily know how to support varying linux installations. Particularly how to check what linux is installed.
Changelog
V 0.0.1 January 5th 2020
Features:
- Created base resource class that can be extended to support multiple file types
- Ability to install binaries from URL or local path (currently limited to .exe and .msi)
- Ability to download static assets from the web (image files, video files etc)
- Ability to download and extract zip archives
- Initial library of predefined resources (15 in total)
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for pystall-0.1.0-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 498854f6c26b3d4c6a7200300a9072f4e3e08051233c6f2343126befc4babfff |
|
MD5 | 4b05f20198d3579628f80b89fcea2ddb |
|
BLAKE2b-256 | 78bac7bdae5983f3ccd825cdbc8594cfe4ad8b68d72974bd1f35aa21f2fb49fb |