在运行下面的代码时,我得到了这样的错误:"ModuleNotFoundError:没有名为‘kucoin.client’的模块;'kucoin‘不是一个包“。我做了pip安装,如这里的文档所示:http://python-kucoin.readthedocs.io/en/latest/overview.html#response-timestamps。哪里出了问题?
from kucoin.client import Client
client = Client(api_key, api_secret)
# optionally pass the language you would like to use
# see client.get_languages() for options
#client = Client(api_key, api_secret, language='zh_CN)
client.get_languages()发布于 2018-01-31 16:11:54
我将python文件另存为kucoin.py。它干扰了模块的加载
https://stackoverflow.com/questions/48506477
复制相似问题