mirror of
https://github.com/discountry/ritmex-bot.git
synced 2026-09-09 16:28:06 +00:00
514 B
514 B
# -*- 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)