Add support for TSVs #91
Replies: 1 comment 2 replies
-
I'm not opposed to adding more CSV/TSV features... My concern is that the Maybe the if self.input_format == 'csv':
reader = csv.DictReader(input_data)
elif self.input_format == 'reader':
reader = input_data
...
elif self.input_format == 'dict':
reader = input_data
... Funny enough, due to Python's use of duck-typing (edited), |
Beta Was this translation helpful? Give feedback.
-
Adding in
elif self.input_format == 'tsv': reader = csv.DictReader(input_data, delimiter='\t')
around line 179 adds this functionality.
I've tested this locally and haven't encountered any issues (yet).
Beta Was this translation helpful? Give feedback.
All reactions