I'm currently developing a small script to take screenshots and upload them to imgur using Python.

The code looks like this:

import time
import os
import ImageGrab
import urllib
import urllib2

time.sleep(1)
shot = ImageGrab.grab()
dir = os.path.join(r'C:\SAMPLE\PATH', 'Screen ' + time.strftime(r'%Y-%m-%d %H-%M-%S') + '.png')
shot.save(dir)

data = urllib.urlencode({"key":'MY_API_KEY', "image":urllib.quote(open(dir,'rb').read().encode("base64"))})

site = urllib2.Request("http://imgur.com/api/upload.json", data)
s = urllib2.urlopen(site)

print s.read()

I get a response from imgur but when I open the link I get a blank image (though its resolution is correct). I think the base64 encoding method may be off but I'm at a loss.

link|improve this question

62% accept rate
Are you sure the screengrab has been saved to the file you've read? Try it with another image with the name hardcoded. – agf Jul 31 '11 at 3:20
@agf Yes, the file is there and I tried with a hardcoded path to another image with no avail. Thanks though. – Fernando Martin Jul 31 '11 at 3:27
feedback

1 Answer

You should use b64encode from the base64 module. I don't know why, but it gives different results:

from base64 import b64encode

(...)

data = urllib.urlencode({"key":'MY_API_KEY', "image":urllib.quote(b64encode(open(dir,'rb').read()))})
link|improve this answer
Still getting the same result. – Fernando Martin Jul 31 '11 at 5:25
I don't know what's wrong then... I searched for a few examples of python and imgur's JSON API and your code seems correct: garciat.info/easy-python-imgur-uploader pastebin.com/NiaJbhhP – nmat Jul 31 '11 at 5:36
5  
urlencode already escapes the data. Try removing the urllib.quote. – eryksun Jul 31 '11 at 5:42
@eryksun: That was it. Thanks a lot! – Fernando Martin Jul 31 '11 at 5:54
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.