Getting Started

Installation

python-exx is available on PYPI. Install with pip:

pip install python-exx

Register on EXX

Firstly register an account with EXX.

Generate an API Key

To use signed account methods you are required to create an API Key and save the key and secret.

Initialise the client

Pass your API Key and Secret

from exx.client import Client
client = Client(api_key, api_secret)

API Rate Limit

Each IP can send maximum of 1000 https requests per minute. If you exceed 1000 requests, the system will automatically block the IP for one hour. After an hour, the IP will be automatically unlocked.

Each user can send a maximum of 10 request within one second.