-
Notifications
You must be signed in to change notification settings - Fork 13
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
Import data source duplicate field name #12
Comments
This normalization is handled in IterTable, so I transferred the issue to that repository. The relevant lines are here: itertable/itertable/mappers.py Lines 70 to 94 in fd2694f
While this behavior can be overridden, I think it would make sense to fix this in IterTable directly (hence the FIXME). A simple solution for now would be to detect that a normalized name has already been used, and append e.g. Eventually we could update Django Data Wizard to support |
Some of the fields in some of my CSV files start with symbols such as $, %, #; and when the data is cleaned then the symbols are removed automatically and I end up with duplicate fields.
Is there a way to override cleaning the column names before mapping starts?
The text was updated successfully, but these errors were encountered: