Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rohitkhatri/youtube-python
YouTube Api wrapper in python
https://github.com/rohitkhatri/youtube-python
python youtube-api youtube-python
Last synced: 18 days ago
JSON representation
YouTube Api wrapper in python
- Host: GitHub
- URL: https://github.com/rohitkhatri/youtube-python
- Owner: rohitkhatri
- Created: 2016-11-30T08:11:42.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2021-02-08T17:16:23.000Z (almost 4 years ago)
- Last Synced: 2024-10-06T20:17:47.925Z (about 1 month ago)
- Topics: python, youtube-api, youtube-python
- Language: Python
- Size: 11.7 KB
- Stars: 66
- Watchers: 4
- Forks: 15
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# 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 API
api = API(client_id='', client_secret='', api_key='', access_token='optional')
```## 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/)