Metadata-Version: 2.1
Name: pyytdl
Version: 1.3.2
Summary: yt_downloader packaged
Home-page: https://github.com/MatiuDev/yt_downloader
Author: MatiuDev
Author-email: matias.devacc@gmail.com
License: MIT
Platform: UNKNOWN
Description-Content-Type: text/markdown
License-File: LICENCE

# yt_downloader

Paste YT URL's and download mp3/mp4 files

* Using [yt-dlp](https://github.com/yt-dlp/yt-dlp)

* FFmpeg executables are required! [Download](https://www.gyan.dev/ffmpeg/builds/ffmpeg-git-essentials.7z)

## **Command line functions**

```x
  -h, --help                                show this help message and exit
  -L [LINKS ...], --links [LINKS ...]       links seperated with a space
  -M MODE, --mode MODE                      mp3 or mp4
  -D DESTINATION, --destination DESTINATION destination folder

```

## **Use as a package**

```python
from pyyt import downloader
from pyyt.config import return_config

options = return_config('mp3') # Used to configure download configuration -return_config(mode, destination)

downloader.download(['https://www.youtube.com/watch?v=dQw4w9WgXcQ'], options) # Put links in a list

```


