diff --git a/generaterecords.py b/generaterecords.py index 6fe47b9..07c3963 100644 --- a/generaterecords.py +++ b/generaterecords.py @@ -14,6 +14,7 @@ def typography(thestring): return re.sub(" / ","/",re.sub(" \(.*\)","",re.sub(" - "," – ",re.sub(" "," ",re.sub("\.\.\."," …",re.sub("'","’",re.sub(" = .*","",thestring))))))) for item in rawlist: + print("Fetching " + str(thenumber) + " of " + str(maxno)) theitem = {} theitem["artist"] = typography(item.release.artists[0].name) theitem["title"] = typography(item.release.title)