As c by requests (Python 2.7) to obtain an image file, and then use the post method to send to the server?
file = requests.get('http://site.com/immage.jpg')
requests.post('http://site2.com/, file=somefile')
how to convert a file to somefile?
|
As c by requests (Python 2.7) to obtain an image file, and then use the post method to send to the server?
how to convert a |
||||
|
Use the
I've posted the downloaded image as multipart-encoded POST with the field-name |
||||
|
|
ummm you save it...
|
||||
requests? Why isfile=somefileinside the string inside of a separate parameter? What do you want to post to the server, and what is going wrong when you try? – abarnert Sep 21 '12 at 22:31