From b7368e81162d6e5c46ebf19e64839deb5b7a3988 Mon Sep 17 00:00:00 2001 From: Eduard Prigoana Date: Sun, 20 Jul 2025 19:24:56 +0300 Subject: [PATCH] Update main.py --- main.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/main.py b/main.py index c6d431f..8b4065c 100644 --- a/main.py +++ b/main.py @@ -113,10 +113,11 @@ def generate_csv(): data.append([artist_name_clean, artist_url, credit, links_work, updated, best]) with open(CSV_FILENAME, "w", newline='', encoding="utf-8") as csvfile: - writer = csv.writer(csvfile) + writer = csv.writer(csvfile, quoting=csv.QUOTE_ALL) writer.writerow(["Artist Name", "URL", "Credit", "Links Work", "Updated", "Best"]) writer.writerows(data) + print(f"✅ CSV saved as {CSV_FILENAME}") def hash_file(filename):