Registry / http-networking / python-rrmngmnt

python-rrmngmnt

JSON →
library0.2.3pypypi✓ verified 82d ago

A tool to manage remote systems and services via SSH. Current version 0.2.2, released May 2025. Release cadence is irregular, with several releases in 2024-2025. Supports Python >=3.7.

pip install python-rrmngmnt
INSTALL
IMPORT
SIG · PYTHON-RRMNGMNT
P
python-rrmngmnt
http-networkingpythonv0.2.3
Install
3.0s avg
Import
Disk
51MB
Pass rate
10/ 10
Env Coverage10 / 10
glibc
3.93.13
musl
3.93.13
Install & Compatibility
Where this runs
tested against v0.2.3 · pip install
no network on importno background threads
Install × environment matrix
Each cell = how many times install + import succeeded across repeated harness runs. Partial = flaky.
glibc = Debian/Ubuntu slim · musl = Alpine Linux
musl
py 3.103.95 runs
installs and imports cleanly · install 0.0s · import 0.000s · 52.1MB
glibc
py 3.103.95 runs
installs and imports cleanly · install 3.0s · import 0.000s · 52MB
51MB installed
● package 51MB
Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

Host
from rrmngmnt import Host
from rrmngmnt import RRMngmnt
User
from rrmngmnt import User
Domain
from rrmngmnt import Domain

Basic usage: create a remote manager and execute commands.

from rrmngmnt import RRMngmnt host = RRMngmnt(hostname='example.com', username='user', password='pass') # or with key: # host = RRMngmnt(hostname='example.com', username='user', pkey='/path/to/key') status = host.ping() print(f"Host reachable: {status}") # Run a command cmd = host.execute(['uname', '-a']) print(cmd.stdout)
Debug
Known issues
deprecatedThe 'pkey' parameter for passwordless SSH has been replaced by UserWithPKey class. Using pkey directly is deprecated since 0.1.27.
fix
Use from rrmngmnt import UserWithPKey; host = RRMngmnt(hostname='...', username='...', pkey=UserWithPKey('/path/to/key'))
affects: >=0.1.27
breakingIn version 0.2.0, the project switched to source distribution only. Pre-built wheels are no longer provided. This may affect some installation scenarios.
fix
Ensure your build tools support building from source. pip should handle this automatically.
affects: >=0.2.0
gotchaSSH connection may hang if the host is unreachable or requires interactive authentication. The library does not implement a timeout for connection attempts.
fix
Use Python's signal or socket level timeout externally if needed.
affects: all
Upgrade
Version history
0.2.3latest on PyPI · released Jun 8, 2026
Audit
Dependencies

No dependency data recorded yet.

Agent activity
19 hits · last 30 days
node
18
Resources
python-rrmngmnt — pip install python-rrmngmnt · libregistry