jumpssh
Python library for remote ssh calls through a gateway.
What it is and what it does
JumpSSH is a Python library that simplifies running commands and transferring files on remote servers when direct SSH access is not available. It wraps paramiko to handle multi-hop SSH connections through one or more gateway servers, eliminating the need to upload scripts or manually configure SSH tunnels for each bastion host. A single SSH session can execute multiple commands in parallel and retrieve individual results, and the library supports both password and key-based authentication.
The package provides a high-level API for common tasks: executing remote commands and capturing output or exit codes, checking file existence, uploading and downloading files, and making HTTP requests to services accessible only through the gateway. It is designed for developers who need programmatic SSH access without the complexity of low-level paramiko calls or the configuration overhead of Ansible.
Use it for:
- Execute maintenance commands on servers behind a corporate firewall or bastion host without manual SSH tunneling.
- Automate file deployment and log collection across multiple servers reached through a single gateway.
- Query REST APIs running on internal-only hosts by routing requests through an SSH gateway.
- Check package installation status or system state on remote hosts in a multi-hop network topology.
- Build deployment scripts that work with jump servers without modifying local SSH configuration.
Worth the install?
AI-flagged interpretation of the facts on this page — verify before relying
JumpSSH runs commands on remote servers through SSH gateways, supporting multi-hop connections and file operations without uploading scripts to remote hosts.
Yes, if you need multi-hop SSH automation and can tolerate dormant maintenance. The library is stable, has no known vulnerabilities, low install friction, and a permissive license. However, verify that it works with your target Python version and that paramiko updates are sufficient for your security requirements, given that jumpssh itself has not been updated since 2020.
Install
jumpssh on PyPI
pip
pip install jumpsshuv
uv add jumpsshpoetry
poetry add jumpsshInstalling jumpssh
Before you install
Low install friction with a single dependency on paramiko. Maintenance is dormant—last release was 2020-11-06 and no commits since 2024-12-01—but the codebase is stable and archived status is false, suggesting it is maintained in a minimal capacity.
License in practice
MIT license is permissive and imposes no restrictions on use, modification, or redistribution in proprietary or commercial projects.
Quickstart
pip install jumpssh
from jumpssh import SSHSession
gateway = SSHSession('gateway.example.com', 'user', password='pass').open()
remote = gateway.get_remote_session('remote.example.com', password='pass2')
print(remote.get_cmd_output('ls -la'))
Verify before relying
- Whether the package works reliably with modern Python versions beyond 3.9 given the dormant maintenance status.
- Whether paramiko's security updates are automatically inherited or if jumpssh requires explicit updates to stay current.
Package facts
| License | MIT license (permissive) |
| Python support | not specified |
| Install friction | low — pure-Python wheel |
| Runtime dependencies | 1 — paramiko |
| Maintenance | dormant — 2,107 days since the last release |
| Last repo commit | |
| First released | |
| Downloads | 104,180/month — #12,763 on PyPI (30-day window, as of 2026-08-14) |
| Known vulnerabilities | none known (OSV.dev, checked 2026-08-14) |
Evidence: jumpssh-1.6.5-py3-none-any.whl
Tags
More Software Development packages
Provides backported and experimental type hints…
permissive · top 100 on PyPI
numpyNumPy provides an N-dimensional array object…
permissive · top 100 on PyPI
fastapiFastAPI is a Python web framework for building…
permissive · top 100 on PyPI
annotated-docProvides a way to document function parameters,…
permissive · top 100 on PyPI
typerTyper builds command-line applications from…
permissive · top 1,000 on PyPI
distlibDistlib provides low-level packaging utilities…
permissive · top 1,000 on PyPI
sshtunnelEstablishes SSH tunnels to forward local ports…
permissive · top 1,000 on PyPI
paramiko-expectParamiko Expect adds expect-like pattern…
permissive · top 15,000 on PyPI
scpProvides file transfer over SSH using the SCP…
copyleft · top 5,000 on PyPI
paramikoParamiko is a pure-Python SSH protocol library…
copyleft · top 1,000 on PyPI
fabric2Fabric executes shell commands remotely over…
permissive · top 15,000 on PyPI
fabricFabric executes shell commands remotely over…
permissive · top 5,000 on PyPI
fs.sshfsfs.sshfs provides a PyFilesystem2 interface to…
copyleft · top 15,000 on PyPI
netmikoNetmiko simplifies SSH connections to network…
permissive · top 5,000 on PyPI
ssh-pythonPython bindings to the libssh C library for SSH…
copyleft · top 15,000 on PyPI
parallel-sshAsynchronous SSH client for running commands on…
copyleft · top 15,000 on PyPI