是否有任何可能的方式使用Python 3的Twitch.tv API?它看起來已經準備好了另一種語言,但我花了很多時間學習Python。Python 3和Twitch API?
-1
A
回答
0
安裝它與pip3 install python-twitch
並閱讀正式文檔here。
1
是的,你可以導入請求這是一個偉大的模塊來處理API的。這裏有更多的文檔。
導入請求
R = requests.get( 'https://api.github.com/user',AUTH =( '用戶', '通'))
r.status_code
r.headers [」內容類型']
r.encoding
r.json()
相關問題
- 1. Laravel和Twitch API
- 2. PHP Twitch API慢
- 3. Twitch API json響應
- 4. Twitch API包含一個Cleint ID和php
- 5. Twitch API和PHP(查看流式數據)
- 6. 從Twitch獲取價值API
- 7. Discord Bot C#Twitch API集成
- 8. Twitch TV API JSON問題
- 9. Twitch API顯示拖放器列表
- 10. jquery twitch實時流api錯誤
- 11. Twitch Api - 不允許使用密碼
- 12. 使用Angular 2調用Twitch API
- 13. Twitch API讓玩家玩X遊戲
- 14. Python 3 C-API IO和文件執行
- 15. 從Python獲取Twitch通道ID
- 16. Python 3.x和SFTP
- 17. 缺少python 3 API函數
- 18. 哪個Python 3 API入門?
- 19. Web2py和python 3
- 20. Python 3:Python/C API字符串問題
- 21. Twitch Streamers freecodecamp project - DISPLAY ISSUE
- 22. Python-如何檢查一個Twitch流是否在線
- 23. Python新手... Python 3和Matplotlib
- 24. WingIDE - Python 2和Python 3
- 25. PyYAML和Python 3.x
- 26. Python 3和Pocket Sphinx
- 27. Python 3 - CSV和cx_Oracle
- 28. Boost和Python 3.x
- 29. 添加帳戶和更方便用戶集成到Twitch bot
- 30. ImageShack API和Python
[這](https://pypi.python.org/pypi/python-twitch/0.1.4)導入到蟒3.4我 – Arman