# 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()
```
