Created
October 11, 2023 22:53
-
-
Save saulpw/8f86f7cbca9f2d93f67c58072bd26e28 to your computer and use it in GitHub Desktop.
VisiData pipe-separated-values
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @VisiData.api | |
| def open_psv(vd, p): | |
| return PsvSheet(p.name, source=p) | |
| class PsvSheet(CsvSheet): | |
| pass | |
| PsvSheet.options.csv_delimiter = '|' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment