forked from rohitkhatri/youtube-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPKG-INFO
More file actions
50 lines (41 loc) · 1.65 KB
/
PKG-INFO
File metadata and controls
50 lines (41 loc) · 1.65 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
Metadata-Version: 1.1
Name: youtube-python
Version: 1.0.12
Summary: Python Youtube Data API v3
Home-page: https://github.com/rohitkhatri/youtube-python
Author: Rohit Khatri
Author-email: [email protected]
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