Advertisement
Guest User

Untitled

a guest
Oct 12th, 2017
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. f = open("/path/to/file/screenshot.png", "r")
  2. f2 = open("/path/to/file/screenshot2.png", "r")
  3.  
  4.  
  5. data = {
  6. "type": "1",
  7. "photos": [
  8. {"image": f},
  9. {"image": f2}
  10. ]
  11. }
  12.  
  13. print requests.post(url, data, auth=HTTPBasicAuth("usr", "pass")).json()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement