【发布时间】:2022-01-07 01:16:45
【问题描述】:
import json
import os
import threading
from kucoin.client import Client
api_key = ""
api_secret = ""
passphrase = ""
client = Client(api_key, api_secret, passphrase)
def printit():
threading.Timer(5.0, printit).start()
pull = client.get_tick()
cointType = pull[0]['coinType']
print(coinType)
printit()
它说: "文件"...",第 4 行,在 从 kucoin.client 导入客户端 ModuleNotFoundError: 没有名为 'kucoin' 的模块"
【问题讨论】:
-
请添加更多信息,例如,您是如何安装
kucoin的?
标签: python module modulenotfounderror