Skip to content

Commit

Permalink
chore: update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
martinkersner committed Jul 8, 2024
1 parent b12483c commit a363e45
Showing 1 changed file with 7 additions and 18 deletions.
25 changes: 7 additions & 18 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,13 +53,8 @@ You may use environment variables to configure the DataMaxi+ client to avoid any

DataMaxi+ Python package currently includes the following clients:

- `Datamaxi`
- `Binance`
- `Bithumb`
- `Bybit`
- `Coinone`
- `Huobi`
- `Okx`
- `Upbit`
- `Defillama`
- `Naver`
- `Google`
Expand All @@ -68,14 +63,11 @@ All clients accept the same parameters that are described at [Configuration](#co
First, import the clients,

```python
# Main client
from datamaxi.datamaxi import Datamaxi

# CEX
from datamaxi.binance import Binance
from datamaxi.bithumb import Bithumb
from datamaxi.bybit import Bybit
from datamaxi.coinone import Coinone
from datamaxi.huobi import Huobi
from datamaxi.okx import Okx
from datamaxi.upbit import Upbit

# DeFi
from datamaxi.defillama import Defillama
Expand All @@ -88,14 +80,11 @@ from datamaxi.google import Google
and initialize them.

```python
# Main client
maxi = Datamaxi(api_key=api_key)

# CEX
binance = Binance(api_key=api_key)
bithumb = Bithumb(api_key=api_key)
bybit = Bybit(api_key=api_key)
coinone = Coinone(api_key=api_key)
huobi = Huobi(api_key=api_key)
okx = Okx(api_key=api_key)
upbit = Upbit(api_key=api_key)

# DeFi
defillama = Defillama(api_key=api_key)
Expand Down

0 comments on commit a363e45

Please sign in to comment.