Metadata-Version: 2.1
Name: xlsxq
Version: 0.1.2
Summary: xlsxq is a lightweight and flexible command-line .xlsx processor.
Home-page: https://github.com/kumarstack55/xlsxq
License: MIT
Author: kumarstack55
Author-email: kumarstack55@gmail.com
Requires-Python: >=3.9,<4.0
Classifier: Development Status :: 4 - Beta
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Topic :: Office/Business :: Financial :: Spreadsheet
Requires-Dist: openpyxl (>=3.0.9,<4.0.0)
Project-URL: Documentation, https://github.com/kumarstack55/xlsxq
Project-URL: Repository, https://github.com/kumarstack55/xlsxq
Description-Content-Type: text/markdown

# xlsxq

xlsxq is a lightweight and flexible command-line .xlsx processor.

# Usage

This is a beta version and specifications are subject to change.

```bash
# Show help message and exit.
xlsxq -h

# List worksheets.
xlsxq sheet list --infile infile.xlsx --output json

# Show range values.
xlsxq range show --infile infile.xlsx --sheet 'Sheet1' --range 'A1:B3' --output json

# Show range values in tab-delimited format.
xlsxq range show --infile infile.xlsx --sheet 'Sheet1' --range 'A1:B3' --output tsv
```

# Requirements

* Python 3.9+

# Installation

```bash
pip install -U xlsxq
```

# TODO

* Write docs

