编写 Telegram 机器人时如何避免使用全局变量
How do I avoid using global variables when writing a Telegram bot
我正在使用 python-telegram-bot 库在 Python 上编写 Telegram 机器人。该机器人的功能是查找给定位置周围的 POI。我有一个具有 8 个状态的 ConversationHandler,我需要在这些函数之间传递一些数据,例如地点的地址和坐标,以及搜索半径。但是,如果我使用全局变量,则机器人在多人同时使用时无法正常工作。引入全局变量的替代方案有哪些?
我大概有以下代码:
# ...
def start(update, context):
context.bot.send_photo(update.message.chat_id, "...", caption="Hello")
return 1
def location(update, context):
global lat, lon, address
address = update.message.text # here i get a variable that i have to use later
lon, lat = get_coordinates(address).split()
keyboard = [
... # an InlineKeyboard
]
reply_markup = InlineKeyboardMarkup(keyboard)
update.message.reply_text("...", reply_markup=reply_markup)
return 2
# ... some other functions ...
def radius(update, context):
global r
r = float(update.message.text) # here i also get a variable that i'll need later
keyboard = [
... # another keyboard
]
reply_markup = InlineKeyboardMarkup(keyboard)
update.message.reply_text("...",
reply_markup=reply_markup)
return 4
def category(update, context):
global lat, lon, r
query = update.callback_query
query.answer()
keyboard = [...]
categories_dict = {
...
}
subcategories = find_subcategories(categories_dict[query.data], lat, lon, r) # here i need to use the variables
...
# ... some other similar functions where i also need those values ...
def main():
updater = Updater(TOKEN)
dp = updater.dispatcher
conv_handler = ConversationHandler(
entry_points=[CommandHandler('start', start)],
states={
# ... handler states ...
},
fallbacks=[CommandHandler('stop', stop)]
)
dp.add_handler(conv_handler)
updater.start_polling()
updater.idle()
if __name__ == '__main__':
main()
您可以按键使用数据存储。
一个简单的解决方案是使用全局字典。但是,最好避免使用全局变量,因为您可能会偶然从某个地方更改此变量,您甚至不会理解为什么您的代码会做一些奇怪的事情。
可能你应该使用一些数据库,例如Redis.
python-telegram-bot
库有一个 built-in 解决方案。请查看 this wiki page 了解更多信息。
免责声明:我目前是 python-telegram-bot
.
的维护者
我正在使用 python-telegram-bot 库在 Python 上编写 Telegram 机器人。该机器人的功能是查找给定位置周围的 POI。我有一个具有 8 个状态的 ConversationHandler,我需要在这些函数之间传递一些数据,例如地点的地址和坐标,以及搜索半径。但是,如果我使用全局变量,则机器人在多人同时使用时无法正常工作。引入全局变量的替代方案有哪些?
我大概有以下代码:
# ...
def start(update, context):
context.bot.send_photo(update.message.chat_id, "...", caption="Hello")
return 1
def location(update, context):
global lat, lon, address
address = update.message.text # here i get a variable that i have to use later
lon, lat = get_coordinates(address).split()
keyboard = [
... # an InlineKeyboard
]
reply_markup = InlineKeyboardMarkup(keyboard)
update.message.reply_text("...", reply_markup=reply_markup)
return 2
# ... some other functions ...
def radius(update, context):
global r
r = float(update.message.text) # here i also get a variable that i'll need later
keyboard = [
... # another keyboard
]
reply_markup = InlineKeyboardMarkup(keyboard)
update.message.reply_text("...",
reply_markup=reply_markup)
return 4
def category(update, context):
global lat, lon, r
query = update.callback_query
query.answer()
keyboard = [...]
categories_dict = {
...
}
subcategories = find_subcategories(categories_dict[query.data], lat, lon, r) # here i need to use the variables
...
# ... some other similar functions where i also need those values ...
def main():
updater = Updater(TOKEN)
dp = updater.dispatcher
conv_handler = ConversationHandler(
entry_points=[CommandHandler('start', start)],
states={
# ... handler states ...
},
fallbacks=[CommandHandler('stop', stop)]
)
dp.add_handler(conv_handler)
updater.start_polling()
updater.idle()
if __name__ == '__main__':
main()
您可以按键使用数据存储。
一个简单的解决方案是使用全局字典。但是,最好避免使用全局变量,因为您可能会偶然从某个地方更改此变量,您甚至不会理解为什么您的代码会做一些奇怪的事情。 可能你应该使用一些数据库,例如Redis.
python-telegram-bot
库有一个 built-in 解决方案。请查看 this wiki page 了解更多信息。
免责声明:我目前是 python-telegram-bot
.