Metadata-Version: 2.4
Name: tangent-works
Version: 1.1.0a3
Summary: Tangent Works Python Client.
Author: Tangent Works
Requires-Python: >=3.10,<4.0
Classifier: Programming Language :: Python :: 3
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: Programming Language :: Python :: 3.14
Requires-Dist: pandas (>=2.0,<3.0)
Requires-Dist: plotly (>=5.0,<6.0)
Requires-Dist: requests (>=2.28,<3.0)
Project-URL: Documentation, https://docs.tangent.works/
Project-URL: Homepage, https://tangent.works/
Description-Content-Type: text/markdown

# **Tangent Works - Python Client**

Tangent Information Modeler is Tangent Works’ automatic model building engine. It is designed specifically for time-series forecasting and anomaly detection.

The Tangent Works Python client introduces an easy and fast way to use Tangent Works in any Python project.

---

## 🚀 Features

* 📈 Forecasting
* ⚠️ Anomaly Detection

---

## 📦 Installation

Install from PyPI:

```bash
pip install tangent-works
```

---

## ⚡ Quick Start

```python
import tangent_works
import pandas as pd

tw = tangent_works.API(token=TANGENT_LICENSE_TOKEN)

configuration = {}

data = pd.read_csv("input.csv")

auto_forecast_response = tw.auto_forecast.run(
    configuration=configuration,
    dataset=dataset
)

results = auto_forecast_response['results']

print(result)
```

---

## 📖 Documentation

Full documentation is available at:

https://docs.tangent.works/UM/

Documentation includes:

* Installation guide
* Usage examples
* API reference
* Advanced configuration

---

## 📄 License

This project is licensed by Tangent Works: 
Please find the terms of service here: 
https://www.tangent.works/terms-of-service.

---

## ⭐ Support

If you find this project useful, please consider giving it a star on GitHub.

