Tagged Questions

Python module providing a high-level interface for fetching data across the World Wide Web, predecessor to urllib2

learn more… | top users | synonyms

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?)
16
votes
4answers
14k views

How to unquote a urlencoded unicode string in python?

I have a unicode string like "Tanım" which is encoded as "Tan%u0131m" somehow. How can i convert this encoded string back to original unicode. Apparently urllib.unquote does not support unicode.
12
votes
6answers
2k views

Python urllib vs httplib?

When would someone use httplib and when urllib? What are the differences? I think I ready urllib uses httplib, I am planning to make an app that will need to make http request and so far I only used ...
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
3answers
13k views

Python: get http headers from urllib call?

does urllib fetch the whole page? when a urlopen call is made? I'd like to just read the http response header without getting the page it looks like urllib opens the http connection and then ...
11
votes
1answer
4k views

How to percent-encode url parameters in python?

If I do url = "http://example.com?p=" + urllib.quote(query) It doens't encode "/" to "%2F" (breaks OAuth normalization) It doens't handle unicode (it throw an exception) is there a better ...
11
votes
3answers
5k views

Django: add image in an ImageField from image url

please excuse me for my ugly english ;-) Imagine this very simple model : class Photo(models.Model): image = models.ImageField('Label', upload_to='path/') I would like to create a Photo from ...
11
votes
2answers
3k views

Python standard library to POST multipart/form-data encoded data

I would like to POST multipart/form-data encoded data. I have found an external module that does it: http://atlee.ca/software/poster/index.html however I would rather avoid this dependency. Is there ...
10
votes
4answers
8k views

How to know if urllib.urlretrieve succeeds?

urllib.urlretrieve returns silently even if the file doesn't exist on the remote http server, it just saves a html page to the named file. For example: urllib.urlretrieve('http://google.com/abc.jpg', ...
9
votes
3answers
2k views

In Python, how do I use urllib to see if a website is 404 or 200?

How to get the code of the headers through urllib?
9
votes
3answers
3k views

should I call close() after urllib.urlopen()?

new to python and reading someone else's code: should urllib.urlopen() be followed by urllib.close()? Otherwise, one would leak connections, correct?
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
1answer
2k views

Python, opposite function urllib.urlencode

how can i convert data after processing urllib.urlencode to dict ? urllib.urldecode does not exist.
8
votes
3answers
981 views

Force python mechanize/urllib2 to only use A requests?

Here is a related question but I could not figure out how to apply the answer to mechanize/urllib2: ...
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
2answers
1k views

Python 2 vs. Python 3 - urllib formats

I'm getting really tired of trying to figure out why this code works in Python 2 and not in Python 3. I'm just trying to grab a page of json and then parse it. Here's the code in Python 2: import ...
7
votes
6answers
736 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
4k views

Python error when using urllib.open

When I run this: import urllib feed = urllib.urlopen("http://www.yahoo.com") print feed I get this output in the interactive window (PythonWin): <addinfourl at 48213968 whose fp = ...
6
votes
2answers
153 views

How to retrieve a webpage in python, including any images

I'm trying to retrieve the source of a webpage, including any images. At the moment I have this: import urllib page = urllib.urlretrieve('http://127.0.0.1/myurl.php', 'urlgot.php') print urlgot.php ...
6
votes
1answer
169 views

Are python's file write() and urlopen() methods asynchronous?

As asked in the title, are open('...','w').write('...') and urllib.urlopen('..') asynchronous calls?
6
votes
1answer
386 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
2k views

Difference between Python urllib.urlretrieve() and wget

I am trying to retrieve a 500mb file using Python, and I have a script which uses urllib.urlretrieve(). There seems to some network problem between me and the download site, as this call consistently ...
6
votes
2answers
1k views

How to auto log into gmail atom feed with Python?

Gmail has this sweet thing going on to get an atom feed: def gmail_url(user, pwd): return "https://"+str(user)+":"+str(pwd)+"@gmail.google.com/gmail/feed/atom" Now when you do this in a ...
6
votes
3answers
5k views

How to catch 404 error in urllib.urlretrieve

Background: I am using urllib.urlretrieve, as opposed to any other function in the urllib* modules, because of the hook function support (see reporthook below) .. which is used to display a textual ...
5
votes
1answer
186 views

Get socket for urllib2.urlopen return value for HTTP

I'm trying to do asynchronous downloading of files using urllib2 but have no succeeded in finding out the socket (or its fileno) to wait for new data for for HTTP requests. Here's what I've already ...
5
votes
1answer
365 views

Urllib and validation of server certificate

I use python 2.6 and request Facebook API (https). I guess my service could be target of Man In The Middle attacks. I discovered this morning reading again urllib module documentation that : Citation: ...
5
votes
1answer
838 views

catch specific HTTP error in python

I want to catch a specific http error and not any one of the entire family.. what I was trying to do is -- import urllib2 try: urllib2.urlopen("some url") except urllib2.HTTPError: ...
5
votes
1answer
2k views

Download file using urllib in Python with the wget -c feature

I am programming a software in Python to download HTTP PDF from a database. Sometimes the download stop with this message : retrieval incomplete: got only 3617232 out of 10689634 bytes How can I ...
5
votes
2answers
4k views

Python 3.0 urllib.parse error “Type str doesn't support the buffer API”

File "/usr/local/lib/python3.0/cgi.py", line 477, in __init__ self.read_urlencoded() File "/usr/local/lib/python3.0/cgi.py", line 577, in read_urlencoded self.strict_parsing): File ...
4
votes
3answers
96 views

Why am I getting an AttributeError when trying to print out

I am learning about urllib2 by following this tutorial http://docs.python.org/howto/urllib2.html#urlerror Running the code below yields a different outcome from the tutorial import urllib2 req = ...
4
votes
2answers
639 views

Is there a unicode-ready substitute I can use for urllib.quote and urllib.unquote in Python 2.6.5?

Python's urllib.quote and urllib.unquote do not handle Unicode correctly in Python 2.6.5. This is what happens: In [5]: print urllib.unquote(urllib.quote(u'Cataño')) ...
4
votes
1answer
196 views

Which should I be using: urlparse or urlsplit?

Which URL parsing function pair should I be using and why? urlparse and urlunparse, or urlsplit and urlunsplit?
4
votes
3answers
519 views

urllib2 basic authentication oddites

I'm slamming my head against the wall with this one. I've been trying every example, reading every last bit I can find online about basic http authorization with urllib2, but I can not figure out what ...
4
votes
1answer
198 views

Change python byte type to string

I'm using python to play with the stackoverflow API. I run the following commands: f = urllib.request.urlopen('http://api.stackoverflow.com/1.0/stats') d = f.read() The type of d is class 'bytes' ...
4
votes
2answers
243 views

Javascript access another webpage

I know very, very little of javascript, but I'm interested in writing a script which needs information from another webpage. It there a javascript equivalent of something like urllib2? It doesn't need ...
4
votes
1answer
2k views

parse query string with urllib in Python 2.4

Using Python2.4.5 (don't ask!) I want to parse a query string and get a dict in return. Do I have to do it "manually" like follows? >>> qs = 'first=1&second=4&third=3' >>> d ...
3
votes
5answers
210 views

What should I do if socket.setdefaulttimeout() is not working?

I'm writing a script(multi-threaded) to retrieve contents from a website, and the site's not very stable so every now and then there's hanging http request which cannot even be time-outed by ...
3
votes
2answers
83 views

RegEx in python, not sure what I am doing wrong

I am quite new to Python and I researched as much as I could before I decided I should ask a question here. So here is the problem: I am not sure what I am doing wrong with my RegEx. I wanted to try ...
3
votes
2answers
161 views

how to convert characters like these,“a³ a¡ a´a§” in unicode, using python?

i'm making a crawler to get text html inside, i'm using beautifulsoup. when I open the url using urllib2, this library converts automatically the html that was using portuguese accents like " ã ó é õ ...
3
votes
3answers
240 views

How can I un-shorten a URL using python?

I have seen this thread already - How can I unshorten a URL using python? My issue with the resolved answer (that is using the unshort.me API) is that I am focusing on unshortening youtube links. ...
3
votes
3answers
381 views

Python urllib and urllib2 not opening localhost URLs?

In Python I can use urllib2 (and urllib) to open external URLs such as Google. However, I am hitting issues when opening localhost URLs. I have a python SimpleHTTPServer running on port 8280 which I ...
3
votes
1answer
105 views

Streaming Zope HTTP responses with proxy views

I am using the following PLone + urllib code to proxy responses from another server through a BrowserView req = urllib2.Request(full_url) try: # Important or if the remote server is ...
3
votes
2answers
654 views

Post picture to Facebook using Python

How can I post an image to Facebook using Python?
3
votes
1answer
161 views

What is the proper way to handle site requests with cookie handlers in Python3?

I'm writing a script in Python 3.1.2 that logs into a site and then begins to make requests. I can log in without any great difficulty, but after doing that the requests return an error stating I ...
3
votes
1answer
3k views

Python URLLib / URLLib2 POST

I'm trying to create a super-simplistic Virtual In / Out Board using wx/Python. I've got the following code in place for one of my requests to the server where I'll be storing the data: data = ...
3
votes
2answers
619 views

Extract Meta Keywords From Webpage?

I need to extract the meta keywords from a web page using Python. I was thinking that this could be done using urllib or urllib2, but I'm not sure. Anyone have any ideas? I am using Python 2.6 on ...
3
votes
2answers
2k views

Use Twisted's getPage as urlopen?

I would like to use Twisted non-blocking getPage method within a webapp, but it feels quite complicated to use such function compared to urlopen. This is an example of what I'm trying to achive: def ...
3
votes
1answer
282 views

Urllib and concurrency - Python

I'm serving a python script through WSGI. The script accesses a web resource through urllib, computes the resource and then returns a value. Problem is that urllib doesn't seem to handle many ...
3
votes
1answer
2k views

Turning on debug output for python 3 urllib

In python 2, it was possible to get debug output from urllib by doing import httplib import urllib httplib.HTTPConnection.debuglevel = 1 response = urllib.urlopen('http://example.com').read() ...
3
votes
2answers
2k views

Python: Downloading a large file to a local path and setting custom http headers

I am looking to download a file from a http url to a local file. The file is large enough that I want to download it and save it chunks rather than read() and write() the whole file as a single giant ...

1 2 3 4 5 7