Metadata-Version: 2.4
Name: netint-agents-sdk
Version: 0.2.0
Summary: Python SDK for the NetIntGPT Agents API
Home-page: https://github.com/netint/netint-agents-sdk
Author: NetInt Team
Author-email: NetInt Team <support@netint.ai>
License: MIT
Project-URL: Homepage, https://github.com/netint/netint-agents-sdk
Project-URL: Documentation, https://netint-agents-sdk.readthedocs.io
Project-URL: Repository, https://github.com/netint/netint-agents-sdk
Project-URL: Bug Reports, https://github.com/netint/netint-agents-sdk/issues
Keywords: netint,api,sdk,agents,ai,development
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: httpx>=0.25.0
Requires-Dist: pydantic>=2.0.0
Requires-Dist: python-dotenv>=1.0.0
Requires-Dist: requests>=2.32.4
Requires-Dist: setuptools>=75.3.2
Provides-Extra: dev
Requires-Dist: pytest>=7.4.0; extra == "dev"
Requires-Dist: pytest-asyncio>=0.21.0; extra == "dev"
Requires-Dist: pytest-cov>=4.1.0; extra == "dev"
Requires-Dist: pytest-mock>=3.11.1; extra == "dev"
Requires-Dist: black>=23.0.0; extra == "dev"
Requires-Dist: isort>=5.12.0; extra == "dev"
Requires-Dist: flake8>=6.0.0; extra == "dev"
Requires-Dist: mypy>=1.5.0; extra == "dev"
Dynamic: author
Dynamic: home-page
Dynamic: license-file
Dynamic: requires-python

# NetInt Agents SDK

A Python SDK for interacting with the NetIntGPT Agents API.

## Installation

```bash
pip install -e .
```

## Quick Start

```python
from netint_agents_sdk import NetIntClient

client = NetIntClient.from_env()
environments = client.environments.list()
print(f"Found {len(environments)} environments")
```

## Documentation

See `QUICKSTART.md` and `docs/USAGE_GUIDE.md` for detailed documentation.
