Metadata-Version: 2.4
Name: agentsindex
Version: 0.1.0
Summary: Python client for AgentsIndex.ai — browse AI agents, frameworks, and tools programmatically
Author-email: AgentsIndex <hello@agentsindex.ai>
License-Expression: MIT
Project-URL: Homepage, https://agentsindex.ai
Project-URL: Repository, https://github.com/AgentsIndex/agentsindex-py
Project-URL: Bug Tracker, https://github.com/AgentsIndex/agentsindex-py/issues
Project-URL: Twitter, https://x.com/AgentsIndex
Keywords: ai,agents,ai-agents,directory,llm,frameworks,automation
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Software Development :: Libraries
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# agentsindex

Python client for [AgentsIndex.ai](https://agentsindex.ai) — browse AI agents, frameworks, and tools programmatically.

## Install

```bash
pip install agentsindex
```

## Usage

```python
from agentsindex import AgentsIndex

client = AgentsIndex()

# Get directory info
print(client.info())

# List tools
tools = client.list_tools()

# Get a specific tool
tool = client.get_tool("crewai")
```

## What is AgentsIndex?

[AgentsIndex.ai](https://agentsindex.ai) indexes the AI agent ecosystem, from coding agents and frameworks to voice AI, browser automation, and infrastructure tooling. Each listing breaks down pricing, features, use cases, and pros and cons.

- [Browse all tools](https://agentsindex.ai)
- [Compare tools](https://agentsindex.ai/compare)
- [Best-of collections](https://agentsindex.ai/best)
- [Find alternatives](https://agentsindex.ai/alternatives)

## Links

- [Website](https://agentsindex.ai)
- [GitHub](https://github.com/AgentsIndex)
- [Twitter/X](https://x.com/AgentsIndex)

## License

MIT
