===================
youtube-python-async is an asynchronous client for the YouTube API, based on youtube-python. It uses the Youtube Data API v3.
pip install git+git://github.com/economy/youtube-python-async.git
from youtube_async import API
api = API(client_id='', client_secret='', api_key='', access_token='optional', timeout=5)
Query videos
video = await api.get('videos', id='B7FJV9KIn58')
Query channels
channel = await api.get('channels', id='UCLFZ5qAH-l_WiRd_EOzX2og')