Metadata-Version: 1.1
Name: youtube-python
Version: 1.0.9
Summary: Python Youtube Data API v3
Home-page: https://github.com/rohitkhatri/youtube-python
Author: Rohit Khatri
Author-email: developer.rohitkhatri@gmail.com
License: GPL
Description: # youtube-python
        ===================
        #### Python - Youtube Data API v3
        
        **youtube-python** is a simple client for youtube api. It uses [Youtube Data API v3](https://developers.google.com/youtube/v3/).
        
        ## Installation
        ``` 
        sudo pip install youtube-python
        ```
        
        ## Using
        ```python
        from youtube import YouTube
        api = youtube.YouTube(api_key='')
        ```
        
        ## References https://developers.google.com/youtube/v3/docs/videos
        ```python
        video = api.get('videos', id='B7FJV9KIn58')
        ```
        
        ## References https://developers.google.com/youtube/v3/docs/channels/list
        ```python
        video = api.get('channels', id='UCLFZ5qAH-l_WiRd_EOzX2og')
        ```
        
        
        ## Contributing
        [https://github.com/rohitkhatri/youtube-python](https://github.com/rohitkhatri/youtube-python)
        
        ## Youtube Data API v3
        [Youtube Data API v3 Doc](https://developers.google.com/youtube/v3/)
        
Keywords: youtube data api python v3
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3.5
Classifier: Operating System :: OS Independent
Classifier: Topic :: Software Development :: Libraries :: Python Modules
