No-boilerplate, async and typed YouTube Data API access.
Project description
Sly YouTube Data API for Python
🚧 This library is an early work in progress! Breaking changes may be frequent.
🐍 For Python 3.10+
No-boilerplate, async and typed YouTube Data API access. 😋
pip install slyytdapi
This library does not have full coverage. All methods are read-only. Currently, the following topics are supported:
- Videos
- Channels
- Comment threads
- Video search
- Channel members (requires approval from YouTube)
For collecting statistics about your own channel using the YouTube analytics API, see YTAAPI.
Example usage:
import asyncio
from SlyYTDAPI import *
async def main():
# don't forget to keep your secrets secret!
yt = YouTubeData(open('api_key.txt').read())
my_video = await yt.video('dQw4w9WgXcQ')
print(F"Check this out!\n{my_video.link()}")
# keep it simple
_ = await my_video.comments(limit=10) # list[Comment]
# or opt in to generators
print('\n---\n'.join([
F"{c.author_name} > {c.body}"
async for c in my_video.comments(limit=10)
]))
asyncio.run(main())
Example CLI usage for getting authorized:
# WINDOWS
py -m SlyYTDAPI grant
# MacOS or Linux
python3 -m SlyYTDAPI grant
Granting credentials requires a Google Cloud Console account and JSON file. Please see https://docs.dunkyl.net/SlyAPI-Python/tutorial/oauth2.html for more information.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file slyytdapi-0.4.7.tar.gz
.
File metadata
- Download URL: slyytdapi-0.4.7.tar.gz
- Upload date:
- Size: 12.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 107fa9178d0e910e0149fdef679bee7bcbd03bc981ac01ed358919fd5d2e3c66 |
|
MD5 | a644bc7e5945acdb5b32ef5156c1fcd0 |
|
BLAKE2b-256 | bcb55240bcba3185f60d913db7acad970fca290b8f96ab23b029906607534ca5 |
File details
Details for the file SlyYTDAPI-0.4.7-py3-none-any.whl
.
File metadata
- Download URL: SlyYTDAPI-0.4.7-py3-none-any.whl
- Upload date:
- Size: 12.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3c758afd6d384871323f0de405cbf7eac5471a267b84a4ea7efbab9544d19069 |
|
MD5 | 7e42d39e6a17183d9416c4572c0a3b5e |
|
BLAKE2b-256 | 541004748c1378da40d13700b2aa7af5787032beb08663cad0c7d1fdf36d6fcc |