https://github.com/nanvenomous/syspy
general system helpers from python
https://github.com/nanvenomous/syspy
Last synced: 7 months ago
JSON representation
general system helpers from python
- Host: GitHub
- URL: https://github.com/nanvenomous/syspy
- Owner: nanvenomous
- License: mit
- Created: 2019-03-18T03:20:24.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2020-04-24T23:25:35.000Z (over 5 years ago)
- Last Synced: 2025-01-25T19:30:40.693Z (9 months ago)
- Language: Python
- Size: 71.3 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: license
Awesome Lists containing this project
README
# About
Syspy is a convient library for spinning up command line tools in python[on test pypi](https://test.pypi.org/project/syspy/)
[on github](https://github.com/mrgarelli/PySys)
# Testing
> python3 -m pytest# Installation
### new install from test-pypi
> python3 -m pip install -i https://test.pypi.org/simple/ syspy### upgrade the python package
> python3 -m pip install --upgrade -i https://test.pypi.org/simple/ syspy# Usage
simply run the following in any python3 script:```
from syspy import Shell
from syspy.tools import getInputs, parseOptions
```