├── .gitignore ├── LICENSE ├── django_request_mapping ├── __init__.py ├── decorator.py └── route.py ├── example ├── conf │ ├── __init__.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py ├── db.sqlite3 ├── manage.py └── web │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ └── __init__.py │ ├── models.py │ ├── tests.py │ ├── urls.py │ └── views.py ├── readme.md └── setup.py /.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | *.pyc 3 | /build 4 | /dist 5 | *egg-info 6 | .mypy_cache 7 | *.iml 8 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sazima/django-request-mapping/HEAD/LICENSE -------------------------------------------------------------------------------- /django_request_mapping/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sazima/django-request-mapping/HEAD/django_request_mapping/__init__.py -------------------------------------------------------------------------------- /django_request_mapping/decorator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sazima/django-request-mapping/HEAD/django_request_mapping/decorator.py -------------------------------------------------------------------------------- /django_request_mapping/route.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sazima/django-request-mapping/HEAD/django_request_mapping/route.py -------------------------------------------------------------------------------- /example/conf/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/conf/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sazima/django-request-mapping/HEAD/example/conf/settings.py -------------------------------------------------------------------------------- /example/conf/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sazima/django-request-mapping/HEAD/example/conf/urls.py -------------------------------------------------------------------------------- /example/conf/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sazima/django-request-mapping/HEAD/example/conf/wsgi.py -------------------------------------------------------------------------------- /example/db.sqlite3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sazima/django-request-mapping/HEAD/example/manage.py -------------------------------------------------------------------------------- /example/web/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/web/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sazima/django-request-mapping/HEAD/example/web/admin.py -------------------------------------------------------------------------------- /example/web/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sazima/django-request-mapping/HEAD/example/web/apps.py -------------------------------------------------------------------------------- /example/web/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/web/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sazima/django-request-mapping/HEAD/example/web/models.py -------------------------------------------------------------------------------- /example/web/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sazima/django-request-mapping/HEAD/example/web/tests.py -------------------------------------------------------------------------------- /example/web/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sazima/django-request-mapping/HEAD/example/web/urls.py -------------------------------------------------------------------------------- /example/web/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sazima/django-request-mapping/HEAD/example/web/views.py -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sazima/django-request-mapping/HEAD/readme.md -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sazima/django-request-mapping/HEAD/setup.py --------------------------------------------------------------------------------