--- id: zabbix-utils version: "2.0.4" license: unclear license_treatment: permissive maintenance: aging --- # zabbix-utils — A library with modules for working with Zabbix (Zabbix API, Zabbix sender, Zabbix get) License: permissive · Maintenance: aging · Downloads: 297.4K/mo ## What it is and what it does zabbix_utils is a Python library for integrating with Zabbix monitoring infrastructure. It provides three main interfaces: a ZabbixAPI client for querying and configuring Zabbix via its HTTP API (supporting both synchronous and asynchronous I/O), a Sender for pushing item values to Zabbix servers or proxies, and a Getter for retrieving metrics directly from Zabbix agents. The library handles authentication via username/password or API tokens, supports version comparison, and can route data to multiple Zabbix clusters. The package has no required runtime dependencies for basic use; aiohttp is optional and only needed for asynchronous operations. It supports Python 3.8 through 3.13 and is tested against Zabbix versions 6.0, 7.0, 7.2, and 7.4. The library is maintained by the Zabbix project itself and carries production-stable status, making it suitable for operational monitoring scripts and integrations. Use it for: - Automate Zabbix configuration tasks like importing templates or querying user lists via the API. - Send custom application metrics to Zabbix for centralized monitoring of non-standard data sources. - Query Zabbix agents directly to retrieve system metrics without going through the Zabbix server. - Build async monitoring dashboards or data pipelines that pull metrics from multiple Zabbix clusters. - Integrate Zabbix data into Python-based alerting or reporting workflows. ## Worth the install? AI-flagged interpretation of the facts above — verify before relying. Provides Python bindings for Zabbix API, sender, and get protocols to query monitoring data, send item values, and retrieve agent metrics from Zabbix servers. Yes. The package is production-stable, maintained by Zabbix, has no required dependencies, and offers a clean API for all three Zabbix integration patterns (API, sender, getter). Install it if you need to automate Zabbix tasks or integrate Zabbix data into Python applications. The aging maintenance status reflects normal release cadence rather than abandonment. ## Install pip install zabbix-utils uv add zabbix-utils poetry add zabbix-utils ## Installing zabbix-utils Before you install: Low friction installation with no required runtime dependencies; optional aiohttp for async support. Aging maintenance status with last commit 2025-12-17, but repository remains active and production-stable. License in practice: MIT license (permissive) allows use in commercial and private projects with minimal restrictions. Quickstart: pip install zabbix_utils from zabbix_utils import ZabbixAPI api = ZabbixAPI(url="127.0.0.1") api.login(token="your_token") users = api.user.get(output=['userid','name']) api.logout() Requires Zabbix 6.0+ server; Python 3.8+ required. Verify before relying: - Whether async support via aiohttp is automatically installed or requires explicit [async] extra. - Performance characteristics when querying large datasets from Zabbix API. - Compatibility with Zabbix versions newer than 7.4. ## Package facts - License: not declared (permissive) - Python support: supports_current - Install friction: low - Maintenance: aging - Downloads: 297.4K/month (top 15,000 on PyPI) - Known vulnerabilities: none known ## Tags zabbix api client, zabbix monitoring integration, zabbix sender protocol, zabbix agent query, zabbix data collection, monitoring api library, zabbix automation, zabbix-integration, monitoring-client, async-capable [View on SkillFed](https://skillfed.io/packages/zabbix-utils) · [View on PyPI](https://pypi.org/project/zabbix-utils/)