Django SCIM2 Server¶
Documentation: https://django-scim2-server.readthedocs.io
Source Code: https://github.com/browniebroke/django-scim2-server
An implementation of the System for Cross-domain Identity Management (SCIM) specification for your Django project.
[!WARNING] This package is in early stage of its development, and I haven’t deployed it to production yet. Use at your own risks!
Installation¶
Install this via pip (or your favourite package manager):
pip install django-scim2-server
Add the app to your INSTALLED_APPS:
INSTALLED_APPS = [
# ...
"django_scim2_server",
]
Include the SCIM URL routes in your root URL configuration:
from django.urls import include, path
urlpatterns = [
# ...
path("scim/v2/", include("django_scim2_server.urls")),
]
Run migrations to create the SCIM database tables:
python manage.py migrate
Contributors ✨¶
Thanks goes to these wonderful people (emoji key):
Bruno Alla 💻 🤔 📖 |
This project follows the all-contributors specification. Contributions of any kind welcome!
Credits¶
This package was created with Copier and the browniebroke/pypackage-template project template.
Installation & Usage
Project Info
API Reference
- django_scim2_server package
- Subpackages
- Submodules
- django_scim2_server.adapters module
- django_scim2_server.apps module
- django_scim2_server.auth module
- django_scim2_server.conf module
- django_scim2_server.constants module
- django_scim2_server.exceptions module
- django_scim2_server.filters module
- django_scim2_server.models module
- django_scim2_server.patch module
- django_scim2_server.urls module
- django_scim2_server.views module