MCPcopy Index your code
hub / github.com/idank/explainshell / parse_tsv

Function parse_tsv

tools/fetch_manned.py:107–111  ·  view source on GitHub ↗

Parse a TSV file, yielding rows as tuples.

(path)

Source from the content-addressed store, hash-verified

105
106
107def parse_tsv(path):
108 """Parse a TSV file, yielding rows as tuples."""
109 with open(path, "r", encoding="utf-8", errors="replace") as f:
110 reader = csv.reader(f, delimiter="\t")
111 yield from reader
112
113
114def cmd_download(args):

Callers 2

load_metadataFunction · 0.85
select_content_idsFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected