The official Python library for the Zernio API. Version 1.4.120 supports Python >=3.10. Provides async and sync clients for interacting with Zernio's commerce platform (products, orders, customers, webhooks). Released regularly with minor patches.
pip install zernio-sdkNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Instantiate the client with an API key and list products.
Use 'from zernio import Zernio' instead of 'from zernio_sdk import Zernio'.
Set os.environ['ZERNIO_API_KEY'] = 'your_key' before client instantiation.
Access response fields using dict keys, e.g., order['id'] instead of order.id.
Use 'from zernio import Zernio'.
Pass api_key='your_key' to Zernio() or set ZERNIO_API_KEY environment variable.
Use client.products.list() to fetch products.