docs.rs failed to build parquet_to_excel-0.6.5
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Visit the last successful build:
parquet_to_excel-0.4.0
parquet_to_excel
A tool to convert parquet file to an/a excel/csv file in rust with constant memory, both a single parquet file and a folder of parquet files are supported.
You can also use python or rust to call it. The python package name is parquet_to_excel too. you can install it by pip install parquet_to_excel
. If you could not install this package correctly, you can try to install rust and maturin (pip install maturin
) first. Then you can try again.
Functions
- parquet_file_to_csv: convert a single parquet file to a csv file
- parquet_files_to_csv: convert a folder of parquet files to a csv file
- parquet_file_to_xlsx: convert a single parquet file to an excel file
- parquet_files_to_xlsx: convert a folder of parquet files to an excel file
Rust Excamples
- parquet to csv
use HashMap;
use ;
- parquet to xlxs
use HashMap;
use ;
Python Example
- parquet to xlsx
# the last three arguments are optional