我正在使用 twitch api(twitch-python 和 python-twitch-client)来抓取 twitch。
我不知道应该如何管理这些 httperrors,因为我没有使用 urllib.request。
game = []
for a in lis[68:]:
b = client.videos.get_by_id(a).game
try:
game.append(b)
except Exception as e:
print(type(e))
即使我使用除了:HTTPError:404 客户端错误:未找到 url:https ://api.twitch.tv/kraken/videos/420146641,仍然会出现此错误