sas
sasunknown
plain_text
3 years ago
304 B
18
Indexable
from config import * # import token
import telebot
bot = telebot.TeleBot(tokentelegram)
@bot.message_handler(commands=["start", "ayuda", "help"])
def cmd_start(message):
bot.reply_to(message, "sexo la pelicula")
if __name__ == "__main__":
print("iniciando bot")
bot.infinity_polling()
Editor is loading...