I want to upload a CSV to Anvil using file loader, and been having issues with the source file being windows CSV so it breaks the import.
What would be the best way to address converting this to a unix format? If I can convert it, i’d like to be able to parse with pandas to make it simple to import into data tables.
Also I want to convert in the app, instead of adding additional steps to the user.
When you say “Windows CSV”, what specific problem(s) are you referring to? Line endings? Character encoding? Etc. How, exactly, is the actual CSV different from the desired CSV?
The format of the file (sequence of bytes) depends on the program that generated it, not on the filesystem. So the original question is still relevant.