File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
src/python/pipelines_utils Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 16
16
17
17
"""Typed CSV reader.
18
18
19
- Based on the built-in ``csv`` module, this module provides the user with
20
- the ability to load _typed_ CSV content, a CSV file with optional type
19
+ Based on the built-in ``csv`` module, this Generator module provides the user
20
+ with the ability to load _typed_ CSV content, a CSV file with optional type
21
21
specifications provided in the header (which must be supplied).
22
22
23
23
Alan Christie
@@ -102,8 +102,8 @@ def convert_string(string_value):
102
102
103
103
class TypedColumnReader (object ):
104
104
105
- """A class to handle 'typed' CSV-like files, files (normally) with a header
106
- that can include type information. This class supports
105
+ """A generator to handle 'typed' CSV-like files, files (normally)
106
+ with a header that can include type information. This class supports
107
107
neo4j-like column typing where field are annotated
108
108
with type information. The class returns
109
109
a list of values for each row in the file where, if the column header
You can’t perform that action at this time.
0 commit comments