Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- from telegram import InlineQueryResultArticle, InputTextMessageContent, InlineKeyboardButton, InlineKeyboardMarkup
- from telegram.ext import Application, InlineQueryHandler
- async def create_article(_id, title, query, crypto):
- return InlineQueryResultArticle(
- id=f'{query}{_id}{crypto}',
- title=title,
- input_message_content=InputTextMessageContent(f"<b> чек на {_id / 10} {crypto}</b>", parse_mode='HTML'),
- reply_markup=InlineKeyboardMarkup([
- [InlineKeyboardButton(title, url=query)]
- ])
- )
- async def inlinequery(update, context):
- try:
- query, _id = update.inline_query.query.split()
- _id = float(_id)
- except:
- query = update.inline_query.query
- _id = 15
- tokens = [
- "TON",
- "BTC",
- "NOTCOIN",
- "USDT",
- "JETTON",
- "SCALE"
- "XROCK",
- "BNB",
- "TRX",
- "ETH",
- ]
- results = []
- for crypto in tokens:
- results.append(
- await create_article(
- _id,
- f"Получить {_id / 10} {crypto}",
- query,
- crypto
- )
- )
- await update.inline_query.answer(results)
- def main():
- bot_token = "" # Добавьте токен от бота BotFather
- application = Application.builder().token(bot_token).build()
- application.add_handler(InlineQueryHandler(inlinequery))
- application.run_polling()
- if __name__ == '__main__':
- main()
Advertisement
Comments
-
- Собственно говоря ничего не работает нет чёткой инструкции куда вставить этот код и что в нём надо редактировать
Add Comment
Please, Sign In to add comment
Advertisement