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

Function read_csv_as_instances

Solutions/3_8/reader.py:40–42  ·  view source on GitHub ↗
(filename, cls)

Source from the content-addressed store, hash-verified

38 return parser.parse(filename)
39
40def read_csv_as_instances(filename, cls):
41 parser = InstanceCSVParser(cls)
42 return parser.parse(filename)

Callers

nothing calls this directly

Calls 2

InstanceCSVParserClass · 0.70
parseMethod · 0.45

Tested by

no test coverage detected