Metadata-Version: 2.4
Name: zeriq
Version: 0.1.0
Summary: Python SDK for the Zeriq Enterprise Workspace API.
Project-URL: Homepage, https://zeriq.io
Project-URL: Documentation, https://api.zeriq.io/api/developer/api-tokens/docs
Project-URL: Repository, https://github.com/Veltrix-Digital-Innovations-LTD/zeriq-python-sdk
Project-URL: Issues, https://github.com/Veltrix-Digital-Innovations-LTD/zeriq-python-sdk/issues
Author: Zeriq
License: Proprietary
Keywords: api,enterprise,finpay,workspace,zeriq
Requires-Python: >=3.10
Requires-Dist: requests>=2.31.0
Description-Content-Type: text/markdown

# zeriq

Python SDK for the Zeriq Enterprise Workspace API.

```bash
pip install zeriq
```

```py
import os
from zeriq import ZeriqClient

client = ZeriqClient(
    api_token=os.environ["ZERIQ_API_TOKEN"],
    base_url=os.environ.get("ZERIQ_BASE_URL", "https://api.zeriq.io/api"),
)

overview = client.get_overview()
docs = client.get_developer_docs()
```
