python-scraping
python-scraping copied to clipboard
Chapter 10.4: Issue about Posting Image
Hello Everyone,
I am getting error with following code
import requests
files = {'uploadFile': open('python.png', 'rb')}
r = requests.post('http://pythonscraping.com/pages/processing2.php', files=files)
print(r.text)
Respondes is Sorry, there was an error uploading your file.
Anyone's help would be very thankful.