1
vote
1answer
164 views

503 error when trying to access Google Patents using python

Earlier today I was able to pull data from Google Patents using the code below import urllib2 url = ...
0
votes
2answers
93 views

urllib2.openurl not working on Google Patents

I'm trying to scrape some data from google patents, and the beginning of my code looks like this: (here is the hyperlink to the url listed below) In [1]: import urllib2 In [2]: ...
0
votes
1answer
255 views

urllib2 python exception in Ubuntu when loading a https json file

I'm trying to load a json file but it's throwing an exception: <urlopen error [Errno 104] Connection reset by peer> This is my code (I executed it on the shell for testing/debugging ...
0
votes
0answers
172 views

How to set TCP_NODELAY flag when loading URL with urllib2?

I am using urllib2 for loading web-page, my code is: httpRequest = urllib2.Request("http:/www....com") pageContent = urllib2.urlopen(httpRequest) pageContent.readline() How can I get hold of the ...
-2
votes
1answer
73 views

Problems getting the page source with urlopen [closed]

The webplayer on this site http://rockantenne.de/webplayer has a playlist available with all the songs played so far on that day. When I am in Firefox and press Ctrl-U to see the source code of the ...
0
votes
1answer
227 views

Urllib2 HTTPS truncated response

I am trying to fetch a page using urllib2.urlopen (actually, I am using mechanize, but this is the method that mechanize calls) When I fetch the page, I am getting incomplete responses; the page gets ...
2
votes
3answers
3k views

python urllib2 urlopen response

python urllib2 urlopen response: <addinfourl at 1081306700 whose fp = <socket._fileobject object at 0x4073192c>> expected: {"token":"mYWmzpunvasAT795niiR"}
0
votes
2answers
494 views

python: Can't use urlopen!! from urllib, urllib2, clientcookie urlopen ssl error

I made some code for access particular site instead user. It's very similar to auto login program. My program receive userid and password from user and try access url with data and login, return login ...
0
votes
2answers
103 views

urlopen always retrieves the same webpage

I am trying to parse webpages using urllib2, BeautifulSoup and Python 2.7. The problem lies upstream: each time I try to retrieve a new webpage, I get the one I already retrieved. However, pages are ...
1
vote
1answer
171 views

Cannot create Soup from Guardian article fetched with urllib2.urlopen

I somehow cannot create a soup from a Guardian article I am fetching with urllib2.urlopen() when the same code works with another url. Here is my code: import urllib2 from bs4 import BeautifulSoup ...
1
vote
2answers
318 views

How to request a url with non-unicode carachters on main domainname (not params) in Python?

I cannot request url "http://www.besondere-raumdüfte.de" with urllib2.urlopen(). I tried to encode string using urllib.urlencode with utf-8, idna, ascii But still doesn't work. Raises URLError: ...
1
vote
1answer
94 views

Problems with urlopen and mysql

TRANSLATION: I want to get the plain text of web pages, where the urls are stored and then do an update in the same table adding the text. For some reason, after opening around 800 links the program ...
0
votes
1answer
98 views

CURL and urlopen giving conflicting results

So I'm retrieving some JSON data from a website and using the standard urlopen() from urllib2: Code: url = ...
2
votes
1answer
288 views

urlopen call with timeout not terminating after timeout

In Python 2.4.4, I'm using urllib2.urlopen() to request a resource. Before making the request, I'm setting a timeout with: socket.setdefaulttimeout(10) (This version of Python is too old to have a ...
2
votes
2answers
387 views

Why does text retrieved from pages sometimes look like gibberish?

I'm using urllib and urllib2 in Python to open and read webpages but sometimes, the text I get is unreadable. For example, if I run this: import urllib text = ...
4
votes
2answers
2k views

DeadlineExceededError: ApplicationError: 5 in using urllib2.urlopen() function

In my application I am using the urllib2.urlopen() function to call an api and get the result from that api.But this is not working fine.Sometimes it shows the result but sometimes it gives the ...
1
vote
5answers
156 views

Extract text from a file object using .read()

I'm trying to read the source of a website with this code: import urllib2 z=urllib2.urlopen('http://skreemr.com/results.jsp?q=said+the+whale&search=SkreemR+Search') z.read() print z txt = ...
0
votes
1answer
740 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
2answers
765 views

urlib2.urlopen through proxy fails after a few calls

Edit: after much fiddling, it seems urlgrabber succeeds where urllib2 fails, even when telling it close the connection after each file. Seems like there might be something wrong with the way urllib2 ...
2
votes
1answer
554 views

How do I access the original response headers that contain a redirect when using urllib2.urlopen

I'm trying to parse the location header of an HTTP response that is returned after using urllib2.urlopen, but the only response headers that I receive are from the target redirect --- not the original ...
1
vote
2answers
5k views

how to handle “getaddrinfo failed”?

Hallo, i have problem. i use mechanize, python 2.7 to connect some sites (the code is not important right now) i have list of sites and i connect to them one by now. When it happens the site from my ...
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 ...
0
votes
1answer
81 views

Which registry / environment (or other) settings does urllib2.urlopen use to determine proxy settings?

Following on from this question: What is causing urllib2.urlopen() to connect via proxy? I'd like to know which operating system & environmental settings can affect urllib2.urlopen? For example, ...
0
votes
0answers
479 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: ...
0
votes
2answers
383 views

Python urllib2.urlopen bug: timeout error brings down my Internet connection?

I don't know if I'm doing something wrong, but I'm 100% sure it's the python script brings down my Internet connection. I wrote a python script to scrape thousands of files header info, mainly for ...
1
vote
2answers
346 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 ...
2
votes
1answer
752 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
1answer
200 views

How to By pass WP super cache using python?

I'm trying to collecting data from a frequently updating blog, so I simply use a while loop which includes urllib2.urlopen("http:\example.com") to refresh the page every 5 minutes to collect the data ...
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 ...
1
vote
1answer
234 views

Python auth_handler not working for me

I've been reading about Python's urllib2's ability to open and read directories that are password protected, but even after looking at examples in the docs, and here on StackOverflow, I can't get my ...
3
votes
2answers
2k views

Detecting timeout erros in Python's urllib2 urlopen

I'm still relatively new to Python, so if this is an obvious question, I apologize. My question is in regard to the urllib2 library, and it's urlopen function. Currently I'm using this to load a ...
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 ...
7
votes
1answer
610 views

Urllib's urlopen breaking on some sites (e.g. StackApps api): returns garbage results

I'm using urllib2's urlopen function to try and get a JSON result from the StackOverflow api. The code I'm using: >>> import urllib2 >>> conn = ...
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 ...