| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
fix #173 New CLI parameter: --headers HEADERS where HEADERS can be "firstrow", "keys", "HEADER1,HEADER2,...", "KEY1:HEADER1,KEY2:HEADER2,..." --read FILEFORMAT where FILEFORMAT can be "rsv" (default), "csv", "jsonl" Deprecated CLI parameter: --header Usage examples: cat ./examples/people.csv | tabulate -r csv --headers firstrow id name email "favorite" fruit ---- ------ ----------------- ------------------ 1 Alice alice@example.com apple, kiwi 2 Bob bob@example.com banana, orange, lychee 3 Carol pear cat ./examples/people.jsonl | tabulate -r jsonl -f grid --headers 'id:ID,name:First Name,email:Email' +------+--------------+-------------------+ | ID | First Name | Email | +======+==============+===================+ | 1 | Alice | alice@example.com | +------+--------------+-------------------+ | 2 | Bob | bob@example.com | +------+--------------+-------------------+
- old tests: launch tabulate via subprocess (still necessary) - new tests: the same checks for coverage reports
Codecov Report❌ Patch coverage is 97.11538% with 3 lines in your changes missing coverage. Please review.
@@ Coverage Diff @@
## master #419 +/- ##
==========================================
+ Coverage 84.43% 90.18% +5.75%
==========================================
Files 1 3 +2
Lines 906 958 +52
Branches 218 228 +10
==========================================
+ Hits 765 864 +99
+ Misses 107 60 -47
Partials 34 34 ☔ View full report in Codecov by Sentry.
|
Sorry, something went wrong.
| Back | FazBrowse Home | New Git URL |
fix #173
New CLI parameters:
--headers HEADERS
where HEADERS can be "firstrow", "keys", "HEADER1,HEADER2,..." (for CSV data), "HEADER1,KEY2:HEADER2,..." (for JSONL data)
--read FILEFORMAT
where FILEFORMAT can be "rsv" (default), "csv", "jsonl"
Deprecated CLI parameter:
Usage examples:
cat ./examples/people.csv | tabulate -r csv --headers firstrow id name email "favorite" fruit ---- ------ ----------------- ------------------ 1 Alice alice@example.com apple, kiwi 2 Bob bob@example.com banana, orange, lychee 3 Carol pear