tha-csv-runner
A Tabular Helper API library that reads and writes CSVs with progress tracking, header validation, and structured per-row errors. Runs a function against every row — with a progress bar, required header validation, and structured error capture per row.
Install
pip install tha-csv-runner
Quick start
from tha_csv_runner import ThaCSV
def process(row: dict) -> None:
"""Raise any exception to mark the row as an error. Return value is ignored."""
if not row["email"].endswith("@example.com"):
raise ValueError("invalid email domain")
runner = ThaCSV()
rows = runner.read("Step 1 of 2", "data.csv", ["name", "email"], process)
runner.write("Step 2 of 2", "output.csv")
How it works
- Opens the CSV and validates that all
required_headersare present — raises immediately if any are missing - Iterates every row with a
tqdmprogress bar labelled withdesc - Calls your
validator(row)function — if it raises, that row is marked as an error and processing continues - Appends three columns to every row:
row number,row status, andmessagerow numberstarts at 2 (row 1 is the header)- On success:
row statusandmessageare blank - On error:
row status = "error",message = str(exception)
write()writes all rows (success and error) to a CSV
Excel (.xlsx) support
read() and write() both auto-detect Excel files by extension — pass a path ending in .xlsx instead of .csv and it's routed through openpyxl (a core dependency, no extra install needed) instead of the stdlib csv module. Everything else (required_headers, validator, column_order, sort_by, chunk_size, etc.) works identically across both formats.
runner = ThaCSV()
runner.read("Step 1 of 2", "data.xlsx", ["name", "email"], process)
runner.write("Step 2 of 2", "output.xlsx")
Only the modern .xlsx (OOXML) format is supported; legacy .xls (BIFF) is not, since openpyxl itself doesn't read it. Output is plain data only — no cell styling, formulas, or formatting; use openpyxl directly if you need that.
Reading a specific sheet
By default read() uses the workbook's active sheet. Pass sheet= to target a different one by name or 0-based index — this only applies to .xlsx input, passing it for a .csv path raises ValueError.
runner.read("Step 1 of 2", "data.xlsx", ["name", "email"], process, sheet="Q3 Data")
runner.read("Step 1 of 2", "data.xlsx", ["name", "email"], process, sheet=1)
An unknown sheet name or out-of-range index raises CsvError listing the available sheets.
Naming the output sheet
write() also takes sheet= to name the single tab in a .xlsx output file (default is openpyxl's own "Sheet"). Same gating as read() — only valid when output_path ends in .xlsx, raises ValueError otherwise. With chunk_size, every chunk file gets a sheet with this same name.
runner.write("Step 2 of 2", "output.xlsx", sheet="Q3 Data")
JSON Lines (.jsonl) support
read() and write() also auto-detect .jsonl (newline-delimited JSON) by extension — no extra dependency, it's stdlib json under the hood. Each line is one JSON object; everything else (required_headers, validator, column_order, sort_by, chunk_size, etc.) works the same as CSV/Excel.
runner = ThaCSV()
runner.read("Step 1 of 2", "data.jsonl", ["name", "email"], process)
runner.write("Step 2 of 2", "output.jsonl")
required_headers is checked against the first line's keys — later lines aren't required to match exactly, so JSONL's per-row schema flexibility isn't lost. Blank lines are skipped on read. sheet= doesn't apply here (it's .xlsx-only) and raises ValueError if passed.
Suppressing the progress bar
Pass show_progress=False to silence the tqdm progress bar on both read() and write() — useful when output is captured to a log file rather than a live terminal, where a redrawing bar just adds noise. tqdm is still a hard dependency either way; this only toggles its display.
runner = ThaCSV(show_progress=False)
API
ThaCSV
ThaCSV(
delimiter=",", # optional — pass "\t" for TSV, or any single-character separator
encoding="utf-8", # optional — pass "cp1252" or "latin-1" for Excel exports
show_progress=True, # optional — set False to silence the tqdm progress bar
)
runner.read()
runner.read(
"Step 1 of 2", # progress bar label — pass None to use the filename
"data.csv", # path to input CSV
["a", "b"], # columns that must exist — raises CsvError if missing
validator=my_func, # optional: callable(row: dict) -> None
enrich=True, # optional: set False to skip row number/status/message columns
sheet=None, # optional: .xlsx only — sheet name (str) or 0-based index (int)
)
Reads and processes all rows. Returns the rows as a list[dict] (same object as runner.rows).
The validator is designed for offline, in-memory checks — field presence, format, business rules. It runs synchronously on each row; don't use it for API calls or database lookups.
When enrich=False, validator exceptions are re-raised instead of captured.
runner.write()
runner.write(
"Step 2 of 2", # progress bar label — pass None for "Writing {stem} CSV"
output_path="output.csv", # optional — auto-named input_processed_TIMESTAMP.csv if omitted
rows=my_rows, # optional — use these rows instead of runner.rows
sort_by="name", # optional — column name, or list of column names
ascending=True, # optional — bool or list of bools matching sort_by
column_order=["name", "email"], # optional — listed columns come first, rest follow
keep=["name", "email"], # optional — keep only these columns (mutually exclusive with drop)
drop=["row number"], # optional — remove these columns (mutually exclusive with keep)
chunk_size=1000, # optional — split output into files of this many rows
sheet=None, # optional: .xlsx only — names the output sheet
)
Prints ✅ Done! CSV was written to: {path} on completion. Override by setting runner.status_cb = my_fn.
Returns the Path that was written, or a list[Path] when chunk_size is set.
chunk_size
When provided, write() splits the output into multiple files named output_001.csv, output_002.csv, etc. and returns a list[Path].
paths = runner.write("Step 2 of 2", "output.csv", chunk_size=1000)
# ["output_001.csv", "output_002.csv", ...]
Alternatives
This library is intentionally limited in scope — it handles row-by-row processing with error capture and a progress bar, not data analysis or transformation. For heavier workloads:
- pandas — the standard for CSV processing and in-memory data manipulation; use when you need filtering, grouping, joins, or vectorized operations
- polars — faster alternative to pandas for large files with a cleaner API and lazy evaluation
- csv (stdlib) — raw CSV reading/writing with no dependencies; sufficient when you don't need progress tracking or structured error capture
- openpyxl — use directly when you need cell styling, formulas, multi-sheet output, or other Excel-specific features beyond plain data read/write and single-sheet-by-name/index read
- json (stdlib) — use directly if you need nested/non-tabular JSON structures; this library's
.jsonlsupport is flat, one-row-per-line only
Choose this library when you need per-row error capture with row status and message columns baked in — pandas and polars process data, they don't track individual row failures.
License
MIT
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file tha_csv_runner-0.4.1.tar.gz.
File metadata
- Download URL: tha_csv_runner-0.4.1.tar.gz
- Upload date:
- Size: 75.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f5921b9870ec837686bbb30c9fd36c6df8c643fa2cd15fa83a49cfb73e1e15a4
|
|
| MD5 |
60af7cb44fce3ca4a15b5399121c5097
|
|
| BLAKE2b-256 |
9e1f238702bc50a823e71c0807f0c1180142a9cb6a95a99c93edae10a8325757
|
Provenance
The following attestation bundles were made for tha_csv_runner-0.4.1.tar.gz:
Publisher:
publish.yml on tha-guy-nate/tha-csv-runner
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
tha_csv_runner-0.4.1.tar.gz -
Subject digest:
f5921b9870ec837686bbb30c9fd36c6df8c643fa2cd15fa83a49cfb73e1e15a4 - Sigstore transparency entry: 2128931451
- Sigstore integration time:
-
Permalink:
tha-guy-nate/tha-csv-runner@0656e8b2b2e6b25db16a6c0a645893c7f90ebd5d -
Branch / Tag:
refs/tags/v0.4.1 - Owner: https://github.com/tha-guy-nate
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@0656e8b2b2e6b25db16a6c0a645893c7f90ebd5d -
Trigger Event:
push
-
Statement type:
File details
Details for the file tha_csv_runner-0.4.1-py3-none-any.whl.
File metadata
- Download URL: tha_csv_runner-0.4.1-py3-none-any.whl
- Upload date:
- Size: 9.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8a1731c297e69bd2fe966b6cb66eebab9fcd58d3ad0526f80c284722df0a0c77
|
|
| MD5 |
93e7089eda1d2280c280e3be010ae364
|
|
| BLAKE2b-256 |
135e597bf2d1881e5c6ae109523b5254c2b327d27474a3649911a13ffcd56089
|
Provenance
The following attestation bundles were made for tha_csv_runner-0.4.1-py3-none-any.whl:
Publisher:
publish.yml on tha-guy-nate/tha-csv-runner
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
tha_csv_runner-0.4.1-py3-none-any.whl -
Subject digest:
8a1731c297e69bd2fe966b6cb66eebab9fcd58d3ad0526f80c284722df0a0c77 - Sigstore transparency entry: 2128931873
- Sigstore integration time:
-
Permalink:
tha-guy-nate/tha-csv-runner@0656e8b2b2e6b25db16a6c0a645893c7f90ebd5d -
Branch / Tag:
refs/tags/v0.4.1 - Owner: https://github.com/tha-guy-nate
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@0656e8b2b2e6b25db16a6c0a645893c7f90ebd5d -
Trigger Event:
push
-
Statement type: