Spaces:
Sleeping
Sleeping
Create app.py
Browse files
app.py
ADDED
@@ -0,0 +1,38 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import gradio as gr
|
2 |
+
import pandas as pd
|
3 |
+
import pyarrow as pa
|
4 |
+
import pyarrow.parquet as pq
|
5 |
+
import tempfile
|
6 |
+
|
7 |
+
css = '''
|
8 |
+
.gradio-container{max-width: 950px !important}
|
9 |
+
h1{text-align:center}
|
10 |
+
'''
|
11 |
+
|
12 |
+
DESCRIPTIONz= """## CSV to Parquet 📂
|
13 |
+
"""
|
14 |
+
|
15 |
+
def csv_to_parquet(file):
|
16 |
+
|
17 |
+
df = pd.read_csv(file.name)
|
18 |
+
|
19 |
+
table = pa.Table.from_pandas(df)
|
20 |
+
|
21 |
+
with tempfile.NamedTemporaryFile(delete=False, suffix=".parquet") as tmp_file:
|
22 |
+
pq.write_table(table, tmp_file)
|
23 |
+
parquet_file_path = tmp_file.name
|
24 |
+
|
25 |
+
return parquet_file_path
|
26 |
+
|
27 |
+
with gr.Blocks(css=css, theme="bethecloud/storj_theme") as demo:
|
28 |
+
gr.Markdown(DESCRIPTIONz)
|
29 |
+
with gr.Row():
|
30 |
+
csv_input = gr.File(label="Upload CSV File", type="file", file_types=["text/csv"])
|
31 |
+
download_button = gr.File(label="Download Parquet File", interactive=False)
|
32 |
+
|
33 |
+
convert_button = gr.Button("Convert CSV to Parquet")
|
34 |
+
|
35 |
+
convert_button.click(fn=csv_to_parquet, inputs=[csv_input], outputs=[download_button])
|
36 |
+
|
37 |
+
gr.Markdown("📌 The speed of converting a CSV file to a .parquet file depends on the size and complexity of the CSV file.")
|
38 |
+
demo.launch()
|