部署到Heroku中的熊猫无法正常工作

时间:2019-12-24 19:39:58

标签: heroku discord.py-rewrite

我的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 则不能

谢谢。

0 个答案:

没有答案