A fantastic shell command runner for python
Project description
shelltastic
Install
pip install shelltastic
Basic Usage
Run shell commands on a local host:
from shelltastic import shell
# Straight commands
shell.run("echo Hello World!")
# Or safely escape input
text = "Hello World!"
shell.run(["echo", text])
It's easy to run on a remote host using SSH with the same interface:
from shelltastic import shell
# Run command on host with default username and port
shell.host("example.com").run("echo Hello World!")
# Specifying Username and Port
shell.host("example.com", username="root", port=22).run("echo Hello World!")
To copy files to/from hosts use the scp frontend:
from shelltastic import scp
scp.host("example.com").send(...)
scp.host("example.com").receive(...)
To interact with git, there's a git frontend:
from shelltastic import git
git.clone(...)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
shelltastic-0.4.9.tar.gz
(13.1 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file shelltastic-0.4.9.tar.gz.
File metadata
- Download URL: shelltastic-0.4.9.tar.gz
- Upload date:
- Size: 13.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.19 {"installer":{"name":"uv","version":"0.11.19","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Linux Mint","version":"22.3","id":"zena","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
74b3024786e7246cf9150a03617e2aa76a62b12c497f8843e57581361c6d2ff0
|
|
| MD5 |
1bb6d63710845a00ca16d106c5a47a7a
|
|
| BLAKE2b-256 |
5447f7043d42254407a6b0a9e54b4f07cfdb17e08a5f148e17ad75f588484cf2
|
File details
Details for the file shelltastic-0.4.9-py3-none-any.whl.
File metadata
- Download URL: shelltastic-0.4.9-py3-none-any.whl
- Upload date:
- Size: 19.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.19 {"installer":{"name":"uv","version":"0.11.19","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Linux Mint","version":"22.3","id":"zena","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
aba78269caea7f0b45c9c8974ac92050e305d764fd0cc5563b8bcb2963a193e2
|
|
| MD5 |
6d62c18a80afd97f9cfe87da0a1bdc6a
|
|
| BLAKE2b-256 |
f036c7d278302f850557ebfa298f269aeb80720ce4425432bc9a07f7bdceddf7
|