Skip to content

Commit a27ec04

Browse files
authored
Readme added
1 parent 992dac5 commit a27ec04

File tree

1 file changed

+33
-0
lines changed

1 file changed

+33
-0
lines changed

README.md

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
# youtube-python
2+
===================
3+
#### Python - Youtube Data API v3
4+
5+
**youtube-python** is a simple client for youtube api. It uses [Youtube Data API v3](https://developers.google.com/youtube/v3/).
6+
7+
## Installation
8+
```
9+
sudo pip install youtube-python
10+
```
11+
12+
## Using
13+
```python
14+
from youtube import YouTube
15+
api = youtube.YouTube(api_key='')
16+
```
17+
18+
## References https://developers.google.com/youtube/v3/docs/videos
19+
```python
20+
video = api.get('videos', id='B7FJV9KIn58')
21+
```
22+
23+
## References https://developers.google.com/youtube/v3/docs/channels/list
24+
```python
25+
video = api.get('channels', id='UCLFZ5qAH-l_WiRd_EOzX2og')
26+
```
27+
28+
29+
## Contributing
30+
[https://github.com/rohitkhatri/youtube-python](https://github.com/rohitkhatri/youtube-python)
31+
32+
## Youtube Data API v3
33+
[Youtube Data API v3 Doc](https://developers.google.com/youtube/v3/)

0 commit comments

Comments
 (0)