Metadata-Version: 2.1
Name: aioyoutube
Version: 0.1
Summary: Async wrapper for REST API youtube.com
Home-page: https://github.com/diarts/aioyoutube.git
Author: konstantin
Author-email: korobanov1993@yandex.ru
License: MIT
Description: # Aioyoutube
        - [About](#about)
        - [Usage](#usage)
        
        ## About
        Aioyoutube is a Python async wrapper for youtube.com REST API.
        
        ## Usage
        Note:
        ```
        For use aioyoutube package, you must create youtube application 
        and generate API application key. You can do it 
        on https://console.developers.google.com
        ```
        
        ### Use api
        All description of youtube api methods you can find on
        [youtube api page](https://developers.google.com/youtube/v3/docs).
        All api method names in package match with youtube api method names.
        
        Currently implemented methods: 
        - search
        - commentThreads
        - channels
        - playlistItems
        - playlists
        
        Exapmple using youtube api method "search":
        ```python
        import asyncio
        from aioyoutube import Api
        
        api = Api()
        
        loop = asyncio.get_event_loop()
        search = api.search(
            key='AIzaSyBu3xTXgHxJsJHeRw1RlZynqhwGRA7Q0Gs',
            text='search text'
        )
        task = loop.create_task(search)
        result = loop.run_until_complete(task)
        ```
        
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.7.2
Description-Content-Type: text/markdown
