up vote 9 down vote favorite
3
share [g+] share [fb]

I am just learning python and is interested in how this can be accomplished. During the search for the answer, I came across this service: http://www.longurlplease.com

For example:

http://bit.ly/rgCbf can be converted to:

http://webdesignledger.com/freebies/the-best-social-media-icons-all-in-one-place

I did some inspecting with Firefox and see that the original url is not in the header.

link|improve this question

1  
What is the question? – Bjorn Tipling Apr 14 '09 at 16:16
feedback

3 Answers

up vote 23 down vote accepted

Enter urllib2, which offers the easiest way of doing this:

>>> import urllib2
>>> fp = urllib2.urlopen('http://bit.ly/rgCbf')
>>> fp.geturl()
'http://webdesignledger.com/freebies/the-best-social-media-icons-all-in-one-place'

For reference's sake, however, note that this is also possible with httplib:

>>> import httplib
>>> conn = httplib.HTTPConnection('bit.ly')
>>> conn.request('HEAD', '/rgCbf')
>>> response = conn.getresponse()
>>> response.getheader('location')
'http://webdesignledger.com/freebies/the-best-social-media-icons-all-in-one-place'

And with PycURL, although I'm not sure if this is the best way to do it using it:

>>> import pycurl
>>> conn = pycurl.Curl()
>>> conn.setopt(pycurl.URL, "http://bit.ly/rgCbf")
>>> conn.setopt(pycurl.FOLLOWLOCATION, 1)
>>> conn.setopt(pycurl.CUSTOMREQUEST, 'HEAD')
>>> conn.setopt(pycurl.NOBODY, True)
>>> conn.perform()
>>> conn.getinfo(pycurl.EFFECTIVE_URL)
'http://webdesignledger.com/freebies/the-best-social-media-icons-all-in-one-place'
link|improve this answer
3  
It's a better idea to use a HEAD request instead of a GET to avoid transferring the content of the page. urllib and curl can do HEAD, although httplib does not, I believe. – Adam Rosenfield Apr 15 '09 at 2:06
Ah, yes. Thanks. – Paolo Bergantino Apr 15 '09 at 2:07
1  
Updated, httplib didn't complain about the HEAD... that's what she said. – Paolo Bergantino Apr 15 '09 at 2:17
just a tad confused. In the first example using urllib2, is it making a head request or using get? (in reference to adam's post) Cause I see the reference to HEAD in httplib and pycurl – TimLeung Apr 16 '09 at 1:44
1  
From my research, I don't think urllib2 supports HEAD requests. Everything I found suggested using httplib if you just need the HEAD. – Paolo Bergantino Apr 16 '09 at 2:04
show 1 more comment
feedback

There is also a wrapper for the bitly API available for Python that can do this: http://code.google.com/p/python-bitly/

link|improve this answer
feedback

I've been working on Ruby... Just wanna share the code

require 'net/http'

url = URI.parse('http://bit.ly/4okpb2')

host, port = url.host, url.port if url.host && url.port
req = Net::HTTP::Get.new(url.path)
res = Net::HTTP.start(host, port) {|http|  http.request(req) }
fullurl = res.header['location']

puts fullurl
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.