11 lines
270 B
Python
11 lines
270 B
Python
import os
|
|
import telebot
|
|
|
|
API_KEY = "8438017196:AAFNokgHwhn4G-0HuCxc7ZVwf7SJP1ETXpc"
|
|
bot = telebot.TeleBot(API_KEY)
|
|
|
|
@bot.message_handler(commands=['heckingemmy'])
|
|
def greet(message):
|
|
bot.reply_to(message, "Heckingemmy taky pojde, ten hajzl ten zmrd")
|
|
|
|
bot.polling() |