Telegram version of schneiderbot
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

36 lines
1.3 KiB

5 years ago
5 years ago
  1. import requests
  2. import re
  3. import html
  4. urls = {
  5. "codinglove": "https://thecodinglove.com/",
  6. "wikihow": "https://de.wikihow.com/Spezial:Randomizer"
  7. }
  8. def send_coding_love_gif(bot, update):
  9. random_url = re.search('href="(.*)".*\n.*\n.*random\( \)', requests.get(urls["codinglove"]).text).group(1)
  10. random_page_content = requests.get(random_url)
  11. random_page_content.encoding = 'utf-8'
  12. random_page_content = html.unescape(random_page_content.text)
  13. caption = re.search('blog-post-title">(.*)</h1>', random_page_content).group(1)
  14. gif_match = re.search('data="(.*)" type="image/gif"', random_page_content)
  15. if gif_match is None:
  16. gif_match = re.search('og:image" content="(.*)"', random_page_content)
  17. if gif_match:
  18. gif_url = gif_match.group(1)
  19. bot.send_animation(chat_id=update.message.chat_id, animation=gif_url, caption=caption)
  20. else:
  21. update.message.reply_text("Error fetching image: %s ¯\_(ツ)_/¯" % random_url)
  22. def send_wiki_how_article(bot, update):
  23. random_howto = requests.get(urls["wikihow"])
  24. howto_title = re.search('<title>(.*)</title>', random_howto.text).group(1)
  25. howto_url = re.search('<link rel="canonical" href="(.*)" />', random_howto.text).group(1)
  26. update.message.reply_text(howto_title + "\n" + howto_url)