Advertisement
Guest User

Untitled

a guest
Feb 18th, 2020
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. import telebot
  2. import os
  3.  
  4. bot = telebot.TeleBot("bottoken")
  5.  
  6. for file in os.listdir('./TestFolder'):
  7. if file.endswith('.png'):
  8. current_photo = open(file, 'rb')
  9. bot.send_photo(chat_id=-1001308517159, photo=current_photo)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement