Metadata-Version: 2.1
Name: dlmy
Version: 2.9
Summary: Yet another Spotify Downloader ...
License: MIT
Author: yrwq
Author-email: yrwqid@gmail.com
Requires-Python: >=3.9,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Requires-Dist: beautifulsoup4 (>=4.9.3,<5.0.0)
Requires-Dist: colorama (>=0.4.4,<0.5.0)
Requires-Dist: configparser (>=5.0.1,<6.0.0)
Requires-Dist: lxml (>=4.6.2,<5.0.0)
Requires-Dist: requests (>=2.25.1,<3.0.0)
Requires-Dist: youtube_dl (>=2021.1.8,<2022.0.0)
Description-Content-Type: text/markdown

## Dlmy

### Introduction

Yet another Spotify Downloader omg. 🤐

Dlmy uses the given Spotify Track's metadata tags, to extract information about the music. After extracting information, the music is downloaded from YouTube using [youtube_dl](https://github.com/ytdl-org/youtube-dl).

Any contributions are welcomed!

### Features

- [x] Download single tracks using a Spotify url
- [x] Download single tracks using a search query
- [x] Download whole Spotify playlists

### Installation

#### Dependencies

The only dependency is `ffmpeg`, to embed metadata to tracks.
If you wish to skip this you can change `ffmpeg=True` to `ffmpeg=False` in in the configuration file.

#### Packages

##### Pip

```bash
pip install dlmy
```

### Usage

```bash
dlmy -t "title of the track"        download a track using query
dlmy -t <url>                       download the given track
dlmy -l <url>                       download a whole playlist
```

