Metadata-Version: 2.1
Name: twitch-python
Version: 0.0.2
Summary: Twitch module for Python
Home-page: https://github.com/PetterKraabol/Twitch-Python
Author: Petter Kraabøl
Author-email: petter.zarlach@gmail.com
License: MIT
Description: # Twitch Python
        
        [![Discord](https://user-images.githubusercontent.com/7288322/34471967-1df7808a-efbb-11e7-9088-ed0b04151291.png)](https://discord.gg/wZJFeXC)
        
        
        `Work in progress`
        
        Twitch Python provides API data to [PetterKraabol/Twitch-Chat-Downloader](https://github.com/PetterKraabol/Twitch-Chat-Downloader).
        
        ### Requirements
        
        * [Python 3.6 or newer](https://www.python.org/downloads/)
        * [A Twitch client ID](https://dev.twitch.tv/dashboard/apps)
        
        ### Usage
        
        ```python
        import twitch
        
        # Twitch Helix API
        helix = twitch.Helix('client-id')
        
        
        # Multiple users by name and id
        for user in helix.users('sodapoppin', 'reckful', 24250859):
            print(user.display_name)
        
        # Single user
        print(helix.user('zarlach').display_name)
        
        
        # Videos
        for video in helix.videos([318017128, 317650435]):
            print(video.title)
        
        # Single video
        print(helix.video(318017128).title)
        
        
        # Video comments
        for comment in helix.video(318017128).comments():
            print(comment.commenter.display_name)
        
        
        # Comments from multiple videos
        for video, comments in helix.videos([318017128, 317650435]).comments():
            for comment in comments:
                print(comment.commenter.display_name, comment.message.body)
        
        
        # Comments from multiple videos from a user
        for video, comments in helix.user('sodapoppin').videos().comments():
                for comment in comments:
                    print(comment.commenter.display_name, comment.message.body)
        
        
        # Comments from first 5 videos of multiple users
        for user, videos in helix.users('sodapoppin', 'reckful').videos(first=5):
                for video, comments in videos.comments():
                    for comment in comments:
                        print(comment.commenter.display_name, comment.message.body)
        
        ```
        
        ### Features
        - Object oriented
        - New Twitch API (Helix)
        - VOD chat from Twitch API v5
        - Optional cache
        
        ---
        
        [Check out Twitch-Chat-Downloader](https://github.com/PetterKraabol/Twitch-Chat-Downloader)
        
Keywords: Twitch API
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3.7
Description-Content-Type: text/markdown
