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
等
このラッパーを作成するにはどうすればよいですか?