我正在为 python 使用ccxt模块。我可以初始化它以进行交流。例如比特雷克斯:
exchange = ccxt.bittrex({
'enableRateLimit': True
})
return exchange
但以下不起作用:
ex = 'bittrex'
print(ex)
exchange = ccxt.ex({
'enableRateLimit': True
})
return exchange
错误:AttributeError: module 'ccxt' has no attribute 'ex'
我怎样才能使这项工作?