import_from_csv
doesn't respect CSV default fmtparams
overwriting
#208
Milestone
import_from_csv
doesn't respect CSV default fmtparams
overwriting
#208
Currently, I'm using rows to import a CSV file like this:
But is acceptable to accept an entry only with the name and email values like the following:
When trying to import this CSV, the lib gets confused and stops use the
;
as delimiter and starts to use,
. So, it would be nice to have a way to overwrite thedelimiter
parameter to be passed tocsv.reader
here.I know that I can do that by passing a custom Dialect object within the
dialect
parameter, but, in my opinion, this is less straightforward than following Python API.The text was updated successfully, but these errors were encountered: