Advertisement
Guest User

Untitled

a guest
Feb 10th, 2017
179
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. def thread_link(message):
  2. try:
  3. thread_id = return_thread_id(board='soc', subject='Киев')
  4. if thread_id is not None:
  5. bot.send_message(message.chat.id, "https://2ch.hk/soc/res/%s.html" % thread_id)
  6. elif thread_id is None:
  7. thread_id = return_thread_id(board='soc', subject='Киев', page='1')
  8. bot.send_message(message.chat.id, "https://2ch.hk/soc/res/%s.html" % thread_id)
  9. except:
  10. bot.send_message(message.chat.id, "Тред не найден!")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement