The tag has no wiki summary.

learn more… | top users | synonyms

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 ...
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
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 ...
7
votes
1answer
608 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 ...
6
votes
1answer
2k views

Urllib.urlopen() works on SSLv3 urls with Python 2.6.6 on 1 machine, but not with 2.6.7/2.7.2 on another

Spent a good part of a day on this, and I'm realllly at my wit's end. I have 1 machine "A" with Python 2.6.6/2.7.2 installed, and another machine "B" with Python 2.6.7/2.7.2 installed. On machine A, ...
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 ...
4
votes
1answer
837 views

Google App Engine: upload_data fails because “target machine actively refused it” on devserver

I'm trying to upload data from a CSV to my app using the devserver: appcfg.py upload_data --config_file="DataLoader.py" --filename="data.csv" --kind=Foo --url=http://localhost:8083/remote_api ...
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 ...
4
votes
2answers
761 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 ...
4
votes
1answer
748 views

why python gevent is slower than serial ?

i am using gevent to preform concurrent download. based on this example this is the code: import gevent from gevent import monkey urls = ...
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
4answers
3k views

Python: Urllib.urlopen nonnumeric port

for the following code theurl = "https://%s:%s@members.dyndns.org/nic/update?hostname=%s&myip=%s&wildcard=NOCHG&mx=NOCHG&backmx=NOCHG" % (username, password, hostname, theip) conn = ...
3
votes
3answers
736 views

Passing a variable in url?

So I'm new in python and I desperately need help. I have a file which has a bunch of ids (integer values) written in 'em. Its a text file. Now I need to pass each id inside the file into a url. ...
3
votes
2answers
190 views

Why urllib.urlopen.read() does not correspond to source code?

I'm trying to fetch the following webpage: import urllib urllib.urlopen("http://www.gallimard-jeunesse.fr/searchjeunesse/advanced/(order)/author?catalog[0]=1&SearchAction=1").read() The result ...
3
votes
1answer
172 views

Getting the error text from `urllib2.urlopen`

I used Python's urllib2.urlopen and got a 500 error from the server. How do I find the text of the error? I'm hoping that it has useful information.
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 ...
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 ...
3
votes
5answers
394 views

Caching options in Python or speeding up urlopen

Hey all, I have a site that looks up info for the end user, is written in Python, and requires several urlopen commands. As a result it takes a bit for a page to load. I was wondering if there was a ...
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"}
2
votes
1answer
749 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 ...
2
votes
1answer
543 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 ...
2
votes
1answer
866 views

Mercurial and nginx. Error 10054

When I push files to the server, then after 60 seconds i get "urlopen error [Errno 10054]". I think it's because i push large files. I use nginx web-server with fast-cgi process. What nginx parametr ...
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 ...
2
votes
2answers
379 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 = ...
2
votes
2answers
858 views

How does urllib.urlopen() work?

Let's consider a big file (~100MB). Let's consider that the file is line-based (a text file, with relatively short line ~80 chars). If I use built-in open()/file() the file will be loaded in lazy ...
2
votes
1answer
458 views

How use openurl & multiprocessing get URL different data in the same time?

This loop help get some text data from web service: while True: u = urllib2.urlopen('http://url/%d.csv' %inputd) f=open('/folder/%s.csv' $inputd,'a') csvread = csv.reader(u) csvwrite ...
2
votes
1answer
430 views

How to use python urlopen scraping after a page finish loading all searching result?

I am trying to scrape air ticket info(including plane info and price info, etc.) from http://flight.qunar.com/ using python3 and BeautifulSoup. Below is the python code I am using. In this code I ...
2
votes
1answer
707 views

Python - character encoding and decoding problems

I have got 1 source file with utf-8 characters (names) I have got 1 out file with same character encoding. I am working with a html page, paste and cut the useful information for me to ...
2
votes
1answer
2k views

python mechanize javascript submit button problem!

im making some script with mechanize.browser module. one of problem is all other thing is ok, but when submit() form,it not working, so i was found some suspicion source part. in the html source i ...
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 ...
2
votes
1answer
283 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
163 views

Python - merging many url's and parsing them

Below is script that I found on forum, and it is almost exactly what I need except I need to read like 30 different url's and print them all together.I have tried few options but script just breaks. ...
1
vote
5answers
153 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 = ...
1
vote
2answers
608 views

Error while using urllib.request.urlopen in Python

What's wrong with this code? >>> from urllib.request import urlopen >>> for line in urlopen("http://google.com/"): print(line.decode("utf-8")) <!doctype ...
1
vote
3answers
1k views

How to use urlopen to make POST request without data argument

I am trying to use urlopen to perform GET and POST requests via the Facebook Graph API. I noticed from here: Facebook Graph API and Django that I can perform GET request fairly easily. And from here: ...
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 ...
1
vote
2answers
322 views

Python: KeyError/IOError with urllib.urlopen

I am trying to pass some text to this readability API like so: text = 'this reminds me of the Dutch 2001a caravan full of smoky people Auld Lang Syne' # construct Readability Metrics API url ...
1
vote
1answer
181 views

If I use urlretrive and urlopen to access the same url, I end up with different files. Why?

I'm fairly new to python, (and programming in general), and I've ran into some trouble while writing a program to fetch midi files from the internet. Below is some code that I expected to write two ...
1
vote
1answer
97 views

Which of these is a good way to request an API?

Whenever looking at API libraries for Python, there seems to be about half of them simply using: response = urllib2.urlopen('https://www.example.com/api', data) and about half using: connection = ...
1
vote
1answer
228 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 ...
1
vote
2answers
260 views

Error with urlopen: new-line character seen in unquoted field

I am using urllib.urlopen with Python 2.7 to read csv files located on an external webserver: # Try & Except statements removed for clarity import urllib import csv url = ... csv_file = ...
1
vote
2answers
536 views

How to pass parameter to Url with Python urlopen

I'm currently new to python programming. My problem is that my python program doesn't seem to pass/encode the parameter properly to the ASP file that I've created. This is my sample code: import ...
1
vote
1answer
228 views

Fetching 'https' pages using 'urlopen' vs getpage()

I'm trying to get an 'https' webpage(for eg: https://github.com/twitter/bootstrap) using urlopen(), it returns the page without any problem. But we are evaluating Twisted for a new project and trying ...
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 ...
1
vote
2answers
75 views

How do I get the urlopen command in Python to give up and move on?

I'm working on a script in Python 2.7 that downloads web pages. Most of the time, everything proceeds as planned. Given that this script has thousands of web pages to download, there will inevitably ...
1
vote
1answer
168 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
308 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
86 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 = ...

1 2