Metadata-Version: 2.4
Name: dixa-api-client
Version: 2.4.8
Summary: Python API Client for Dixa
Author-email: ChemicalLuck <j.tebbett@outlook.com>
License-Expression: MIT
Project-URL: Homepage, https://github.com/ChemicalLuck/dixa-api
Project-URL: Source, https://github.com/ChemicalLuck/dixa-api
Keywords: Dixa,API,client,customer support,python
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: requests
Provides-Extra: dev
Requires-Dist: ruff; extra == "dev"
Requires-Dist: pre-commit; extra == "dev"
Requires-Dist: python-dotenv; extra == "dev"
Requires-Dist: vermin; extra == "dev"
Dynamic: license-file

# Dixa API Wrapper

[![Python](https://img.shields.io/pypi/pyversions/dixa-api-client.svg)](https://badge.fury.io/py/dixa-api-client)
[![PyPI](https://badge.fury.io/py/dixa-api-client.svg)](https://badge.fury.io/py/dixa-api-client)
[![PyPI](https://github.com/ChemicalLuck/dixa-api-client/actions/workflows/python-publish.yml/badge.svg)](https://github.com/ChemicalLuck/dixa-api-client/actions/workflows/python-publish.yml)
![PyPI - Downloads](https://img.shields.io/pypi/dm/dixa-api-client)

## Installation

```bash
pip install dixa-api-client
```

## Usage

```python
from dixa import Dixa

client = Dixa(api_key='XXXXX')

agents = client.v1.Agents.list()

for agent in agents:
    print(agent['id'])
```

For more details on the content of the reponses, visit the [official dixa API docs](https://docs.dixa.io/openapi/dixa-api/v1/overview/).

## Resources Available
### v1
- Agents
- Analytics
- Contact Endpoints
- Conversations
- Custom Attributes
- End Users
- Queues
- Tags
- Teams
- Webhooks

## Resources

- [dixa API v1](https://docs.dixa.io/openapi/dixa-api/v1/overview/)

## License

[MIT](LICENSE)
