We’ve released version 0.15.2 of our Python SDK, adding asynchronous client support alongside enhanced type safety and error handling.
Key Updates:
- Full async/await support with AsyncMixpeekClient
- Improved type hints and Pydantic integration
- Consistent API between sync/async clients
- Enhanced error handling with specific exception types
Installation:
pip install mixpeek==0.15.2
Quick Start:
# Async example
async with Mixpeek(token="your_token") as mixpeek:
result = await mixpeek.organizations.get_async()
# Sync remains unchanged
with Mixpeek(token="your_token") as mixpeek:
result = mixpeek.organizations.get()
Read the full documentation at docs.mixpeek.com
Questions? Contact info@mixpeek.com
Best,
The Mixpeek Team