Metadata-Version: 2.1
Name: youtube3
Version: 1.2.3
Summary: Python Youtube v3 API Wrapper
Home-page: https://github.com/diegoami/youtube3/
Author: Diego Amicabile
Author-email: diego.amicabile@gmail.com
License: BSD License
Keywords: youtube wrapper oauth2 v3
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Classifier: Topic :: Internet :: WWW/HTTP :: HTTP Servers
Requires-Dist: google-api-python-client
Requires-Dist: oauth2client

# DESCRIPTION

A wrapper around youtube Apis:

- https://developers.google.com/resources/api-libraries/documentation/youtube/v3/python/latest/
- https://developers.google.com/youtube/v3/docs/


## GOAL

I created this package to simplify some typical tasks related to the Youtube API.
See the `samples` directory for examples.

## USAGE

Create a youtube object
```
from youtube3 import YoutubeClient 
youtube = YoutubeClient(<location of your client_secrets.json>)
```

the available methods are all in youtube3.youtube_client

