-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
41 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,41 @@ | ||
# TIDDL | ||
# Tidal Downloader | ||
|
||
TIDDL (Tidal Downloader) is a Python CLI application that allows downloading Tidal tracks. | ||
It's based on [Tidal-Media-Downloader](https://github.com/yaronzz/Tidal-Media-Downloader) and TIDDL is the enhanced version. | ||
TIDDL is the Python CLI application that allows downloading Tidal tracks. | ||
Fully typed, no requirements. | ||
|
||
![GitHub top language](https://img.shields.io/github/languages/top/oskvr37/tiddl?style=for-the-badge) | ||
![PyPI - Version](https://img.shields.io/pypi/v/tiddl?style=for-the-badge) | ||
[<img src="https://img.shields.io/badge/gitmoji-%20😜%20😍-FFDD67.svg?style=for-the-badge" />](https://gitmoji.dev) | ||
|
||
It's inspired by [Tidal-Media-Downloader](https://github.com/yaronzz/Tidal-Media-Downloader) - currently not mantained project. | ||
This repository will contain features requests from that project and will be the enhanced version. | ||
|
||
# Usage | ||
|
||
Install package using `pip` | ||
|
||
```bash | ||
pip install tiddl | ||
``` | ||
|
||
After installation use `tiddl` | ||
|
||
```bash | ||
$ tiddl | ||
⚙️ Go to https://link.tidal.com/CYARD and add device! | ||
Hit enter when you are ready... | ||
✅ Token good for 7 days | ||
Enter track id to download: | ||
``` | ||
|
||
You can also use TIDDL as module, it's fully typed so you will get type hints | ||
|
||
```python | ||
from tiddl import TidalApi | ||
|
||
api = TidalApi(token, user_id, country_code) | ||
|
||
my_playlists = api.getPlaylists() | ||
|
||
print(f"You have got {my_playlists['totalNumberOfItems']} playlists!") | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters