forked from rohitkhatri/youtube-python
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathPKG-INFO
47 lines (40 loc) · 1.68 KB
/
PKG-INFO
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
Metadata-Version: 1.0
Name: youtube-python-async
Version: 1.0.1
Summary: Python Youtube Data API v3 - Asynchronous
Home-page: https://github.com/economy/youtube-python
Author: economy
Author-email: [email protected]
License: GPL
Description: # youtube-python-async
===================
#### Python - Youtube Data API v3 - Asynchronous
**youtube-python-async** is an asynchronous client for the YouTube API, based on [youtube-python](https://github.com/rohitkhatri/youtube-python).
It uses the [Youtube Data API v3](https://developers.google.com/youtube/v3/).
## Installation
```
pip install git+git://github.com/economy/youtube-python-async.git
```
## Usage
```python
from youtube_async import API
api = API(api_key='')
```
## Query [videos](https://developers.google.com/youtube/v3/docs/videos)
```python
video = await api.get('videos', id='B7FJV9KIn58')
```
## Query [channels](https://developers.google.com/youtube/v3/docs/channels/list)
```python
video = await api.get('channels', id='UCLFZ5qAH-l_WiRd_EOzX2og')
```
## Youtube Data API v3
[Youtube Data API v3 Doc](https://developers.google.com/youtube/v3/)
Keywords: youtube data api python v3 async
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3.9
Classifier: Operating System :: OS Independent
Classifier: Topic :: Software Development :: Libraries :: Python Modules