短縮URLを展開する

更新日:2018.02.17 作成日:2012.01.28

短縮URLを展開する。

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

Related contents