我想在 python 中为 twitch.tv 制作一个 HTTP 包装器。我该怎么做?我知道如何使用 HTTP GET,仅此而已。我希望它像这样工作:
import twichtvwrapper
twich = twichtvwrapper(useragent, username, password).
channel = twich.channel(channelname)
那么所有的 json 属性都会像这样进入这里:
print(channel.game) #this would say the last played game
print(channel.displayname) #this would print the display name of the channel
print(cahnnel.link.chat) #this will return the chat link
等等
我将如何制作这个包装?