Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Krebzonide
/
DataFrameTest
like
0
Paused
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
Krebzonide
commited on
Feb 20, 2024
Commit
0376edc
·
verified
·
1 Parent(s):
580da49
Create app.py
Browse files
Files changed (1)
hide
show
app.py
+10
-0
app.py
ADDED
Viewed
@@ -0,0 +1,10 @@
1
+
import gradio as gr
2
+
3
+
with gr.Blocks(css=css) as demo:
4
+
gr.Dataframe(
5
+
headers=["name"],
6
+
datatype=["str"],
7
+
row_count=5,
8
+
col_count=(1, "fixed"))
9
+
10
+
demo.launch()