@bot.message_handler(commands=['ready'])
def ready(message):
chat = message.chat.id
user = {'id' : chat}
if collection.find_one(user) is None:
bot.send_message(chat, 'Отлично, ты учавствуешь!')
collection.insert_one(user)
else:
bot.send_message(chat, 'Ты уже участник!')
@bot.message_handler(commads=['1','2'])