Untitled
unknown
plain_text
a year ago
293 B
6
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_list
Editor is loading...
Leave a Comment