Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
DSDUDEd
/
Dox
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
Dox
/
app.py
DSDUDEd
Update app.py
d9ead0b
verified
5 months ago
raw
Copy download link
history
blame
contribute
delete
Safe
159 Bytes
import
gradio
as
gr
# Read the HTML content
html_content =
open
(
"index.html"
,
"r"
).read()
with
gr.Blocks()
as
demo:
gr.HTML(html_content)
demo.launch()