Hi,
I want to retrieve data from wikimapia api. For this i am using httplib
function of python.
this is my VIEW.py file( just the httplic() )
conn=httplib.HTTPConnection("www.python.org")
r1 = conn.getresponse()
print r1.status, r1.reason
data1 = r1.read()
conn.close()
Initially i gave the wikimapia API instead of www.python.org, then it gave
invalid URL error; but the url was working.
Then i gave www.python.org instead of wikimapia API just lyk given in the
example of python documentation ; now its showing Response Not Ready error
at /index.
Somebody please help me to solve this solution.
--
Regards,
Rav!
--
You received this message because you are subscribed to the Google Groups
"Django users" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/django-users?hl=en.