Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update readme #40

Merged
merged 1 commit into from
Jul 9, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading