File tree Expand file tree Collapse file tree 1 file changed +33
-0
lines changed
Expand file tree Collapse file tree 1 file changed +33
-0
lines changed Original file line number Diff line number Diff line change 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/ )
You can’t perform that action at this time.
0 commit comments