You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I the CSV file uses \r\n as it's row ending, the csvs-to-sqlite misses the first column (of data) and shifts the columns "to the left" (and the last column is therefore empty)
I the CSV file uses
\r\n
as it's row ending, the csvs-to-sqlite misses the first column (of data) and shifts the columns "to the left" (and the last column is therefore empty)The
\r\n
ending is the default behaviour of Python'scsv.writerow
, see https://docs.python.org/3/library/csv.html#csv.Dialect.lineterminatorE.g.:
CSV:
results in SQLITE table:
The text was updated successfully, but these errors were encountered: