Skip to content
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

Switch from CSV to TSV #3

Open
cthoyt opened this issue Dec 21, 2021 · 1 comment
Open

Switch from CSV to TSV #3

cthoyt opened this issue Dec 21, 2021 · 1 comment

Comments

@cthoyt
Copy link
Collaborator

cthoyt commented Dec 21, 2021

There are a few major issues with CSV files:

  1. Commas may pop up inside data, which means cells need to be quoted
  2. There are many different flavors of quoting schemes. This is very difficult to convey
  3. Commas themselves create a huge amount of noise when reading a CSV document

TSV uses tabs instead of commas and has none of these problems as tabs should not be in the data itself.

I think it should be possible to directly import and export the table through pandas.

@davidlmobley
Copy link
Member

This is a good idea; want to do a PR?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants