Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
mlnsio
/
text2sql
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
db79bb2
text2sql
/
core
/
urls.py
ns-devel
Text2SQL app
38171fa
over 2 years ago
raw
Copy download link
history
blame
Safe
228 Bytes
from
django.urls
import
path
from
core.views
import
get_scores, get_mf_data
urlpatterns = [
path(
"mutual-fund-details/"
, get_scores, name=
"mutual-fund-details"
),
path(
"get-mf-data/"
, get_mf_data, name=
"get-mf-data"
),
]