Metadata-Version: 2.4
Name: inferencebank
Version: 0.0.1
Summary: The official Python library for the InferenceBank API
Project-URL: Homepage, https://inferencebank.com
Project-URL: Repository, https://github.com/inferencebank/inferencebank
Project-URL: Issues, https://github.com/inferencebank/inferencebank/issues
Author-email: InferenceBank <office@inferencebank.com>
License: MIT
License-File: LICENSE
Classifier: License :: OSI Approved :: MIT 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

# InferenceBank Python API library

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

# Usage

```python
import os
from inferencebank import InferenceBank

client = InferenceBank(api_key=os.environ.get("INFERENCEBANK_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 `INFERENCEBANK_API_KEY="My API Key"` to your `.env` file
so that your API Key is not stored in source control.