Tagged Questions
urllib2 is a python module that defines functions and classes to help with URL actions (basic and digest authentication, redirections, cookies, etc)
43
votes
4answers
9k views
Should I use urllib or urllib2?
In Python (2.5), should I use urllib or urllib2? What's the difference? They seem to do the same thing.
(Bonus points, if I'm using Google App Engine, does this change the answer?)
40
votes
8answers
20k views
Python: urllib/urllib2/httplib confusion
I'm trying to test the functionality of a web app by scripting a login sequence in Python, but I'm having some troubles.
Here's what I need to do:
Do a POST with a few parameters and headers.
...
30
votes
6answers
5k views
Which is best in Python: urllib2, PycURL or mechanize?
Ok so I need to download some web pages using Python and did a quick investigation of my options.
Included with Python:
urllib - seems to me that I should use urllib2 instead. urllib has no cookie ...
23
votes
2answers
11k views
Using MultipartPostHandler to POST form-data with Python
Problem: When POSTing data with Python's urllib2, all data is URL encoded and sent as Content-Type: application/x-www-form-urlencoded. When uploading files, the Content-Type should instead be set to ...
20
votes
5answers
6k views
19
votes
1answer
9k views
urllib2 read to Unicode
I need to store the content of a site that can be in any language. And I need to be able to search the content for a Unicode string.
I have tried something like:
import urllib2
req = ...
18
votes
8answers
8k views
Fetch a Wikipedia article with Python
I try to fetch a Wikipedia article with Phython's urllib:
f = urllib.urlopen("http://en.wikipedia.org/w/index.php?title=Albert_Einstein&printable=yes")
s = f.read()
f.close()
However ...
15
votes
3answers
3k views
Overriding urllib2 HTTPError and reading response HTML anyway
I am trying to screen scrape multiple pages of a website, that return an 'HTTP Error 500: Internal Server Error' response, but still give important data inside the error HTML.
Normally, I would fetch ...
13
votes
3answers
3k views
How can I use a SOCKS 4/5 proxy with urllib2?
How can I use a SOCKS 4/5 proxy with urllib2 to download a web page?
13
votes
3answers
6k views
How do I prevent Python's urllib(2) from following a redirect
I am currently trying to log into a site using Python however the site seems to be sending a cookie and a redirect statement on the same page. Python seems to be following that redirect thus ...
12
votes
6answers
4k views
Which is the best python library to make REST request like PUT, GET, DELETE, POST and how?
I am bit confuse over set of libraries of pythons to connect with REST enabled web services.
I have tried httplib, urllib and urllib2. I want to know how can methods like PUT, GET, POST, DELETE can be ...
12
votes
4answers
2k views
How to download any(!) webpage with correct charset in python?
Problem
When screen-scraping a webpage using python one has to know the character encoding of the page. If you get the character encoding wrong than your output will be messed up.
People usually use ...
12
votes
4answers
5k views
Changing user agent on urllib2.urlopen
How can I download a webpage with a user agent other than the default one on urllib2.urlopen?
11
votes
3answers
8k views
Get json data via url and use in python (simplejson)
I imagine this must have a simple answer, but I am struggling: I want to take a url (which outputs json) and get the data in a usable dictionary in python. I am stuck on the last step.
>>> ...
10
votes
3answers
2k views
Source interface with Python and urllib2
How do i set the source IP/interface with Python and urllib2?
9
votes
2answers
278 views
Why does Python's urllib2.urlopen() raise an HTTPError for successful status codes?
According to the urllib2 documentation,
Because the default handlers handle redirects (codes in the 300 range), and codes in the 100-299 range indicate success, you will usually only see error ...
9
votes
3answers
2k views
Python - urllib2 & cookielib
I am trying to open the following website and retrieve the initial cookie and use it for the second url-open BUT if you run the following code it outputs 2 different cookies. How do I use the initial ...
9
votes
4answers
1k views
Downloading video's in flv format from youtube
I cant really understand how youtube serves videos but I have been reading through what I can, it seems like the old method get_video is now obsolete and can't be used any more so because of this I am ...
9
votes
4answers
4k 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 ...
9
votes
3answers
3k views
Python urllib2 Progress Hook
I am trying to create a download progress bar in python using the urllib2 http client. I've looked through the API (and on google) and it seems that urllib2 does not allow you to register progress ...
9
votes
3answers
7k views
Python interface to PayPal - urllib.urlencode non-ASCII characters failing
I am trying to implement PayPal IPN functionality. The basic protocol is as such:
The client is redirected from my site to PayPal's site to complete payment. He logs into his account, authorizes ...
8
votes
4answers
303 views
How to request pages from website that uses OpenID?
This question has been asked here before. The accepted answer was probably obvious to both questioner and answerer---but not to me. I have commented on the above question to get more precisions, but ...
8
votes
3answers
2k views
How to make HTTP DELETE method using urllib2?
Does it support DELETE or PUT method? If yes provide with any example please. I need to use piston API.
8
votes
3answers
2k views
Python urllib2 URLError http status code
I want to grab the http status code once it raises a URLError exception:
I tried this but didn't help:
except URLError, e:
logger.warning( 'It seems like the server is down. Code:' + ...
8
votes
4answers
5k views
python: urllib2 how to send cookie with urlopen request
I am trying to use urllib2 to open url and to send specific cookie text to the server. E.g. I want to open site Solve chess problems, with a specific cookie, e.g. search=1. How do I do it?
I am ...
8
votes
5answers
4k views
urllib.urlopen works but urllib2.urlopen doesn't
I have a simple website I'm testing. It's running on localhost and I can access it in my web browser. The index page is simply the word "running". urllib.urlopen will successfully read the page but ...
7
votes
6answers
745 views
How to solve Python memory leak when using urrlib2?
I'm trying to write a simple Python script for my mobile phone to periodically load a web page using urrlib2. In fact I don't really care about the server response, I'd only like to pass some values ...
7
votes
6answers
733 views
How do I unit test a module that relies on urllib2?
I've got a piece of code that I can't figure out how to unit test! The module pulls content from external XML feeds (twitter, flickr, youtube, etc.) with urllib2. Here's some pseudo-code for it:
...
7
votes
3answers
763 views
How to Speed Up Python's urllib2 when doing multiple requests
I am making several http requests to a particular host using python's urllib2 library. Each time a request is made a new tcp and http connection is created which takes a noticeable amount of time. Is ...
7
votes
3answers
3k views
Stream large binary files with urllib2 to file
I use the following code to stream large files from the Internet into a local file:
fp = open(file, 'wb')
req = urllib2.urlopen(url)
for line in req:
fp.write(line)
fp.close()
This works but it ...
7
votes
8answers
3k views
How do you get default headers in a urllib2 Request?
I have a Python web client that uses urllib2. It is easy enough to add HTTP headers to my outgoing requests. I just create a dictionary of the headers I want to add, and pass it to the Request ...
7
votes
7answers
3k views
urllib2 file name
If I open a file using urllib2, like so:
remotefile = urllib2.urlopen('http://example.com/somefile.zip')
Is there an easy way to get the file name other then parsing the original URL?
EDIT: ...
7
votes
7answers
3k views
Caching in urllib2?
Is there an easy way to cache things when using urllib2 that I am over-looking, or do I have to roll my own?
6
votes
1answer
149 views
Python's urllib2.urlopen() hanging with local connection to a Java Restlet server
I'm trying to connect to a local running Restlet server from python, but the connection hangs infinitely (or times out if I set a timeout).
import urllib2
handle = ...
6
votes
3answers
171 views
How to shutdown a timed out http POST using urlopen by urllib2 in Python?
Overview
I am using urlopen from the Python 2.7.1 urllib2 package to do a HTTP POST form a Windows XP machine to a remote Apache webserver (for instance the built-in web sharing of Mac OS X). The ...
6
votes
1answer
174 views
Performance difference between urllib2 and asyncore
I have some questions about the performance of this simple python script:
import sys, urllib2, asyncore, socket, urlparse
from timeit import timeit
class HTTPClient(asyncore.dispatcher):
def ...
6
votes
2answers
96 views
How do you test a function using which retrieves data by urllib2?
I am getting into testing in python and I asked myself how to test this method.
def get_response(self, url, params):
encoded_params = urllib.urlencode(params)
request = ...
6
votes
2answers
1k views
Why aren't persistent connections supported by URLLib2?
After scanning the urllib2 source, it seems that connections are automatically closed even if you do specify keep-alive.
Why is this?
As it is now I just use httplib for my persistent ...
6
votes
6answers
969 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
1answer
384 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
2answers
4k views
Python form POST using urllib2 (also question on saving/using cookies)
I am trying to write a function to post form data and save returned cookie info in a file so that the next time the page is visited, the cookie information is sent to the server (i.e. normal browser ...
6
votes
7answers
4k views
Using urllib2 with SOCKS proxy
Is it possible to fetch pages with urllib2 through a SOCKS proxy on a one socks server per opener basic? I've seen the solution using setdefaultproxy method, but I need to have different socks in ...
6
votes
2answers
2k views
Python urllib2 Basic Auth Problem
Update: based on Lee's comment I decided to condense my code to a really simple script and run it from the command line:
import urllib2
import sys
username = sys.argv[1]
password = sys.argv[2]
url = ...
6
votes
3answers
2k views
Using paired certificates with urllib2
I need to create a secure channel between my server and a remote web service. I'll be using HTTPS with a client certificate. I'll also need to validate the certificate presented by the remote ...
6
votes
2answers
5k views
Proxy with urllib2
I open the urls with
site = urllib2.urlopen('http://google.com')
And what I wanna do is connect the same way with a proxy
I got somwhere telling me
site = urllib2.urlopen('http://google.com', ...
6
votes
5answers
6k views
Spoofing the origination IP address of an HTTP request
This only needs to work on a single subnet and is not for malicious use.
I have a load testing tool written in Python that basically blasts HTTP requests at a URL. I need to run performance tests ...
6
votes
2answers
774 views
reading a stream made by urllib2 never recovers when connection got interrupted
While trying to make one of my python applications a bit more robust in case of connection interruptions I discovered that calling the read function of an http-stream made by urllib2 may block the ...
6
votes
2answers
6k views
Unescape Python Strings From HTTP
I've got a string from an HTTP header, but it's been escaped.. what function can I use to unescape it?
myemail%40gmail.com -> myemail@gmail.com
Would urllib.unquote() be the way to go?
5
votes
2answers
388 views
Why this error from urllib?
I get a strange error when using urllib:
INFO 2011-12-07 07:02:45,101 main.py:884] urlhttp://maps.googleapis.com/maps/api/geocode/json?latlng=59.3333,18.05&sensor=false
WARNING 2011-12-07 ...
5
votes
4answers
167 views
Inexplicable Urllib2 problem between virtualenv's.
I have some test code (as a part of a webapp) that uses urllib2 to perform an operation I would usually perform via a browser:
Log in to a remote website
Move to another page
Perform a POST by ...