urls.py 149 B

1234567
  1. from django.urls import path
  2. from .views import predict_report
  3. urlpatterns = [
  4. path('predict/<review_id>/', predict_report, name='predict'),
  5. ]