Untitled
Anonymous
plain_text
04/01/2024 9:05 PM
392 B
19
Indexable
def read(self, path: str) -> List[Dict]:
# Open csv file
with open(path) as csv_file:
# Read csv file
csv_reader = csv.DictReader(csv_file)
for row in csv_reader:
self.jobs_list.append(row)
return self.jobs_listEditor is loading...
Leave a Comment