Metadata-Version: 2.4
Name: parquet_to_excel
Version: 0.1.2
Classifier: Programming Language :: Rust
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
License-File: LICENSE
Summary: a tool to convert parquet file to excel file
Keywords: excel,parquet,convert
License: MIT
Requires-Python: >=3.8
Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM
Project-URL: Source Code, https://gitee.com/sone92/paruqet-to-xlsx.git

# parquet_to_excel
A tool to convert parquet file to excel file in rust, both a single parquet file and a folder of parquet files are supported.
You can also use python 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.

# A Python Example
```python
from parquet_to_excel import parquet_file_to_xlsx, parquet_files_to_xlsx

parquet_file_to_xlsx(r"data\result\qid=160\a.parquet", r"out1.xlsx", "data", "", {"ddbm": "地点编码"})
parquet_files_to_xlsx(r"data\result\qid=160", r"out2.xlsx", "", "scfs", {"ddbm": "地点编码"})
```

