Tagged Questions
1
vote
1answer
87 views
How do i set a header that prevents the site from sending a gzip encoded response
i am using python urllib2.urlopen to get html content and i am getting a gziped response.
can i set the headers so i will get it not zipped ?
my code
response = urlopen(url,None , TIMEOUT)
html = ...
0
votes
0answers
483 views
How can we implement urllib2's urlopen and read functionality using WinInet functions?
I've trying to implemnet the python lib's urllib2's urlopen function using WinInet function. I think python automatically takes care of the cookies and sessions.
Here's the code snippet of python:
...