fork download
  1. def sendPhoto(chat_id, image_file):
  2. resp = multipart.post_multipart('https://a...content-available-to-author-only...m.org/botbottokens/' + 'sendPhoto', [
  3. ('chat_id', str(chat_id)),
  4. ('caption', 'Image'),
  5. ], [
  6. ('photo', 'image_file', output.getvalue()),
  7. ])
Success #stdin #stdout 0.03s 9984KB
stdin
Standard input is empty
stdout
Standard output is empty