Привет, я некоторое время боролся с этим сценарием, и последняя строка начинает сводить меня с ума. Я хочу делать снимки каждую минуту и отправлять их в telegram.
import telebot
import picamera
# Set token
token = "PLACE TOKEN HERE"
# Connect to our bot
bot = telebot.TeleBot(token)
# Sets the id for the active chat
chat_id=PLACE CHAT ID HERE
# Get the photo
camera=picamera.PiCamera()
camera.capture('./capture.jpg')
camera.close()
# Sends a message to the chat
bot.send_photo(chat_id, photo=open('./capture.jpg', 'rb'))
ОШИБКА: TypeError: send_photo () получила неожиданный аргумент ключевого слова 'photo'
Помощь будет принята с благодарностью.