Last updated:
0 purchases
armadasderest 0.1.2
armada-sde-rest
armada-sde-rest is a pluggable app for Django which provides Django REST framework
endpoints for the models generated by armada-sde.
Usage
Install the latest version of armada-sde-rest from PyPI:
pip install armada-sde-rest
Follow the installation instructions for armada-sde, then
add armada-sde-rest and its dependencies to Django's settings.py:
INSTALLED_APPS = [
# ...
'rest_framework',
'armada_sde',
'armada_sde_rest',
]
Add the routes to your urls.py:
from django.urls import path, include
urlpatterns = [
path('sde/', include('armada_sde_rest.urls')),
]
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.