You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+21-3Lines changed: 21 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,7 +9,7 @@ Using Rust bindings under the hood, Parquet-Py provides a fast and efficient way
9
9
## Features
10
10
11
11
-**Convert Parquet to CSV**: Convert your Parquet files into CSV format for easy viewing and processing in spreadsheet applications.
12
-
-**Convert Parquet to JSON**: Easily convert your Parquet files into a JSON string format for quick inspection or processing.
12
+
-**Convert Parquet to JSON / JSON Lines**: Easily convert your Parquet files into a JSON Array or JSON Lines format for quick inspection or processing.
13
13
-**Iterable Parquet Rows**: Access Parquet file rows through an iterator, allowing for efficient row-by-row processing without loading the entire file into memory.
14
14
-**Convert Parquet to Python List**: Transform your Parquet files into Python lists, where each row is represented as a dictionary within the list.
15
15
@@ -21,6 +21,16 @@ Using Rust bindings under the hood, Parquet-Py provides a fast and efficient way
21
21
## Usage
22
22
### Command-Line Interface
23
23
24
+
> [!WARNING]
25
+
>
26
+
> The CLI is still under development and may not be fully functional.
27
+
>
28
+
> Breaking changes may occur in future releases.
29
+
30
+
> [!TIP]
31
+
>
32
+
> Multiple input files can be specified with `--input` option. For example, `--input file1.parquet --input file2.parquet`.
33
+
24
34
#### Converting Parquet to CSV
25
35
26
36
To convert a Parquet file into a CSV file, use the `parq convert` command.
@@ -29,14 +39,22 @@ To convert a Parquet file into a CSV file, use the `parq convert` command.
0 commit comments