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 hashes)
Built Distribution
Close
Hashes for paramiko_stat-0.2-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 655101eb9d31b7768c32c2c3702a72b0209b182688a27f04f047872e99e06bec |
|
MD5 | 3a6f802d1563290c14ddb34a7a672c7c |
|
BLAKE2b-256 | 14dbb69f0eb2edb308a1ab4d846f1895864a07da4435b56333dc0aa900de33b2 |