proxmoxer
Python Wrapper for the Proxmox 2.x API (HTTP and SSH)
What it is and what it does
Proxmoxer is a Python client library that wraps the Proxmox REST API, allowing you to manage virtual machines, containers, and infrastructure resources programmatically. It supports three connection backends—HTTPS, SSH via Paramiko, and OpenSSH—so you can choose the transport that fits your environment. The library dynamically constructs API calls from attribute access patterns, mapping them directly to Proxmox API endpoints, so you write code like `proxmox.nodes.get()` or `proxmox.nodes(node_name).qemu.get()` rather than manually building HTTP requests.
The package has been in active development since 2013 and recently released version 2.3.0, which introduced breaking changes but improved the API design. It targets system administrators and developers who need to automate Proxmox deployments, provision infrastructure, or integrate Proxmox management into larger Python applications. With no runtime dependencies in the base install and optional backends you pull in only when needed, it's lightweight and flexible for different deployment scenarios.
Use it for:
- Automate VM and container provisioning across a Proxmox cluster from a Python script or application.
- Monitor node status and resource usage by querying Proxmox API endpoints programmatically.
- Integrate Proxmox management into infrastructure-as-code tools or CI/CD pipelines.
- Build custom dashboards or reporting tools that pull live data from PVE, PMG, or PBS.
- Manage Proxmox Backup Server backups and retention policies via Python automation.
Worth the install?
AI-flagged interpretation of the facts on this page — verify before relying
Proxmoxer is a Python wrapper for the Proxmox REST API that lets you programmatically manage Proxmox Virtual Environment (PVE), Proxmox Mail Gateway (PMG), and Proxmox Backup Server (PBS) over HTTPS, SSH, or the pvesh utility.
Yes. Proxmoxer is production-stable (Development Status 5), actively maintained, has no security vulnerabilities, and carries a permissive MIT license. Install friction is minimal. It's the standard Python client for Proxmox automation and is well-suited for anyone managing Proxmox infrastructure programmatically. Only caveat: ensure you install the backend library that matches your connection method.
Install
proxmoxer on PyPI
pip
pip install proxmoxeruv
uv add proxmoxerpoetry
poetry add proxmoxerInstalling proxmoxer
Before you install
Low install friction; pure Python wheel with no compiled dependencies. Actively maintained with a recent release 163 days ago. Optional backends are installed separately as needed.
License in practice
MIT license (permissive); you can use this freely in commercial and private projects with minimal restrictions.
Quickstart
pip install proxmoxer
from proxmoxer import ProxmoxAPI
proxmox = ProxmoxAPI('proxmox_host', user='admin@pam', password='secret', verify_ssl=False)
for node in proxmox.nodes.get():
print(node)
Optional backend libraries (for HTTPS, SSH, or openssh connections) must be installed separately depending on your connection method.
Verify before relying
- Exact Python version support (requires_python field is unspecified in metadata)
- Whether all three backends (https, ssh_paramiko, openssh) are equally stable and feature-complete
- Performance characteristics and scalability limits for large Proxmox clusters
Package facts
| License | MIT (permissive) |
| Python support | not specified |
| Install friction | low — pure-Python wheel |
| Runtime dependencies | none |
| Maintenance | actively maintained — 163 days since the last release |
| First released | |
| Downloads | 624,881/month — #5,699 on PyPI (30-day window, as of 2026-08-14) |
| Known vulnerabilities | none known (OSV.dev, checked 2026-08-14) |
Evidence: proxmoxer-2.3.0-py3-none-any.whl
Keywords: proxmox, api
Tags
More Python Modules packages
Converts domain names between Unicode and…
permissive · top 100 on PyPI
setuptoolsSetuptools is a Python build backend and…
permissive · top 100 on PyPI
PyYAMLPyYAML parses and emits YAML 1.1 data format,…
permissive · top 100 on PyPI
pydanticPydantic validates Python data structures…
permissive · top 100 on PyPI
annotated-typesProvides reusable metadata objects for use with…
permissive · top 100 on PyPI
typing-inspectionProvides runtime tools to inspect and…
permissive · top 100 on PyPI
sshuttlesshuttle creates a transparent proxy that…
copyleft · top 15,000 on PyPI
sshtunnelEstablishes SSH tunnels to forward local ports…
permissive · top 1,000 on PyPI
paramikoParamiko is a pure-Python SSH protocol library…
copyleft · top 1,000 on PyPI
fabricFabric executes shell commands remotely over…
permissive · top 5,000 on PyPI
fabric2Fabric executes shell commands remotely over…
permissive · top 15,000 on PyPI
mock-ssh-serverProvides a Python context manager that runs an…
permissive · top 15,000 on PyPI
jumpsshJumpSSH runs commands on remote servers through…
permissive · top 15,000 on PyPI
python-vagrantProgrammatic control of Vagrant virtual…
permissive · top 5,000 on PyPI
scpProvides file transfer over SSH using the SCP…
copyleft · top 5,000 on PyPI
python-rrmngmntManages remote Linux machines and services over…
copyleft · top 15,000 on PyPI