Metadata-Version: 2.4
Name: gnistai
Version: 0.0.2
Summary: The official Python library for the GnistAI API
Project-URL: Homepage, https://gnist.ai/api/docs
Project-URL: Repository, https://github.com/gnistai/gnistai-python
Project-URL: Issues, https://github.com/gnistai/gnistai-python/issues
Author-email: GnistAI <office@gnist.ai>
License: Apache-2.0
License-File: LICENSE
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: MacOS
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: OS Independent
Classifier: Operating System :: POSIX
Classifier: Operating System :: POSIX :: Linux
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
Classifier: Typing :: Typed
Requires-Python: >=3.11
Requires-Dist: requests<3,>=2.32.3
Description-Content-Type: text/markdown

# GnistAI Python API library

The GnistAI Python library provides convenient access to the GnistAI REST API from any Python 3.11+
application.

The REST API documentation can be found on [gnist.ai/api/docs](https://gnist.ai/api/docs).

# Usage

```python
import os
from gnistai import GnistAI

client = GnistAI(api_key=os.environ.get("GNISTAI_API_KEY"))
health_status = client.health_check()
```

While you can provide an `api_key` keyword argument,
we recommend using [python-dotenv](https://pypi.org/project/python-dotenv/)
to add `GNIST_API_KEY="My API Key"` to your `.env` file
so that your API Key is not stored in source control.
