This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from telegram.ext import Updater, CommandHandler, MessageHandler, Filters | |
import requests | |
# Токен, который вы получили от BotFather | |
TELEGRAM_TOKEN = '6316632422:AAElNs3y4HW_pL3DltyIHqxrhtT_XluEvPafU' | |
# Словарь для хранения выбранного языка пользователем | |
user_language = {} | |
def set_language(update, context): |
OlderNewer