Registry / devops / infoblox-client

infoblox-client

JSON →
library0.6.2pypypiunverified

Python client for interacting with Infoblox NIOS over WAPI. Version 0.6.2 provides synchronous and asynchronous APIs for managing DNS, DHCP, IPAM, and other NIOS objects. Development appears slow with infrequent releases.

pip install infoblox-client
INSTALL
IMPORT
SIG · INFOBLOX-CLIENT
I
infoblox-client
devopspythonv0.6.2
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

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

InfobloxClient
from infoblox_client import InfobloxClient
from infoblox_client import InfobloxClient

Initialize the client with host, username, password. Optionally use HTTPS with verify_ssl=False for self-signed certs.

from infoblox_client import InfobloxClient import os client = InfobloxClient( host=os.environ.get('INFOBLOX_HOST', '192.168.1.1'), username=os.environ.get('INFOBLOX_USER', 'admin'), password=os.environ.get('INFOBLOX_PASS', 'infoblox') ) # Verify connectivity print(client.get_networkview())
Debug
Known issues
gotchaSSL verification is enabled by default. Self-signed certificates will cause requests to fail unless verify_ssl=False is passed.
fix
Set verify_ssl=False during client initialization: InfobloxClient(..., verify_ssl=False).
affects: all
deprecatedThe synchronous-only client (InfobloxClient) is stable, but the asynchronous client (AsyncInfobloxClient) is in beta and may have breaking changes.
fix
Use the synchronous client for production; test the async client separately if needed.
affects: >=0.6.0
gotchaThe package is not actively maintained; last release was 2021. Missing features like Python 3.10+ typing, Pydantic v2 support, or async stability may require workarounds.
fix
Consider forking or using the REST API directly if issues arise.
affects: all
Upgrade
Version history
0.6.2latest on PyPI · released Dec 18, 2024
Audit
Dependencies

No dependency data recorded yet.

Agent activity
4 hits · last 30 days
node
4
Resources
infoblox-client — pip install infoblox-client · libregistry