Metadata-Version: 2.4
Name: python-a2a-f01
Version: 0.5.11
Summary: Python A2A - Agent-to-Agent Protocol
Home-page: https://github.com/google/python-a2a
Author: Google LLC
Author-email: googleapis-packages@google.com
License: Apache-2.0
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software 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: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Requires-Dist: requests>=2.25.0
Requires-Dist: pydantic>=2.0.0
Requires-Dist: typing-extensions>=4.0.0
Provides-Extra: server
Requires-Dist: flask; extra == "server"
Requires-Dist: uvicorn; extra == "server"
Provides-Extra: mcp
Requires-Dist: fastapi; extra == "mcp"
Requires-Dist: uvicorn; extra == "mcp"
Provides-Extra: llm
Requires-Dist: openai; extra == "llm"
Requires-Dist: anthropic; extra == "llm"
Provides-Extra: all
Requires-Dist: flask; extra == "all"
Requires-Dist: fastapi; extra == "all"
Requires-Dist: uvicorn; extra == "all"
Requires-Dist: openai; extra == "all"
Requires-Dist: anthropic; extra == "all"
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: license
Dynamic: provides-extra
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# Python A2A - Agent-to-Agent Protocol

A Python library for implementing Google's Agent-to-Agent (A2A) protocol.

## Installation

```bash
pip install python-a2a
```

## Features

- Complete implementation of Google's A2A protocol specification
- Robust data models for A2A messages and conversations
- Easy-to-use HTTP client and server components
- Built-in support for various LLM providers (OpenAI, Anthropic, Bedrock)
- First-class support for function calling between agents
- MCP (Model Context Protocol) integration
- Agent discovery and workflow orchestration

## Usage

See the [documentation](https://github.com/google/python-a2a) for more details.
