如何在一个电报机器人中管理更多的用户?

2022-02-26 00:00:00 python telegram bots variables telepot

问题描述

我用python制作了一个电报机器人,它发送的消息类似于

if message == '/start':
    bot.sendMessage(chat_id, "Insert your name:")
    a = 'name'
if a == 'name' and message != '/start'
    name_user = message
    bot.sendMessage(chat_id, "Insert your birthday:")
    a = 'birth'
    and so on for other information...

当两个用户同时使用我的机器人时出现问题,因为第一个用户更改了‘a’,所以第二个用户从出生开始,而不是从名字开始,有人能帮我吗?


解决方案

使用用户ID存储。

a[chat_id] = name

相关文章