Advertisement
MyZik

Untitled

Nov 19th, 2022
1,256
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.60 KB | None | 0 0
  1. import telebot
  2. from telebot import types
  3. from config import token, channel_link, channel_name, redirect_link, redirect_name
  4.  
  5. bot = telebot.TeleBot(token, parse_mode='html')
  6.  
  7.  
  8. @bot.message_handler(commands=['start'])
  9. def start(message):
  10.     keyboard = types.InlineKeyboardMarkup(row_width=1)
  11.     btn = types.InlineKeyboardButton(url='https://google.com',
  12.                                      text='Кнопка')
  13.     keyboard.add(btn)
  14.     with open('static/welc.webp', 'rb') as photo:
  15.         bot.send_photo(message.chat.id, photo, caption='ЖМИ 👇🏻👇🏻👇', reply_markup=keyboard)
  16.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement