Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
richard-to
/
mesop-hello-world
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
mesop-hello-world
/
main.py
Richard
Add hello world Mesop app
67cb410
7 months ago
raw
Copy download link
history
blame
contribute
delete
Safe
182 Bytes
import
mesop
as
me
@me.page(
title=
"Home"
,
security_policy=me.SecurityPolicy(
allowed_iframe_parents=[
"https://huggingface.co"
]
),
)
def
home
():
me.text(
"Hello, world"
)