-
Notifications
You must be signed in to change notification settings - Fork 0
Home
Mahiro edited this page Jul 30, 2025
·
4 revisions
Welcome to AsyncYT 🧠✨ A YouTube downloader that’s cute, clean, and async from top to bottom!
from asyncyt import AsyncYT
import asyncio
downloader = AsyncYT()
async def main():
await downloader.setup_binaries()
info = await downloader.get_video_info('https://www.youtube.com/watch?v=dQw4w9WgXcQ')
print(info.title)
await downloader.download('https://www.youtube.com/watch?v=dQw4w9WgXcQ')
asyncio.run(main())See Installation to get started, or Usage for more details.