Advertisement
ldm37

bot.py

Sep 12th, 2019
204
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. import config
  2. import telebot
  3. from telebot import types
  4. bot = telebot.TeleBot(config.token)
  5.  
  6. @bot.message_handler(commands = ['url'])
  7. def url(message):
  8. markup = types.InlineKeyboardMarkup()
  9. btn_my_site= types.InlineKeyboardButton(text='Наш сайт', url='https://habrahabr.ru')
  10. markup.add(btn_my_site)
  11. bot.send_message(message.chat.id, "Нажми на кнопку и перейди на наш сайт.", reply_markup = markup)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement