Metadata-Version: 2.1
Name: sentrifyai
Version: 0.1.7
Summary: SentrifyAI API client
Home-page: https://github.com/sentrifybot/sentrifyai-python
Author: SentrifyAI
Author-email: admin@sentrify.org
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

# SentrifyAI Python Package

SentrifyAI is a Python package that provides a client for interacting with the SentrifyAI API.

## Installation

You can install the package via pip:

```
pip install sentrifyai
```

## Usage

```
from sentrifyai import api
import json

emotions = api.Emotions()

results = emotions.emotion(model_slug='Emotions-1.0', message='This is a sample message.')

json_results = json.dumps(results, indent=4)

print(json_results)
```

## Documentation

For more detailed usage instructions and API reference, please refer to the [documentation](https://github.com/sentrifybot/sentrifyai-python).

## License

This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.
