25 lines
501 B
Markdown
25 lines
501 B
Markdown
### How to use
|
|
|
|
0. Install dependencies
|
|
```
|
|
pip install pandas
|
|
```
|
|
|
|
1. Fet the full path of the parquet file you want to parse.
|
|
```
|
|
C:\somedir\file.parquet # On Windows
|
|
/somedir/file.parquet # On Mac/Linux
|
|
```
|
|
|
|
2. Edit the parse_parquet.py with the full path of your parquet file taken from 1.
|
|
|
|
3. Run the script:
|
|
```
|
|
python3 parse_parquet.py
|
|
```
|
|
|
|
### TBD..
|
|
|
|
- Make the script prompt for the path when executed rather than having it hardcoded
|
|
- Potentially add a GUI so users can run it as an app
|