7 lines
292 B
Python
7 lines
292 B
Python
from src.utils.excel_reader import read_contacts
|
|
|
|
_contact_list = read_contacts(file_name="/Users/panlei/Desktop/contact_list_2024-04-03.xlsx")
|
|
# print(_contact_list)
|
|
for _contact in _contact_list:
|
|
if _contact.last_name is None or _contact.first_name is None:
|
|
print(_contact.mail) |