mirror of
https://github.com/discountry/ritmex-bot.git
synced 2026-09-09 08:18:07 +00:00
29 lines
514 B
Markdown
29 lines
514 B
Markdown
- [Basic Rate Limiting](./examples/py/)
|
|
|
|
|
|
```python
|
|
# -*- coding: utf-8 -*-
|
|
|
|
from pprint import pprint
|
|
|
|
import os
|
|
import sys
|
|
|
|
|
|
import ccxt # noqa: E402
|
|
|
|
|
|
symbol = 'ETH/BTC'
|
|
|
|
exchange = ccxt.poloniex({
|
|
'enableRateLimit': True, # enabled by default
|
|
})
|
|
|
|
# print 10 times with appropriate delay
|
|
for i in range(0, 10):
|
|
print('--------------------------------------------------------------------')
|
|
ticker = exchange.fetch_ticker(symbol)
|
|
ticker = exchange.omit(ticker, 'info')
|
|
pprint(ticker)
|
|
|
|
``` |