Metadata-Version: 2.1
Name: html-to-csv
Version: 0.0.2
Summary: A utility that extracts tables from HTML documents and converts them to CSV format
Home-page: https://github.com/hanwentao/html2csv
Author: Wentao Han
Author-email: wentao.han@gmail.com
License: UNKNOWN
Keywords: html table csv convert
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Operating System :: OS Independent
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Requires-Python: >=3.7
Description-Content-Type: text/markdown
Requires-Dist: beautifulsoup4
Requires-Dist: lxml

# html2csv

`html2csv` is a utility that extracts tables from HTML documents and converts them to CSV format, written in Python.

## Usage

```
usage: html2csv [-h] [-o [OUTPUT_FILE]] [input_file [input_file ...]]

Convert HTML table to CSV format.

positional arguments:
  input_file            input files (default: standard input)

optional arguments:
  -h, --help            show this help message and exit
  -o [OUTPUT_FILE], --output-file [OUTPUT_FILE]
                        output file (default: standard output)
```


