{"id":28624942,"url":"https://github.com/google-a2a/a2a-python","last_synced_at":"2025-06-12T08:02:17.072Z","repository":{"id":293309226,"uuid":"980428225","full_name":"google-a2a/a2a-python","owner":"google-a2a","description":"Official Python SDK for the Agent2Agent (A2A) Protocol","archived":false,"fork":false,"pushed_at":"2025-06-10T22:05:11.000Z","size":930,"stargazers_count":439,"open_issues_count":24,"forks_count":87,"subscribers_count":14,"default_branch":"main","last_synced_at":"2025-06-11T09:26:26.785Z","etag":null,"topics":["agents","generative-ai","google"],"latest_commit_sha":null,"homepage":"https://goo.gle/a2a-python-sdk","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/google-a2a.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":".github/CODEOWNERS","security":"SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-05-09T05:42:15.000Z","updated_at":"2025-06-11T09:25:54.000Z","dependencies_parsed_at":"2025-05-27T20:44:32.275Z","dependency_job_id":"4fdaa39e-53d7-4b37-82fb-cd24084499e6","html_url":"https://github.com/google-a2a/a2a-python","commit_stats":null,"previous_names":["google/a2a-python","google-a2a/a2a-python"],"tags_count":6,"template":false,"template_full_name":null,"purl":"pkg:github/google-a2a/a2a-python","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-a2a%2Fa2a-python","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-a2a%2Fa2a-python/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-a2a%2Fa2a-python/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-a2a%2Fa2a-python/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/google-a2a","download_url":"https://codeload.github.com/google-a2a/a2a-python/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/google-a2a%2Fa2a-python/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":259426820,"owners_count":22855542,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["agents","generative-ai","google"],"created_at":"2025-06-12T08:01:22.856Z","updated_at":"2025-06-12T08:02:17.063Z","avatar_url":"https://github.com/google-a2a.png","language":"Python","funding_links":[],"categories":["⚙️ Implementations \u0026 Libraries","Related Repositories","MCP Frameworks and libraries"],"sub_categories":["Python"],"readme":"# A2A Python SDK\n\n[![License](https://img.shields.io/badge/License-Apache_2.0-blue.svg)](LICENSE)\n![PyPI - Version](https://img.shields.io/pypi/v/a2a-sdk)\n![PyPI - Python Version](https://img.shields.io/pypi/pyversions/a2a-sdk)\n\n\u003c!-- markdownlint-disable no-inline-html --\u003e\n\n\u003chtml\u003e\n   \u003ch2 align=\"center\"\u003e\n   \u003cimg src=\"https://raw.githubusercontent.com/google-a2a/A2A/refs/heads/main/docs/assets/a2a-logo-black.svg\" width=\"256\" alt=\"A2A Logo\"/\u003e\n   \u003c/h2\u003e\n   \u003ch3 align=\"center\"\u003eA Python library that helps run agentic applications as A2AServers following the \u003ca href=\"https://google-a2a.github.io/A2A\"\u003eAgent2Agent (A2A) Protocol\u003c/a\u003e.\u003c/h3\u003e\n\u003c/html\u003e\n\n\u003c!-- markdownlint-enable no-inline-html --\u003e\n\n## Installation\n\nYou can install the A2A SDK using either `uv` or `pip`.\n\n## Prerequisites\n\n- Python 3.10+\n- `uv` (optional, but recommended) or `pip`\n\n### Using `uv`\n\nWhen you're working within a uv project or a virtual environment managed by uv, the preferred way to add packages is using uv add.\n\n```bash\nuv add a2a-sdk\n```\n\n### Using `pip`\n\nIf you prefer to use pip, the standard Python package installer, you can install `a2a-sdk` as follows\n\n```bash\npip install a2a-sdk\n```\n\n## Examples\n\n### [Helloworld Example](https://github.com/google-a2a/a2a-samples/tree/main/samples/python/agents/helloworld)\n\n1. Run Remote Agent\n\n   ```bash\n   git clone https://github.com/google-a2a/a2a-samples.git\n   cd a2a-samples/samples/python/agents/helloworld\n   uv run .\n   ```\n\n2. In another terminal, run the client\n\n   ```bash\n   cd a2a-samples/samples/python/agents/helloworld\n   uv run test_client.py\n   ```\n\nYou can also find more Python samples [here](https://github.com/google-a2a/a2a-samples/tree/main/samples/python) and JavaScript samples [here](https://github.com/google-a2a/a2a-samples/tree/main/samples/js).\n\n## License\n\nThis project is licensed under the terms of the [Apache 2.0 License](https://raw.githubusercontent.com/google-a2a/a2a-python/refs/heads/main/LICENSE).\n\n## Contributing\n\nSee [CONTRIBUTING.md](https://github.com/google-a2a/a2a-python/blob/main/CONTRIBUTING.md) for contribution guidelines.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgoogle-a2a%2Fa2a-python","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgoogle-a2a%2Fa2a-python","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgoogle-a2a%2Fa2a-python/lists"}