Guest User

Untitled

a guest
May 22nd, 2018
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. def report_L1():
  2. chat_id = 229320588
  3. pdf = open('c:/bla/bla/otchet.pdf', 'rb')
  4. bot.send_document(chat_id, pdf)
  5. bot.send_document(chat_id, "FILEID")
  6.  
  7. schedule.every(10).seconds.do(report_L1)
  8. bot.polling(none_stop=True)
  9. while True:
  10. schedule.run_pending()
  11. time.sleep(1)
Add Comment
Please, Sign In to add comment