change the generated contact file name

This commit is contained in:
2022-07-27 09:37:21 +02:00
parent a7873dfe91
commit 42f2d0c128
+2 -2
View File
@@ -113,7 +113,7 @@ def write_new_contacts_to_excel(valid_contacts: list):
row = 0
col = 0
# Create a workbook and add a worksheet.
workbook = xlsxwriter.Workbook('new_profile_{}.xlsx'.format(len(valid_contacts)))
workbook = xlsxwriter.Workbook('real_contacts_{}.xlsx'.format(len(valid_contacts)))
header_data = ['name', 'phone', 'passport', 'email']
worksheet = workbook.add_worksheet()
header_format = workbook.add_format({'bold': True})
@@ -136,6 +136,6 @@ def write_new_contacts_to_excel(valid_contacts: list):
if __name__ == '__main__':
excel_reader = ExcelHelper()
contacts = excel_reader.read_names("C:/Users/landd/Desktop/rdv/08-06/500.xlsx")
contacts = excel_reader.read_names("/Users/lpan/Downloads/real_contacts.xlsx")
print(contacts)
write_new_contacts_to_excel(valid_contacts=contacts)