File tree 3 files changed +64
-0
lines changed
3 files changed +64
-0
lines changed Original file line number Diff line number Diff line change 15
15
* Make Multiple Folder
16
16
* ipynb to HTML Converter
17
17
* HTML to PDF Converter
18
+ * Parquet to CSV Converter
18
19
* [ Excel to Markdown Converter] ( https://tabletomarkdown.com/convert-spreadsheet-to-markdown/ ) (Just Bookmark)
19
20
* PDF Editor
20
21
* Split TXT into multiple TXT
Original file line number Diff line number Diff line change 3
3
### Make Multiple Folder
4
4
### ipynb to HTML Converter
5
5
### HTML to PDF Converter
6
+ ### Parquet to CSV Converter
6
7
### [ Excel to Markdown Converter] ( https://tabletomarkdown.com/convert-spreadsheet-to-markdown/ ) (Not My Project. Just Bookmark)
7
8
### PDF Editor
8
9
### Split TXT into multiple TXT
Original file line number Diff line number Diff line change
1
+ {
2
+ "cells" : [
3
+ {
4
+ "cell_type" : " markdown" ,
5
+ "metadata" : {},
6
+ "source" : [
7
+ " ## Parquet to CSV Converter"
8
+ ]
9
+ },
10
+ {
11
+ "cell_type" : " code" ,
12
+ "execution_count" : null ,
13
+ "metadata" : {},
14
+ "outputs" : [],
15
+ "source" : [
16
+ " !pip install pyarrow"
17
+ ]
18
+ },
19
+ {
20
+ "cell_type" : " code" ,
21
+ "execution_count" : 2 ,
22
+ "metadata" : {},
23
+ "outputs" : [],
24
+ "source" : [
25
+ " import pandas as pd"
26
+ ]
27
+ },
28
+ {
29
+ "cell_type" : " code" ,
30
+ "execution_count" : 3 ,
31
+ "metadata" : {},
32
+ "outputs" : [],
33
+ "source" : [
34
+ " parquet_name = 'CodeUltraFeedback_binarized/data/train-00000-of-00001.parquet'\n " ,
35
+ " csv_name = 'CodeUltraFeedback_binarized/data/train-00000-of-00001.csv'\n " ,
36
+ " df = pd.read_parquet(parquet_name, engine='pyarrow')\n " ,
37
+ " df.to_csv(csv_name)"
38
+ ]
39
+ }
40
+ ],
41
+ "metadata" : {
42
+ "kernelspec" : {
43
+ "display_name" : " Python 3" ,
44
+ "language" : " python" ,
45
+ "name" : " python3"
46
+ },
47
+ "language_info" : {
48
+ "codemirror_mode" : {
49
+ "name" : " ipython" ,
50
+ "version" : 3
51
+ },
52
+ "file_extension" : " .py" ,
53
+ "mimetype" : " text/x-python" ,
54
+ "name" : " python" ,
55
+ "nbconvert_exporter" : " python" ,
56
+ "pygments_lexer" : " ipython3" ,
57
+ "version" : " 3.11.5"
58
+ }
59
+ },
60
+ "nbformat" : 4 ,
61
+ "nbformat_minor" : 2
62
+ }
You can’t perform that action at this time.
0 commit comments