kriberg / armada-sde-rest

A pluggable Django app with ReST endpoints for the SDE

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

armada-sde-rest

Build Status Coverage Status

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')),
]

About

A pluggable Django app with ReST endpoints for the SDE

License:GNU Lesser General Public License v3.0


Languages

Language:Python 100.0%