SSH connector for Linux systems
Project description
sshcon ⚡
Python SSH connector for linux systems
Python SSH connector for linux systems based on super fast SSH2 protocol library -> ssh2-python.
Installation
pip install sshcon
How to use
Make sure you check readthedocs!
from sshcon.main import SshCon
hostname = "myserver"
ssh_user = "myuser"
ssh_key = "/home/user/.ssh/mykey"
ssh = SshConn(hostname, ssh_user, ssh_key)
# Run command and save output to the variable
ls = ssh.run(["ls", "-latr", path("/mnt"], capture_output=True, check=True).stdout
# Mount directory
ssh.mount(source="storage:/data", "/mnt", force=True, mkdir=True)
# Remove files
ssh.remove("/my/folder/*.tar", force=True)
# Read text
text = ssh.read_text("/folder/text.txt")
# Write text
ssh.write_text("Hey!", "/folder/text.txt")
# Check if file
if ssh.isfile("/my/file):
print("It's a file!")
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
sshcon-0.3.3.tar.gz
(7.4 kB
view details)
Built Distribution
File details
Details for the file sshcon-0.3.3.tar.gz
.
File metadata
- Download URL: sshcon-0.3.3.tar.gz
- Upload date:
- Size: 7.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.9.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 17e03c937589e7bcd97df5c7055b4a93447c9787fe0c16226b8594278eb7f66f |
|
MD5 | acf28e803182ec2bef946793af5cda1f |
|
BLAKE2b-256 | d958e017585df964e52314d87b6bf41b31df233b8c0deea310096c1c030f8e15 |
File details
Details for the file sshcon-0.3.3-py3-none-any.whl
.
File metadata
- Download URL: sshcon-0.3.3-py3-none-any.whl
- Upload date:
- Size: 6.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.9.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 96289abb603cc8a6db17dfcd2aaa0e4bf1d9a61ddc7bbf94eff39ecf4ab2db99 |
|
MD5 | 89f2da0ba70f6eee1cd38015bb9e75be |
|
BLAKE2b-256 | aed2ba7e6755d3800031d2c685f42eff5cc5747c46327ba606980bceb60095e9 |