Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
freddyaboulton
/
dataframe_load
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
freddyaboulton
HF Staff
commited on
Dec 20, 2022
Commit
e306b00
·
1 Parent(s):
c98ff3e
Create app.py
Browse files
Files changed (1)
hide
show
app.py
+7
-0
app.py
ADDED
Viewed
@@ -0,0 +1,7 @@
1
+
import gradio as gr
2
+
import pandas as pd
3
+
4
+
with gr.Blocks() as demo:
5
+
gr.DataFrame(value=pd.DataFrame({"a": [1, 2, 3], "b": [4, 5, 6]}))
6
+
7
+
demo.launch()