1. from django.urls import path
    
  2. 
    
  3. urlpatterns = [
    
  4.     path(r"(?P<named_group>\d+)", lambda x: x),
    
  5. ]