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
- Install app
pip install -U dj-sinp-organisms
- Configure
INSTALLED_APPS
:
INSTALLED_APPS = (
'django.contrib.admin',
'django.contrib.auth',
(...),
'rest_framework',
'sinp_nomenclatures',
'sinp_organisms',
(...),
)
- 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')),
(...),
]
- Run
python manage.py migrate
to create the polls models. - Start the development server and visit http://127.0.0.1:8000/admin/ to create an organism (you'll need the Admin app enabled).
- Visit http://127.0.0.1:8000/api/v1/organisms to view organisms API.
Database models
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Close
Hashes for dj_sinp_organisms-1.3.1-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | c538cdebd112528d69af0c6747652f3c79d6c5cd84609261f58a3cfd61b182cf |
|
MD5 | c81216428591ecf810a1ee1b7d7a0612 |
|
BLAKE2b-256 | 38ffce41e234082387c9026d519a2eb254549a0c972ea4ff26c78057de9d68cd |