我的Heroku应用程序使用pandas
模块。我部署了它并将其放入requirements.txt
中,没有出现任何错误。部署后不起作用。
要对此进行测试,我做了以下
我在示例命令中添加了一个不相关的熊猫数据框,发现ping
没有在控制台中打印。
if message.content == 's!ping':
# Checking Latency
df = pandas.read_html(requests.get('https://example.com').text)[2]
ping = str(round(bot.latency, 3))
print(ping)
最后一件事
当我在计算机上运行代码时,discord机器人可以工作,但是当我将其部署到heroku 则不能
谢谢。