Skip to content
Mahiro edited this page Jul 30, 2025 · 4 revisions

AsyncYT Documentation

Welcome to AsyncYT 🧠✨ A YouTube downloader that’s cute, clean, and async from top to bottom!


Quickstart

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.

Clone this wiki locally