The urlopen tag has no wiki summary.
7
votes
6answers
4k views
How can I speed up fetching pages with urllib2 in python?
I have a script that fetches several web pages and parses the info.
(An example can be seen at http://bluedevilbooks.com/search/?DEPT=MATH&CLASS=103&SEC=01 )
I ran cProfile on it, and as I ...
6
votes
3answers
2k views
Tell urllib2 to use custom DNS
I'd like to tell urllib2.urlopen (or a custom opener) to use 127.0.0.1 (or ::1) to resolve addresses. I wouldn't change my /etc/resolv.conf, however.
One possible solution is to use a tool like ...
23
votes
6answers
11k views
timeout for urllib2.urlopen() in pre Python 2.6 versions
The urllib2 documentation says that timeout parameter was added in Python 2.6. Unfortunately my code base has been running on Python 2.5 and 2.4 platforms.
Is there any alternate way to simulate the ...
3
votes
3answers
3k views
How to fetch a non-ascii url with Python urlopen?
I need to fetch data from a URL with non-ascii characters but urllib2.urlopen refuses to open the resource and raises:
UnicodeEncodeError: 'ascii' codec can't encode character u'\u0131' in position ...
3
votes
3answers
2k views
Does urllib2.urlopen() cache stuff?
They didn't mention this in python documentation. And recently I'm testing a website simply refreshing the site using urllib2.urlopen() to extract certain content, I notice sometimes when I update the ...
2
votes
2answers
1k views
How do I set cookies using Python urlopen?
I am trying to fetch an html site using Python urlopen.
I am getting this error:
HTTPError: HTTP Error 302: The HTTP server returned a redirect error that would lead to an infinite loop
The ...
0
votes
1answer
738 views
How to reliably process web-data in Python
I'm using the following code to get data from a website:
time_out = 4
def tryconnect(turl, timer=time_out, retries=10):
urlopener = None
sitefound = 1
tried = 0
while (sitefound != ...
4
votes
3answers
4k views
Web scraping urlopen in python
I am trying to get the data from this website:
http://www.boursorama.com/includes/cours/last_transactions.phtml?symbole=1xEURUS
It seems like urlopen don't get the html code and I don't understand ...
4
votes
1answer
1k views
Python 3, let json object accept bytes or let urlopen output strings
With Python3 I am requesting from some url a json document.
response = urllib.request.urlopen(request)
The response object is a file like object with read, readline functions.
Normally a json ...
2
votes
1answer
750 views
Why urllib2.urlopen can not open pages like “http://localhost/new-post#comment-29”?
I'm curious, how come I get 404 error running this line:
urllib2.urlopen("http://localhost/new-post#comment-29")
While everything works fine surfing http://localhost/new-post#comment-29 in any ...
1
vote
2answers
343 views
unbuffered urllib2.urlopen
I have client for web interface to long running process. I'd like to have output from that process to be displayed as it comes. Works great with urllib.urlopen(), but it doesn't have timeout ...
7
votes
4answers
1k views
Use “byte-like object” from urlopen.read with json?
Just trying to test out very simple Python json commands, but having some trouble.
urlopen('http://www.similarsitesearch.com/api/similar/ebay.com').read()
should output
...
2
votes
3answers
263 views
Gibberish from urlopen
I am trying to read some utf-8 files from the addresses in the code below. It works for most of them, but for some files the urllib2 (and urllib) is unable to read.
The obvious answer here is that ...