Skip to main content

Django app to manage french SINP organisms standard

Project description

SINP Organisms for Django

DjangoSinpOrganisms is a simple Django reusable app to manage French SINP Organisms, respecting standard.

See docs for more details : https://dbchiro.github.io/DjangoSinpOrganisms/

Quick start

  1. Install app
pip install -U dj-sinp-organisms
  1. Configure INSTALLED_APPS:
INSTALLED_APPS = (
    'django.contrib.admin',
    'django.contrib.auth',
    (...),
    'rest_framework',
    'sinp_nomenclatures',
    'sinp_organisms',
    (...),
)
  1. Configure urls.py:
urlpatterns = [
    path('admin/', admin.site.urls),
    path('api-auth/', include('rest_framework.urls')),
    (...),
    path('api/v1/', include('sinp_nomenclatures.urls')),
    path('api/v1/', include('sinp_organisms.urls')),
    (...),
]
  1. Run python manage.py migrate to create the polls models.
  2. Start the development server and visit http://127.0.0.1:8000/admin/ to create an organism (you'll need the Admin app enabled).
  3. Visit http://127.0.0.1:8000/api/v1/organisms to view organisms API.

Database models

models.png

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

dj_sinp_organisms-1.3.1.tar.gz (1.1 MB view hashes)

Uploaded Source

Built Distribution

dj_sinp_organisms-1.3.1-py3-none-any.whl (1.2 MB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page