Metadata-Version: 2.1
Name: tublub
Version: 0.3.0
Summary: Convert tabular data files with Tablib.
Home-page: https://github.com/harkabeeparolus/tublub
License: MIT
Keywords: tablib,csv,tsv,excel,xlsx
Author: Fredrik Mellström
Author-email: 11281108+harkabeeparolus@users.noreply.github.com
Requires-Python: >=3.8,<4.0
Classifier: Environment :: Console
Classifier: Intended Audience :: Information Technology
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Topic :: Text Processing
Classifier: Topic :: Utilities
Requires-Dist: tablib[ods,yaml,xls,cli,xlsx,html] (>=3.2.1,<4.0.0)
Description-Content-Type: text/markdown

# tublub

Convert or view tabular data files using [Tablib](https://github.com/jazzband/tablib).
Tublub is just a simple CLI wrapper around Tablib.

```text
$ tublub --list
Available formats: json xlsx xls yaml csv tsv ods dbf html jira latex df rst cli

$ tublub input.json
Username |Identifier|First name|Last name
---------|----------|----------|---------
booker12 |9012      |Rachel    |Booker
grey07   |2070      |Laura     |Grey
jenkins46|9346      |Mary      |Jenkins
johnson81|4081      |Craig     |Johnson
smith79  |5079      |Jamie     |Smith

$ tublub input.json output.xlsx

$ file output.xlsx
output.xlsx: Microsoft Excel 2007+

$ tublub input.json --format csv
Username,Identifier,First name,Last name
booker12,9012,Rachel,Booker
grey07,2070,Laura,Grey
jenkins46,9346,Mary,Jenkins
johnson81,4081,Craig,Johnson
smith79,5079,Jamie,Smith
```

## News and Changes

Please see the [changelog](CHANGELOG.md) for more details.

