Skip to content

Instantly share code, notes, and snippets.

@tkmru
Created December 11, 2013 00:07
Show Gist options
  • Save tkmru/7902756 to your computer and use it in GitHub Desktop.
Save tkmru/7902756 to your computer and use it in GitHub Desktop.
This code expand short URL.
# coding: UTF-8
import sys
import urllib2
def expandURL(shortURL):
url = urllib2.urlopen(shortURL).geturl()
return url
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment