Metadata-Version: 2.1
Name: csv-parakeet
Version: 1.0.1
Summary: Parquet to CSV command line tool
Home-page: https://github.com/A1fus/csv-parakeet
Author: Alfie Bowman
Author-email: alfiebowman@protonmail.com
Requires-Python: >=3.8.1,<4.0.0
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Requires-Dist: click (>=8.1.3,<9.0.0)
Requires-Dist: pandas (>=2.0.0,<3.0.0)
Requires-Dist: pyarrow (>=12.0.0,<13.0.0)
Project-URL: Repository, https://github.com/A1fus/csv-parakeet
Description-Content-Type: text/markdown

# CSV-Parakeet
![parakeet](https://user-images.githubusercontent.com/11004160/236465574-b17acf11-4bf5-46f9-9ab6-b01e5527d60b.jpeg)

[![Tests](https://github.com/A1fus/csv-parakeet/actions/workflows/tests.yaml/badge.svg)](https://github.com/A1fus/csv-parakeet/actions/workflows/tests.yaml)

A simple command line tool to convert csv files to parquet, and vice versa.

## Installation
Requirements:
- Python >=3.8

```bash
pip install --user csv-parakeet
```

## Usage
```bash
parakeet p2c /path/to/input.parquet /path/to/output.csv
parakeet c2p /path/to/input.csv /path/to/output.parquet
```

Noticed a bug? Raise an [issue](https://github.com/A1fus/csv-parakeet/issues/new).

