Skip to content

Commit daa261c

Browse files
committed
Formatting
1 parent 2ab6057 commit daa261c

File tree

1 file changed

+16
-16
lines changed

1 file changed

+16
-16
lines changed

README.md

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,27 @@
11
# A2A Python SDK
22

3-
A Python library that helps run agentic applications as A2AServers.
3+
A Python library that helps run agentic applications as A2AServers following the [Agent2Agent (A2A) Protocol](https://google.github.io/A2A/).
44

55
## Installation
66

7-
You can install the a2a-sdk using either `uv` or `pip`.
7+
You can install the A2A SDK using either `uv` or `pip`.
88

99
## Prerequisites
10-
* Python 3.13+
11-
* `uv` (optional, but recommended) or `pip`
1210

13-
### using `uv`
11+
- Python 3.13+
12+
- `uv` (optional, but recommended) or `pip`
1413

15-
When you're working within a uv project or a virtual environment managed by uv, the preferred way to add packages is using uv add.
14+
### Using `uv`
15+
16+
When you're working within a uv project or a virtual environment managed by uv, the preferred way to add packages is using uv add.
1617

1718
```bash
1819
uv add a2a-sdk
1920
```
2021

21-
### using `pip`
22+
### Using `pip`
2223

23-
If you prefer to use pip, the standard Python package installer, you can install a2a-sdk as follows
24+
If you prefer to use pip, the standard Python package installer, you can install `a2a-sdk` as follows
2425

2526
```bash
2627
pip install a2a-sdk
@@ -32,20 +33,19 @@ pip install a2a-sdk
3233

3334
1. Run Remote Agent
3435

35-
```bash
36-
cd examples/helloworld
37-
uv run .
38-
```
36+
```bash
37+
cd examples/helloworld
38+
uv run .
39+
```
3940

4041
2. In another terminal, run the client
4142

42-
```bash
43-
uv run test_client.py
44-
```
43+
```bash
44+
uv run test_client.py
45+
```
4546

4647
You can also find more examples [here](https://github.com/google/A2A/tree/main/samples/python/agents)
4748

48-
4949
## License
5050

5151
This project is licensed under the terms of the [Apache 2.0 License](LICENSE).

0 commit comments

Comments
 (0)