Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
kenken999
/
fastapi_django_main_live
like
4
Running
on
Zero
App
Files
Files
Community
7bfb334
fastapi_django_main_live
/
routers
/
ai
/
crud_app
/
app.py
kenken999
test
d8bbcde
5 months ago
raw
Copy download link
history
blame
197 Bytes
import
gradio
as
gr
from
views.user_view
import
UserView
with
gr.Blocks()
as
gradio_interface:
gr.Markdown(
"CRUD Application"
)
user_view = UserView()
user_view.render(gradio_interface)