Wrapper for paramiko with extra stat methods
Project description
paramiko-stat
This is just a wrapper for paramiko with changes included from https://github.com/paramiko/paramiko/pull/1259/files.
Install it from PyPI
pip install paramiko-stat
Usage
from paramiko_stat import SSHClient
ssh = SSHClient()
ssh.connect("127.0.0.1", username="user", ...)
sftp = ssh.open_sftp()
sftp.mkdir("path", mode=700)
Alternatively, a much better practice:
from paramiko import SSHClient
from paramiko_stat import Transport
ssh = SSHClient()
ssh.connect("127.0.0.1", username="user", ..., transport_factory=Transport)
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
paramiko-stat-0.2.tar.gz
(30.5 kB
view details)
Built Distribution
File details
Details for the file paramiko-stat-0.2.tar.gz
.
File metadata
- Download URL: paramiko-stat-0.2.tar.gz
- Upload date:
- Size: 30.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.11.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a437e73ec12d105ccdc5b97e60efd1ec3fbdc321f19ea212989f0fce971ba7cf |
|
MD5 | b286046e150fa3082763212012e87ec6 |
|
BLAKE2b-256 | 850b9b208d69c2f669f45afcf8c024326b00f85387c2a916e096250206d97d99 |
File details
Details for the file paramiko_stat-0.2-py3-none-any.whl
.
File metadata
- Download URL: paramiko_stat-0.2-py3-none-any.whl
- Upload date:
- Size: 17.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.11.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 655101eb9d31b7768c32c2c3702a72b0209b182688a27f04f047872e99e06bec |
|
MD5 | 3a6f802d1563290c14ddb34a7a672c7c |
|
BLAKE2b-256 | 14dbb69f0eb2edb308a1ab4d846f1895864a07da4435b56333dc0aa900de33b2 |