added helpers to leverage for various libraries
This commit is contained in:
5
app/helpers/csv_helper.py
Normal file
5
app/helpers/csv_helper.py
Normal file
@ -0,0 +1,5 @@
|
||||
import csv
|
||||
import io
|
||||
|
||||
def file_stream_reader(f):
|
||||
return csv.reader(io.StringIO(f.read().decode('ascii')))
|
Reference in New Issue
Block a user