Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
kenken999
/
fastapi_django_main_live
like
6
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
22a4d09
fastapi_django_main_live
/
polls
/
controllers
/
django
/
myapp
/
urls.py
kenken999
test
1f074d8
10 months ago
raw
Copy download link
history
blame
Safe
122 Bytes
from
django.urls
import
path
from
.
import
views
urlpatterns = [
path(
'books/'
, views.book_list, name=
'book_list'
),
]