我正在尝试将一个简单的 Telegram 机器人代码上传到PythonAnywhere
,它使用该telepot
库。我在 bash 控制台中安装了该库,但是当我尝试运行该程序时,出现以下错误:
ModuleNotFoundError: No module named telepot
这是我的代码:
import teleport
update_id = None
bot = telepot.Bot('MY TOKEN HERE')
while True:
response = bot.getUpdates(offset=update_id)
try:
update_id = (response[0]["update_id"] + 1)
except:
continue
print(response)
bot.sendMessage(response[0]["message"]["from"]["id"], "got the message, thank you!")