Home

import random
import telebot

bot = telebot.TeleBot(“”)

@bot.message_handler(commands=[‘code’])
def generate_code(message):
code = ”.join(random.choices(“0123456789abcdefghijklmnopqrstuvwxyz”, k=5))
bot.reply_to(message, code)

bot.polling()

Design a site like this with WordPress.com
Get started