> For the complete documentation index, see [llms.txt](https://circular-protocol.gitbook.io/standard-apis/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://circular-protocol.gitbook.io/standard-apis/api-docs/python.md).

# Python

## Installation

It is possible to install the package directly from the repo hosted on [GitHub](https://github.com/circular-protocol/circular-py):

```bash
git clone https://github.com/circular-protocol/circular-py.git
```

and then using pip

```bash
pip install circular-py/circular_protocol_api/.
```

Or directly via the [PyPi repository](https://pypi.org/project/circular-protocol-api/) with:

```bash
pip install circular_protocol_api
```

## Example of usage

```python
from circular_protocol_api import CircularProtocolAPI

circular = CircularProtocolAPI()
result = circular.getBlockchains()
```
