Metadata-Version: 2.1
Name: python-antsy
Version: 0.0.14
Summary: Antsy API Client
Home-page: https://www.grupodyd.com
Author: Juan F. Duque
Author-email: jfelipe@grupodyd.com
License: MIT
Project-URL: Source, https://github.com/grupodyd/python-antsy
Project-URL: Tracker, https://github.com/grupodyd/python-antsy/issues
Keywords: antsy
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
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 :: Implementation :: CPython
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.9.0
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: httpx[http2] <1,>=0.26.0
Requires-Dist: pydantic <3,>=2
Requires-Dist: python-dateutil <3,>=2.8.2

[![Release](https://github.com/grupodyd/python-antsy/actions/workflows/release.yml/badge.svg)](https://github.com/grupodyd/python-antsy/actions/workflows/release.yml)
[![MIT licensed](https://img.shields.io/badge/license-MIT-blue.svg)](./LICENSE)
[![pypi](https://badge.fury.io/py/python-antsy.svg)](https://pypi.org/project/python-antsy/)
[![PyPI](https://img.shields.io/pypi/pyversions/python-antsy.svg)](https://pypi.python.org/pypi/python-antsy)

# python-antsy
Python package for integration of Antsy in other applications

## Installation

Install from PyPi using [pip](https://pip.pypa.io/en/latest/), a
package manager for Python.

```shell
pip install python-antsy
```

### Test your installation

Try to find the attributes of your authentication token. Save the following code sample to your computer with a text editor. Be sure to replace `refresh_token`.

```python
from antsy import Antsy

# Your Auth Token
client = Antsy(refresh_token="JWT_TOKEN")

client.auth.whoami()
```
