2024-01-26 00:31:14 +00:00
|
|
|
"""
|
|
|
|
URL configuration for sncf project.
|
|
|
|
|
|
|
|
The `urlpatterns` list routes URLs to views. For more information please see:
|
|
|
|
https://docs.djangoproject.com/en/5.0/topics/http/urls/
|
|
|
|
Examples:
|
|
|
|
Function views
|
|
|
|
1. Add an import: from my_app import views
|
|
|
|
2. Add a URL to urlpatterns: path('', views.home, name='home')
|
|
|
|
Class-based views
|
|
|
|
1. Add an import: from other_app.views import Home
|
|
|
|
2. Add a URL to urlpatterns: path('', Home.as_view(), name='home')
|
|
|
|
Including another URLconf
|
|
|
|
1. Import the include() function: from django.urls import include, path
|
|
|
|
2. Add a URL to urlpatterns: path('blog/', include('blog.urls'))
|
|
|
|
"""
|
|
|
|
from django.contrib import admin
|
2024-01-27 09:45:34 +00:00
|
|
|
from django.urls import path, include
|
2024-01-27 14:28:26 +00:00
|
|
|
from rest_framework import routers
|
|
|
|
|
|
|
|
from sncf.api.views import AgencyViewSet, StopViewSet, RouteViewSet, TripViewSet, StopTimeViewSet, \
|
2024-01-27 16:13:42 +00:00
|
|
|
CalendarViewSet, CalendarDateViewSet, TransferViewSet, FeedInfoViewSet, NextDeparturesViewSet, NextArrivalsViewSet
|
2024-01-27 14:28:26 +00:00
|
|
|
|
|
|
|
router = routers.DefaultRouter()
|
|
|
|
router.register("gtfs/agency", AgencyViewSet)
|
|
|
|
router.register("gtfs/stop", StopViewSet)
|
|
|
|
router.register("gtfs/route", RouteViewSet)
|
|
|
|
router.register("gtfs/trip", TripViewSet)
|
|
|
|
router.register("gtfs/stop_time", StopTimeViewSet)
|
|
|
|
router.register("gtfs/calendar", CalendarViewSet)
|
|
|
|
router.register("gtfs/calendar_date", CalendarDateViewSet)
|
|
|
|
router.register("gtfs/transfer", TransferViewSet)
|
|
|
|
router.register("gtfs/feed_info", FeedInfoViewSet)
|
2024-01-27 16:13:42 +00:00
|
|
|
router.register("station/next_departures", NextDeparturesViewSet, basename="next_departures")
|
|
|
|
router.register("station/next_arrivals", NextArrivalsViewSet, basename="next_arrivals")
|
2024-01-26 00:31:14 +00:00
|
|
|
|
|
|
|
urlpatterns = [
|
2024-01-27 09:45:34 +00:00
|
|
|
path("admin/", admin.site.urls, name="admin"),
|
2024-01-27 14:28:26 +00:00
|
|
|
path("api/", include(router.urls)),
|
|
|
|
path("api-auth/", include('rest_framework.urls', namespace='rest_framework')),
|
2024-01-27 09:45:34 +00:00
|
|
|
path("gtfs/", include("sncfgtfs.urls"), name="gtfs"),
|
2024-01-26 00:31:14 +00:00
|
|
|
]
|