1
0
mirror of https://github.com/eternnoir/pyTelegramBotAPI.git synced 2023-08-10 21:12:57 +03:00
pyTelegramBotAPI/examples/custom_states.py

68 lines
2.0 KiB
Python
Raw Normal View History

2021-09-25 15:12:32 +03:00
import telebot
from telebot import custom_filters
2021-09-25 15:12:32 +03:00
bot = telebot.TeleBot("")
2021-09-25 15:12:32 +03:00
@bot.message_handler(commands=['start'])
def start_ex(message):
2021-10-01 21:29:59 +03:00
"""
Start command. Here we are starting state
"""
2021-09-25 15:12:32 +03:00
bot.set_state(message.chat.id, 1)
bot.send_message(message.chat.id, 'Hi, write me a name')
2021-09-25 15:12:32 +03:00
@bot.message_handler(state="*", commands='cancel')
def any_state(message):
2021-10-01 21:29:59 +03:00
"""
Cancel state
"""
bot.send_message(message.chat.id, "Your state was cancelled.")
bot.delete_state(message.chat.id)
@bot.message_handler(state=1)
def name_get(message):
2021-10-01 21:29:59 +03:00
"""
State 1. Will process when user's state is 1.
"""
2021-09-25 15:12:32 +03:00
bot.send_message(message.chat.id, f'Now write me a surname')
bot.set_state(message.chat.id, 2)
with bot.retrieve_data(message.chat.id) as data:
2021-09-25 15:12:32 +03:00
data['name'] = message.text
@bot.message_handler(state=2)
def ask_age(message):
2021-10-01 21:29:59 +03:00
"""
State 2. Will process when user's state is 2.
"""
2021-09-25 15:12:32 +03:00
bot.send_message(message.chat.id, "What is your age?")
bot.set_state(message.chat.id, 3)
with bot.retrieve_data(message.chat.id) as data:
2021-09-25 15:12:32 +03:00
data['surname'] = message.text
2021-10-01 21:29:59 +03:00
# result
@bot.message_handler(state=3, is_digit=True)
def ready_for_answer(message):
with bot.retrieve_data(message.chat.id) as data:
2021-09-25 15:12:32 +03:00
bot.send_message(message.chat.id, "Ready, take a look:\n<b>Name: {name}\nSurname: {surname}\nAge: {age}</b>".format(name=data['name'], surname=data['surname'], age=message.text), parse_mode="html")
bot.delete_state(message.chat.id)
2021-10-01 21:29:59 +03:00
#incorrect number
@bot.message_handler(state=3, is_digit=False)
def age_incorrect(message):
bot.send_message(message.chat.id, 'Looks like you are submitting a string in the field age. Please enter a number')
2021-09-25 15:12:32 +03:00
2021-10-01 21:29:59 +03:00
# register filters
bot.add_custom_filter(custom_filters.StateFilter(bot))
bot.add_custom_filter(custom_filters.IsDigitFilter())
# set saving states into file.
bot.enable_saving_states() # you can delete this if you do not need to save states
bot.infinity_polling(skip_pending=True)