I think what you want is just:
import httplib hcon = httplib.HTTPConnection("foo.appspot.com") hcon.request("GET", "/someURL") hcon.close()