Metadata-Version: 2.2
Name: apparatusai
Version: 1.0.0
Summary: Python SDK for ApparatusAI
Home-page: https://github.com/comethrusws/apparatusai-sdk
Author: Basab Jha
Author-email: basab@apparatusai.space
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
Requires-Dist: requests>=2.25.1
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: requires-dist
Dynamic: summary

# ApparatusAI Python SDK

The ApparatusAI SDK provides an easy-to-use interface to interact with the ApparatusAI API. This SDK enables developers to fetch user information, run business forecasts, and analyze social trends using ApparatusAI's powerful machine learning models.

## Features

- Secure API Token Authentication
- Business Forecasting
- Social Trend Analysis
- ⚡ Easy Integration with Python Applications

## Installation

To install the SDK, run:

```bash
pip install apparatusai
Getting Started
1. Import the SDK
python
Copy
Edit
from apparatusai import ApparatusAI
2. Initialize the SDK with your API Token
python
Copy
Edit
ai = ApparatusAI("apai_your_api_token_here")
⚠️ Note: Ensure your API token starts with apai_, or an error will be raised.

3. Fetch User Info
python
Copy
Edit
try:
    user_info = ai.get_user_info()
    print("User Info:", user_info)
except Exception as error:
    print("Error fetching user info:", error)
4. Perform Business Forecasting
python
Copy
Edit
try:
    forecast_data = ai.forecast({"revenue": [10000, 12000, 15000]})
    print("Forecast Result:", forecast
::contentReference[oaicite:0]{index=0}
 
