Update main.py

This commit is contained in:
Eduard Prigoana 2025-07-20 19:24:56 +03:00
parent 2907cd30b4
commit b7368e8116

View file

@ -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):