MCPcopy Create free account
hub / github.com/dabeaz-course/python-mastery / read_csv_as_instances

Function read_csv_as_instances

Solutions/5_2/reader.py:47–49  ·  view source on GitHub ↗
(filename, cls)

Source from the content-addressed store, hash-verified

45 return parser.parse(filename)
46
47def read_csv_as_instances(filename, cls):
48 parser = InstanceCSVParser(cls)
49 return parser.parse(filename)

Callers

nothing calls this directly

Calls 2

InstanceCSVParserClass · 0.70
parseMethod · 0.45

Tested by

no test coverage detected