FazBrowse GitHub Viewer | Trending |
URL:
| Home
Tools: [Download Repo ZIP]   [Original HTTPS Page]

Comparing SergioChan:master...astanin:master · SergioChan/python-tabulate · GitHub

Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: SergioChan/python-tabulate
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Choose a base ref
Could not load branches
Nothing to show
{{ refName }}
...
head repository: astanin/python-tabulate
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
Could not load branches
Nothing to show
{{ refName }}
Checking mergeability… Don’t worry, you can still create the pull request.
  • 15 commits
  • 14 files changed
  • 2 contributors

Commits on Mar 9, 2026

  1. implement support of JSONL and CSV input formats in command line utility

    fix astanin#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   |
    +------+--------------+-------------------+
    astanin committed Mar 9, 2026
    Configuration menu
    Copy the full SHA
    c327d6c View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    696c5eb View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    b47acc1 View commit details
    Browse the repository at this point in the history

Commits on Mar 10, 2026

  1. Configuration menu
    Copy the full SHA
    791c4bf View commit details
    Browse the repository at this point in the history
  2. run all CLI tests also in-process for coverage report

    - old tests: launch tabulate via subprocess (still necessary)
    - new tests: the same checks for coverage reports
    astanin committed Mar 10, 2026
    Configuration menu
    Copy the full SHA
    17bf1cf View commit details
    Browse the repository at this point in the history
  3. ruff format & ruff check

    astanin committed Mar 10, 2026
    Configuration menu
    Copy the full SHA
    cf15727 View commit details
    Browse the repository at this point in the history
  4. Apply ruff/pyupgrade rule UP007

    Use `X | Y` for type annotations
    DimitriPapadopoulos authored and astanin committed Mar 10, 2026
    Configuration menu
    Copy the full SHA
    2f7f69d View commit details
    Browse the repository at this point in the history
  5. Apply ruff/pyupgrade rule UP018

    Unnecessary `int` call (rewrite as a literal)
    DimitriPapadopoulos authored and astanin committed Mar 10, 2026
    Configuration menu
    Copy the full SHA
    63c74ac View commit details
    Browse the repository at this point in the history
  6. Apply ruff/pyupgrade rule UP031

    Use format specifiers instead of percent format
    DimitriPapadopoulos authored and astanin committed Mar 10, 2026
    Configuration menu
    Copy the full SHA
    4c39df9 View commit details
    Browse the repository at this point in the history
  7. Apply ruff/pyupgrade rule UP035

    Import from `collections.abc` instead
    DimitriPapadopoulos authored and astanin committed Mar 10, 2026
    Configuration menu
    Copy the full SHA
    5f87774 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    2070736 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    5313627 View commit details
    Browse the repository at this point in the history

Commits on Mar 11, 2026

  1. Configuration menu
    Copy the full SHA
    3681fa5 View commit details
    Browse the repository at this point in the history
  2. Merge pull request astanin#419 from dev/jsonl

    Add support of JSONL and CSV input file formats in CLI tabulate utility
    astanin authored Mar 11, 2026
    Configuration menu
    Copy the full SHA
    52dc17b View commit details
    Browse the repository at this point in the history
  3. Merge pull request astanin#422 from DimitriPapadopoulos/B

    Enforce ruff/flake8-bugbear rules (B)
    astanin authored Mar 11, 2026
    Configuration menu
    Copy the full SHA
    268615a View commit details
    Browse the repository at this point in the history
Loading

Back | FazBrowse Home | New Git URL