Untitled
unknown
plain_text
2 years ago
293 B
9
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