Metadata-Version: 2.1
Name: KamTube
Version: 0.0.4
Summary: "An ICQ async bot framework"
Home-page: https://github.com/kamuridesu/KamTube
Author: Kamuri Amorim
Author-email: luiz.k.amorim@gmail.com
License: MIT
Keywords: invidious download youtube python cli
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3 :: Only
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: aiohttp
Requires-Dist: beautifulsoup4

# KamTube.py

Downloads videos from YouTube via Invidious using Python

# Install: 
    python3 -m pip install --user KamTube

# Usage:
## CLI
`python3 -m KamTube [flags] search`

Eg:

`python3 -m KamTube -x -d never gonna give you up` downloads the song directly

## Script
```py
from KamTube import KamTube
import asyncio

async def main():
    async with KamTube() as downloader:
        await downloader.save("dQw4w9WgXcQ")


asyncio.run(main())
```
