Created
December 31, 2013 04:39
-
-
Save jseidl/8192692 to your computer and use it in GitHub Desktop.
URL unshortener in python. Just following HTTP 3XX codes within HEAD requests. Based on http://stackoverflow.com/questions/7153096/how-can-i-un-shorten-a-url-using-python/7153185#7153185 fixed for HTTPS
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import httplib | |
import urlparse | |
def unshorten_url(url): | |
parsed = urlparse.urlparse(url) | |
if parsed.scheme == 'https': | |
h = httplib.HTTPSConnection(parsed.netloc) | |
else: | |
h = httplib.HTTPConnection(parsed.netloc) | |
resource = parsed.path | |
if parsed.query != "": | |
resource += "?" + parsed.query | |
h.request('HEAD', resource ) | |
response = h.getresponse() | |
if response.status/100 == 3 and response.getheader('Location'): | |
return unshorten_url(response.getheader('Location')) # changed to process chains of short urls | |
else: | |
return url |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment