Metadata-Version: 2.1
Name: parquet-csv
Version: 0.1.1
Summary: Parquet from and to CSV format converter
Home-page: https://github.com/Jimexist/parquet_csv
License: MIT
Keywords: parquet,csv,convert,pyarrow,arrow
Author: Jiayu Liu
Author-email: jiayu@hey.com
Requires-Python: >=3.7,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Dist: click (>=8.0.1,<9.0.0)
Requires-Dist: pyarrow (>=4.0.1,<5.0.0)
Project-URL: Repository, https://github.com/Jimexist/parquet_csv
Description-Content-Type: text/markdown

# Parquet_CSV

[![CI](https://github.com/Jimexist/parquet_csv/actions/workflows/build.yml/badge.svg)](https://github.com/Jimexist/parquet_csv/actions/workflows/build.yml) | [PyPI](https://pypi.org/project/parquet-csv/)

A Parquet to and from CSV converter that is based on [Apache Arrow](https://arrow.apache.org/) for its speed and memory efficiency.

## How to install

```bash
pip install parquet_csv
```

Use `pip3` if both Python2 and Python3 are installed. This application only works with Python3.

## How to use

`parquet_to_csv` converts `parquet` files to `csv` files.

```text
Usage: parquet_to_csv.py [OPTIONS] INPUT_FILE OUTPUT_PATH

Options:
  --header / --no-header
  --verbose BOOLEAN
  --help                  Show this message and exit.
```

