短縮URLを展開する

更新日:2017.12.09 作成日:2012.01.28
import sys
import urllib2

URL = "http://t.co/lWhYkfyK"
url = urllib2.urlopen(URL).geturl()

print url

Related contents