from django.conf.urls import * from apps.push import views urlpatterns = [ url(r'^(?P\d+)/?$', views.push_callback, name='push-callback'), ]