-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
There was a game breaking bug where we didn't actually return the completed process, so there was no way to actually capture the output. Updated the version and documentation
- Loading branch information
Showing
5 changed files
with
46 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,23 @@ | ||
# pyshell | ||
A Linux subprocess module, An easier way to interact with the Linux shell | ||
>pyshell should be cross platform but has only been tested with linux | ||
# Installation | ||
`$ pip install https://github.com/volitank/pyshell/releases/download/v1.0.0.a1/pyshell-1.0.0a1-py3-none-any.whl` | ||
|
||
or | ||
|
||
`$ pip install https://github.com/volitank/pyshell/releases/download/v1.0.0.a1/pyshell-1.0.0a1.tar.gz` | ||
|
||
To install the directly from the source code you can use | ||
|
||
`$ pip install https://github.com/volitank/pyshell/archive/refs/heads/main.tar.gz` | ||
|
||
# Usage | ||
|
||
from pyshell import pyshell | ||
shell = pyshell() | ||
shell.echo('Hello', "GitHub!") | ||
# Docs | ||
|
||
A Linux subprocess module, An easier way to interact with the Linux shell | ||
>pyshell should be cross platform but has only been tested with linux | ||
# Installation | ||
|
||
You can install a specific release by running | ||
|
||
`$ pip install https://github.com/volitank/pyshell/releases/download/v1.0.0a2/pyshell-1.0.0a2.tar.gz` | ||
|
||
While we're still in early development stages it is preferred that you run directly from the git | ||
|
||
`$ pip install https://github.com/volitank/pyshell/archive/refs/heads/main.tar.gz` | ||
|
||
# Usage | ||
|
||
from pyshell import pyshell | ||
shell = pyshell() | ||
shell.echo('Hello', "GitHub!") | ||
|
||
# Docs | ||
|
||
Check out the Official [Documentation](https://volitank.com/pyshell/index.html) for help with syntax and different arguments |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters