Update main.py
This commit is contained in:
parent
2907cd30b4
commit
b7368e8116
1 changed files with 2 additions and 1 deletions
3
main.py
3
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):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue