forked from vitiko98/qobuz-dl
-
Notifications
You must be signed in to change notification settings - Fork 0
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
5 changed files
with
43 additions
and
54 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 |
---|---|---|
|
@@ -27,12 +27,10 @@ pip3 install -r requirements.txt --user | |
pip3 install windows-curses | ||
pip3 install -r requirements.txt | ||
``` | ||
#### Add your credentials to `config.json` | ||
```json | ||
{ | ||
"email": "", | ||
"password": "" | ||
} | ||
#### Add your credentials to `config.py` | ||
```python | ||
email = "[email protected]" | ||
password = "your_password" | ||
``` | ||
#### Run Qobuz-DL | ||
##### Linux / MAC OS | ||
|
@@ -53,7 +51,7 @@ optional arguments: | |
-i run Qo-Dl-curses on URL input mode | ||
-q int quality (5, 6, 7, 27) (default: 6) [320, LOSSLESS, 24B <96KHZ, 24B >96KHZ] | ||
-l int limit of search results by type (default: 10) | ||
-d PATH custom directory for downloads | ||
-d PATH custom directory for downloads (default: 'Qobuz Downloads') | ||
``` | ||
## A note about Qo-DL | ||
`Qobuz-DL` is inspired in the discontinued Qo-DL-Reborn. This program uses two modules from Qo-DL: `qopy` and `spoofer`, both written by Sorrow446 and DashLt. | ||
|
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# Qobuz credentials (Don't remove the quotes!) | ||
email = "[email protected]" | ||
password = "your_password" | ||
|
||
# Default folder where the releases are downloaded | ||
default_folder = "Qobuz Downloads" | ||
|
||
# Default per type results limit | ||
default_limit = 10 | ||
|
||
# Default quality for url input mode. This will be ignored in interactive mode | ||
# (5, 6, 7, 27) [320, LOSSLESS, 24B <96KHZ, 24B >96KHZ] | ||
default_quality = 6 |
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
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