We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
csv-diff/csv_diff/__init__.py
Line 13 in 0256e49
Can you please add ";" in the list of supported delimiters to support CSV generated in countries that uses the "," as decimal point, like Italy?
the line can be modified in this way:
dialect = csv.Sniffer().sniff(peek, delimiters=",\t;")
The text was updated successfully, but these errors were encountered:
0cf7d3c
Release 1.0
dc7bee4
Refs #3 #6 #7 #8 #9
No branches or pull requests
csv-diff/csv_diff/__init__.py
Line 13 in 0256e49
Can you please add ";" in the list of supported delimiters to support CSV generated in countries that uses the "," as decimal point, like Italy?
the line can be modified in this way:
dialect = csv.Sniffer().sniff(peek, delimiters=",\t;")
The text was updated successfully, but these errors were encountered: