Simple ingesting tools for Beancount (plain text, double entry accounting software). More importantly, a framework to allow you to easily write your own importers.
GNU General Public License v3.0
115
stars
39
forks
source link
CSV importer does not allow specifying encoding #99
CSV reader does not allow specifying an encoding, which means processing e.g. shift-jis encoded text files fails on etl.fromcsv as well as the file.head() (called in deep_identify).
Submitting a PR shortly to add this through a file_encoding attribute.
CSV reader does not allow specifying an encoding, which means processing e.g.
shift-jis
encoded text files fails onetl.fromcsv
as well as thefile.head()
(called indeep_identify
).Submitting a PR shortly to add this through a
file_encoding
attribute.