【发布时间】:2016-10-25 06:50:36
【问题描述】:
我需要下载 twich.tv 表情。我找到了 Phyton 脚本,但这不起作用。写脚本的人说 Twich 激活 cloudfare 等等。那个page with API doc
import urllib
import os
import json
if not os.path.exists('./emotes'):
os.makedirs('./emotes')
print('Saving emotes to folder: ' + os.path.abspath('./emotes') + '...')
print('Grabbing emote list...')
emotes = json.load(urllib.urlopen('https://twitchemotes.com/api_cache/v2/global.json'))
for code, emote in emotes['emotes'].items():
print('Downloading: ' + code + '...')
urllib.urlretrieve('http:' + emotes['template']['large'].replace('{image_id}', str(emote['image_id'])),
'./emotes/' + code + '.png')
print('Done! Kappa')
【问题讨论】: