-
Notifications
You must be signed in to change notification settings - Fork 606
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
--help should document options to --encoding #1117
Comments
Right now the
What do you suggest it say? |
Either have a list of formats in the help there, or add a way to list formats.
I think |
In the meantime, you can refer to the available encodings in Python here: https://docs.python.org/3/library/codecs.html#standard-encodings |
Python apparently has no easy way to report the available encodings on a given platform. I instead just added a link to those docs from https://csvkit.readthedocs.io/en/latest/common_arguments.html |
Cool, thanks. |
I just ran into an issue with csvjoin 1.0.5 where a file was failing to parse because
It didn't like
Á
.In the end the solution was
--encoding iso-8859-1
, but it was really frustrating that the help said there was an encoding flag and nothing about how to use it.The text was updated successfully, but these errors were encountered: