balaraz / aiotubes

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

AIOTUBE

aiotube Asynchronous YouTube API

Example

import asyncio

from aiotube import Video

async def main():
    client = Video("https://www.youtube.com/watch?v=MZ-cvXEvYI8")
    stream = (await client.streams()).get_audio_only()
    await stream.download_filepath(filename="yeat.mp3")
    
asyncio.run(main())

About

License:MIT License


Languages

Language:Python 100.0%