Skip to content

Commit

Permalink
fixed a bug in saving credentials
Browse files Browse the repository at this point in the history
  • Loading branch information
rickystar04 committed Oct 25, 2023
1 parent 564f5e2 commit 131137e
Show file tree
Hide file tree
Showing 6 changed files with 3,884 additions and 16 deletions.
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
#myFolder
music/
images/

# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ SPDownloader is a Python-based tool that allows you to download all the tracks f

## Prerequisites

- Python and pip installed and updated on your system.
- Python **3.10** (minimum) and pip installed and updated on the system.

## Getting Started

Expand Down
1 change: 0 additions & 1 deletion modules/metadata.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ def image(playlist_name, type):

for record in records:
title = record["titolo"]
print("TITOLO: " + title)
path = "music/" + playlist_name + "/" + title + ".mp3"
try:
audio = eyed3.load(path)
Expand Down
1 change: 0 additions & 1 deletion modules/spotify.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,6 @@ def playlist_download(playlist, results):
with open("records.json", "w") as file:
json.dump(records, file, indent=4)
file.close()
print("TIPO:" + type)
return playlist_name, type


Expand Down
Loading

0 comments on commit 131137e

Please sign in to comment.