diff --git a/src/xmlparser.py b/src/xmlparser.py index f049e40..fd8ed86 100644 --- a/src/xmlparser.py +++ b/src/xmlparser.py @@ -19,9 +19,7 @@ def create_csv(headers): # Iterate over all IBANs and their entries - print("CREATECSV") for iban, entries in ibanList.items(): - print(iban) # Create a CSV file with the name of the IBAN allFiles.append(iban) with open(f'./downloads/{iban}.csv', 'w', newline='', encoding='utf-8') as f: @@ -62,7 +60,6 @@ def make_archive(): # Recreate the uploads and downloads folders os.makedirs('./uploads') os.makedirs('./downloads') - print("-------------------------------------") def get_all_tags(): @@ -116,4 +113,4 @@ def parse_xml_files(): ibanList[x].append(tag_entries) zf.close() create_csv(alltags) - make_archive() + make_archive() \ No newline at end of file