BlueHive Python API Library
A comprehensive Python library for integrating with BlueHive Health services. Supports both sync and async usage with full type hints.
Installation
Terminal
pip install bluehivePackage:
bluehiveView on PyPI →Features
- Full type hints (mypy compatible)
- Sync and async clients
- Automatic retries with backoff
- Pagination iterators
- Streaming support
- Python 3.8+ compatible
Quick Example
Python
from bluehive import BlueHive
client = BlueHive(
api_key="your-api-key",
)
# Search for healthcare providers
providers = client.providers.lookup(
zip_code="46802",
radius=25,
)
print(providers)