Extensive SSH/SFTP/SCP/FTP handler built on Paramiko, for test automation, CLIs and PyQt5 tools.
Project description
ssh-handler
An extensive SSH / SFTP / SCP / FTP automation handler built on Paramiko. One package, three ways to use it:
- Test-automation framework — raise-on-error API, pytest fixtures, parallel fleet ops.
- Standalone CLI —
python -m ssh_handler …, fully argument-driven. - PyQt5 tool — safe mode + log streaming over Qt signals, runs off the GUI thread.
Passwords are wrapped in a Secret and stored in the OS credential vault — they
never appear in logs, reprs, tracebacks, or on disk in plaintext.
pip install ssh-handler
Table of contents
- Why this package
- Install
- Quick start
- What you can do — full capability list
- Domain / Windows (RDP) hosts
- Confidential credentials
- Performance
- Error handling: two styles
- Result objects
- CLI reference
- PyQt5 integration
- Parallel fleet operations
- FTP / FTPS
- API map
- Releasing
Why this package
Paramiko is powerful but low-level: you manage clients, transports, channels,
SFTP sessions, timeouts, retries, host-key policies and error handling yourself,
and you repeat that boilerplate in every project. ssh-handler wraps all of it
behind one object that:
- auto-selects the right authentication strategy (password, key, agent, empty password),
- retries connections and transparently reconnects dropped sessions,
- returns structured results for every action instead of raw strings,
- keeps passwords confidential end-to-end,
- and exposes the same surface whether you're in a test, a CLI, or a GUI.
Install
pip install ssh-handler # core (paramiko only)
pip install "ssh-handler[secure]" # + keyring (OS credential vault)
pip install "ssh-handler[scp]" # + scp (SCP-protocol transfers)
pip install "ssh-handler[gui]" # + PyQt5 (the GUI worker)
pip install "ssh-handler[all]" # everything
scp, keyring, and PyQt5 are optional — the core works without them, and
those features raise a clear, actionable message if you use them without the extra.
Quick start
from ssh_handler import SSHHandler, SSHConfig
with SSHHandler(SSHConfig(host="10.0.0.5", username="root", password="pw")) as ssh:
print(ssh.run("uptime").stdout)
ssh.run("systemctl restart nginx", check=True) # raises on non-zero exit
ssh.push("local.txt", "/tmp/remote.txt") # SFTP upload
ssh.pull("/etc/nginx", "./backup", recursive=True) # recursive download
What you can do
Connection & session
- Connect with password, private key (+ passphrase), SSH agent, auto-discovered keys, or an empty-password account — all auto-tried in a smart order.
- Auto-retry connects with backoff; auto-reconnect if a session drops.
- Keepalives, per-command and connection timeouts, optional compression.
- Jump host / bastion chaining (ProxyJump-style) via
SSHConfig(jump_host=…). - Host-key policy:
auto/reject/warn, with an optionalknown_hostsfile. - Remote-OS awareness (
detect_os(),is_windows) for Linux and Windows targets. - Raw escape hatch:
ssh.clientandssh.transportexpose the underlying Paramiko objects.
Command execution
run()— timeout,check(raise on non-zero), PTY allocation, custom environment.run_many()— batch with stop-on-error.sudo()— runssudo -Sand feeds the password on stdin.open_shell()— a persistent interactiveShellSessionwithsend/read_until(send-expect) /read_available.
File operations (SFTP) — full Paramiko parity
- Transfers:
push/pull(single file or recursive directory, with progress callbacks and transfer statistics), plusscp_push/scp_pull(SCP protocol). - Listing & metadata:
listdir,listdir_attr,stat,lstat,exists,isdir,walk. - Directories:
mkdir,makedirs(recursivemkdir -p),rmdir. - Files:
remove,rename,open(remote file object),read_text,write_text. - Permissions & links:
chmod,chown,symlink,readlink.
Other protocols
- FTP / FTPS via
FTPHandler(standard-libraryftplib, no extra dependency): connect, login, TLS,push,pull,listdir,cwd,pwd,mkdir,rmdir,remove,rename,size,exists.
Scale & integration
SSHPool— run the same command/transfer across many hosts in parallel threads.- Safe mode + log callback for GUIs; structured result objects everywhere.
- Confidential credential storage in the OS vault (
CredentialStore,Secret,mask).
Domain / Windows (RDP) hosts
The Windows machines you normally RDP into can be driven over SSH once OpenSSH Server is enabled on them:
Add-WindowsCapability -Online -Name OpenSSH.Server~~~~0.0.1.0
Start-Service sshd ; Set-Service -Name sshd -StartupType Automatic
Then log in with your normal domain credentials. Pass domain and username
separately — never hard-code a single "DOMAIN\user" Python string, because a
backslash escape (e.g. \n, \t) silently becomes a control character. The
handler builds the DOMAIN\user login string for you:
from ssh_handler import SSHHandler, SSHConfig, CredentialStore
store = CredentialStore(service="my_test_lab")
cfg = SSHConfig(
host="10.20.30.40",
domain="CORP", username="myuser", # -> login "CORP\myuser"
password=store.get("CORP\\myuser"), # a Secret pulled from the OS vault
remote_os="windows", # skip the OS probe
fast_auth=True, # skip key probing -> faster login
)
with SSHHandler(cfg) as ssh:
print(ssh.run("whoami").stdout) # CORP\myuser
print(ssh.run("powershell Get-Service sshd").stdout)
ssh.push("report.xlsx", "C:/Users/myuser/Desktop/report.xlsx")
Store the password once so it never appears in code again:
from ssh_handler import CredentialStore, prompt_password
CredentialStore("my_test_lab").set("CORP\\myuser", prompt_password())
# …or from the CLI:
python -m ssh_handler store-credential --user myuser --domain CORP --service my_test_lab
RDP-only Windows hosts: auto-enable SSH once (WinRM bootstrap)
A freshly imaged corporate Windows box often has RDP and WinRM open but no SSH server (port 22 closed). You can't start sshd over SSH when SSH is down — but if WinRM is reachable, the handler can use it as a one-time bootstrap channel.
Set one flag and connect normally:
from ssh_handler import SSHHandler, SSHConfig
cfg = SSHConfig(
host="10.232.9.22", domain="CORP", username="myuser", password="pw",
auto_bootstrap_via_winrm=True, # if SSH is down but WinRM is up, enable sshd, then retry
)
with SSHHandler(cfg) as ssh: # 1st run: enables sshd over WinRM, then connects
print(ssh.run("whoami").stdout) # every later run: connects straight over SSH
It's genuinely one-time. The bootstrap installs the OpenSSH Server capability,
starts sshd with Automatic startup, and adds a persistent firewall rule —
so it survives reboots. After the first run, port 22 is already open and the
handler connects directly over SSH; WinRM is never touched again.
Do it explicitly instead of automatically if you prefer:
ssh = SSHHandler(cfg)
ssh.bootstrap_sshd_via_winrm() # one-time setup
ssh.connect()
Requirements: pip install "ssh-handler[winrm]" (pulls in pywinrm; uses NTLM so
domain creds work without Kerberos), and the account must be a local
administrator on the target. If SSH already works, this code path never runs.
When a connection just fails, the error now self-diagnoses — it probes the SSH and
RDP ports and tells you why (e.g. "Port 22 is closed but RDP (3389) is open … no
SSH server listening"). Call ssh.diagnose() for a pre-flight reachability check.
Confidential credentials
| Mechanism | What it does |
|---|---|
Secret |
wraps a password; str()/repr()/logs show ********; only .reveal() exposes it |
mask() |
redacts secret values from any string (applied automatically to all logging) |
CredentialStore |
stores/reads passwords in the OS vault (Windows Credential Manager / macOS Keychain / Secret Service) via keyring — no plaintext on disk |
prompt_password() |
hidden terminal input, returns a Secret |
Pass a Secret (or a plain string, which is wrapped automatically) anywhere a
password is accepted. It stays redacted across the whole stack.
Performance
fast_auth(default on): when a password is supplied, the slow key/agent probing is skipped — faster logins and no "Too many authentication failures" from the server'sMaxAuthTries.- One SFTP channel is opened lazily and reused across operations.
- SFTP downloads use Paramiko prefetch for high throughput.
remote_os="windows"|"linux"skips the one-time OS-detection probe.compress=Truefor slow/high-latency links; keepalives keep long sessions alive.SSHPoolparallelizes across hosts with a thread pool.
Error handling: two styles
Raise (default) — best for tests/scripts. Typed exceptions, all subclasses of
SSHError:
SSHConnectionError SSHAuthenticationError SSHTimeoutError
SSHCommandError SSHTransferError SSHNotConnectedError
FTPError CredentialError
Safe mode (SSHHandler(cfg, safe=True)) — best for GUIs. Every call returns an
OperationResult instead of raising, so an event loop never dies:
res = ssh.connect()
if not res: # OperationResult is falsy on failure
show_error(res.error)
else:
data = res.value # or res.unwrap() to re-raise on failure
Override per call with safe=True / safe=False.
Result objects
Every action returns structured data, not bare strings:
CommandResult—exit_code,stdout,stderr,duration,host,.ok,.as_dict()TransferResult—size_bytes,duration,speed_bps,human_speed,human_size,filesShellResult—output,matched,timed_out,durationOperationResult— safe-mode wrapper:bool(res),res.value,res.error,res.unwrap()
CLI reference
python -m ssh_handler run --host H --user U --domain CORP uptime
python -m ssh_handler push --host H --user U ./build /tmp/build --recursive
python -m ssh_handler pull --host H --user U /var/log ./logs --recursive
python -m ssh_handler info --host H --user U --json
python -m ssh_handler store-credential --user U --domain CORP --service my_test_lab
Password options: --password (hidden prompt), --use-stored (read from the OS
vault), --key FILE (private key). Add --json for machine-readable output.
After pip install, a ssh-handler console script is also available
(ssh-handler run --host …).
PyQt5 integration
ssh_handler.pyqt_worker.SSHWorker is a QObject wrapping the handler in safe
mode. Move it to a QThread, connect its signals, and drive it from the GUI:
from PyQt5.QtCore import QThread
from ssh_handler import SSHConfig
from ssh_handler.pyqt_worker import SSHWorker
worker = SSHWorker(SSHConfig(host="10.0.0.5", username="root", password=secret))
thread = QThread(); worker.moveToThread(thread)
worker.log.connect(text_edit.append) # live, secret-masked log lines
worker.command_done.connect(on_command_done)
worker.progress.connect(progress_bar.setValue) # bytes_done, bytes_total
thread.started.connect(lambda: worker.run_command("uptime"))
thread.start()
Signals: log, connected, command_done, transfer_done, progress, error,
finished. The import is lazy, so the rest of the package works where PyQt5 isn't installed.
Parallel fleet operations
from ssh_handler import SSHPool, SSHConfig
configs = [SSHConfig(host=h, username="root", password="pw")
for h in ("10.0.0.1", "10.0.0.2", "10.0.0.3")]
with SSHPool(configs, max_workers=8) as pool:
for host, res in pool.run("uptime").items():
print(host, res.value.stdout.strip() if res else res.error)
pool.pull("/var/log/syslog", "logs/{host}_syslog.txt") # {host} avoids collisions
FTP / FTPS
from ssh_handler import FTPHandler, FTPConfig
with FTPHandler(FTPConfig(host="ftp.example.com", username="u",
password="p", use_tls=True)) as ftp:
ftp.push("local.txt", "remote.txt")
ftp.pull("remote.txt", "copy.txt")
print(ftp.listdir("/"))
API map
ssh_handler/
config.py SSHConfig, FTPConfig
credentials.py Secret, CredentialStore, mask, prompt_password
core.py SSHHandler, ShellSession (SSH + SFTP + SCP + diagnose)
ftp.py FTPHandler (FTP / FTPS)
winrm_bootstrap.py enable_openssh_via_winrm (one-time sshd enable over WinRM)
pool.py SSHPool (parallel multi-host)
cli.py argparse entry point (python -m ssh_handler / ssh-handler)
pyqt_worker.py SSHWorker (PyQt5, lazy import)
results.py CommandResult, TransferResult, ShellResult, OperationResult
exceptions.py SSHError hierarchy
examples/examples.py copy-paste recipes
tests/test_offline.py offline checks (no network needed)
Releasing
Maintainers: use the helper to build and publish a new version.
python scripts/release.py 1.0.1 # bump -> build -> twine check -> upload
python scripts/release.py 1.0.1 --dry-run # build + check only, no upload
python scripts/release.py patch # auto-bump patch/minor/major
The token is read from the TWINE_PASSWORD environment variable (username
__token__), never hard-coded. See scripts/release.py and
the optional GitHub Actions workflow (publishes on
a v* tag). PyPI permanently forbids re-uploading an existing version, so each
release must use a new version number.
License
MIT
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
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 ssh_handler-1.0.2.tar.gz.
File metadata
- Download URL: ssh_handler-1.0.2.tar.gz
- Upload date:
- Size: 37.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f003a92a9d42ff65b50fcdcf5a4f19a12e827e625e6cdece40454d9cdcc1a54a
|
|
| MD5 |
f713e50ce5cbdbbb664ad0e7a2eb82be
|
|
| BLAKE2b-256 |
99ce2559cbb9b5e61ced7f860fdc01508aa91304cdcf4e44e1e192e99bab0112
|
File details
Details for the file ssh_handler-1.0.2-py3-none-any.whl.
File metadata
- Download URL: ssh_handler-1.0.2-py3-none-any.whl
- Upload date:
- Size: 34.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
eea3fa099b845807148a4e1a387e83e963cb63ad862668b67872e2229d7b99c2
|
|
| MD5 |
9e0554429caa2d0158b66ab47b3d6a82
|
|
| BLAKE2b-256 |
1cc58721222f7415ff2c7bbb9e363d6fd59fe50a767de94efd007afaba7294ae
|