initial commit

This commit is contained in:
Grizouille
2025-11-06 22:42:49 +01:00
parent 72dfd1e21e
commit 6399ab4af2
50 changed files with 4044 additions and 233 deletions

13
.vscode/launch.json vendored Normal file
View File

@@ -0,0 +1,13 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "Run Deezer Downloader",
"type": "python",
"request": "launch",
"program": "${workspaceFolder}/.venv/Scripts/deezer-downloader",
"args": ["--config", ".\\deezer_downloader\\settings.ini"],
"console": "integratedTerminal"
}
]
}