High-performance parser and generator for PostgreSQL-compatible tab-separated values (TSV). Current version 0.7.1, requires Python >=3.8. Release cadence is irregular (last release 2025-01).
pip install tsv2pyVerified import paths — ran on the pinned version, not inferred.
Parse TSV data from string and generate TSV output.
Replace TsvReader with TsvParser and adapt interface (e.g., rows via iteration).
Use open(filename, 'r') to create a file object and pass it to TsvParser.
Always open file first: with open(path) as f: TsvParser(f).
No dependency data recorded yet.