Metadata-Version: 2.1
Name: aiotubes
Version: 2.0.1
Summary: Asynchronous Youtube API
Home-page: https://github.com/sheldygg/aiotube
Author: sheldy
License: MIT
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Description-Content-Type: text/markdown
License-File: LICENSE

# AIOTUBE

**aiotube** Asynchronous Youtube API


### Example

```python
import asyncio

from aiotubes 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())

```
