2013-04-01から1日間の記事一覧

Pythonで ニコニコ動画API テスト

ニコニコ動画APIとは (ニコニコドウガエーピーアイとは) [単語記事] - ニコニコ大百科 import urllib import xml.etree.ElementTree def getthumbinfo(video_id): u = urllib.urlopen('http://ext.nicovideo.jp/api/getthumbinfo/' + video_id) t = u.read()…