{"id":34089909,"url":"https://github.com/15five/django-scim2","last_synced_at":"2026-04-02T01:39:14.384Z","repository":{"id":14358310,"uuid":"74058647","full_name":"15five/django-scim2","owner":"15five","description":"A SCIM 2.0 Service Provider Implementation (for Django)","archived":false,"fork":false,"pushed_at":"2026-03-24T13:46:33.000Z","size":683,"stargazers_count":92,"open_issues_count":8,"forks_count":30,"subscribers_count":18,"default_branch":"main","last_synced_at":"2026-03-25T17:43:28.270Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"http://django-scim2.readthedocs.io/","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/15five.png","metadata":{"files":{"readme":"README.rst","changelog":"CHANGES.txt","contributing":null,"funding":null,"license":"LICENSE.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2016-11-17T19:10:15.000Z","updated_at":"2026-03-24T13:46:37.000Z","dependencies_parsed_at":"2026-01-27T20:00:25.309Z","dependency_job_id":null,"html_url":"https://github.com/15five/django-scim2","commit_stats":{"total_commits":313,"total_committers":15,"mean_commits":"20.866666666666667","dds":0.6230031948881789,"last_synced_commit":"3c70b68c21bf72d597db7492579718c9ba1d9436"},"previous_names":[],"tags_count":79,"template":false,"template_full_name":null,"purl":"pkg:github/15five/django-scim2","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/15five%2Fdjango-scim2","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/15five%2Fdjango-scim2/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/15five%2Fdjango-scim2/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/15five%2Fdjango-scim2/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/15five","download_url":"https://codeload.github.com/15five/django-scim2/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/15five%2Fdjango-scim2/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31294021,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-02T01:05:07.454Z","status":"ssl_error","status_checked_at":"2026-04-02T00:56:46.496Z","response_time":53,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-12-14T14:06:50.169Z","updated_at":"2026-04-02T01:39:14.379Z","avatar_url":"https://github.com/15five.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"django-scim2\n============\n\n|tests| |coverage| |docs|\n\nThis is a provider-side implementation of the SCIM 2.0 [1]_\nspecification for use in Django.\n\nNote that currently the only supported database is Postgres.\n\n\nInstallation\n------------\n\nInstall with pip::\n\n$ pip install django-scim2\n\nThen add the ``django_scim`` app to ``INSTALLED_APPS`` in your Django's settings::\n\n    INSTALLED_APPS = (\n        ...\n        'django_scim',\n    )\n\nBy default, ``request.user.is_anonymous()`` is checked to determine if the SCIM\nrequest should be allowed or denied.\n\nIf you have specific authentication needs, look into overriding the default \"is\nauthenticated predicate\" (i.e. see ``GET_IS_AUTHENTICATED_PREDICATE`` for\ndetails) or subclassing the middleware that performs the check\n(``AUTH_CHECK_MIDDLEWARE``).\n\nAdd the necessary url patterns to your root urls.py file. Please note that the\nnamespace is mandatory and must be named `scim`::\n\n    urlpatterns = [\n        ...\n        path('scim/v2/', include('django_scim.urls')),\n    ]\n\nFinally, add settings appropriate for you app to your settings.py file::\n\n    SCIM_SERVICE_PROVIDER = {\n        'NETLOC': 'localhost',\n        'AUTHENTICATION_SCHEMES': [\n            {\n                'type': 'oauth2',\n                'name': 'OAuth 2',\n                'description': 'Oauth 2 implemented with bearer token',\n            },\n        ],\n    }\n\nOther SCIM settings can be provided but those listed above are required.\n\nPyPI\n----\n\nhttps://pypi.python.org/pypi/django-scim2\n\nSource\n------\n\nhttps://github.com/15five/django-scim2\n\nDocumentation\n-------------\n\n.. |docs| image:: https://readthedocs.org/projects/django-scim2/badge/\n  :target: https://django-scim2.readthedocs.io/\n  :alt: Documentation Status\n\nhttps://django-scim2.readthedocs.io/\n\nDevelopment\n-----------\n\nThis project uses Poetry to manage dependencies, etc. Thus to install the\nnecessary tools when developing, run::\n\n    poetry install\n\nTests\n-----\n\n.. |tests| image:: https://github.com/15five/django-scim2/workflows/CI%2FCD/badge.svg\n    :target: https://github.com/15five/django-scim2/actions\n\nhttps://github.com/15five/django-scim2/actions\n\nTests are typically run locally with `tox` (https://tox.wiki/). Tox will test\nall supported versions of Python and Django::\n\n    tox\n\nTo run the test suite with a single version of Python (the version you created\nthe virtualenv with), run::\n\n    poetry run pytest tests/\n\nCoverage\n--------\n\n.. |coverage| image:: https://codecov.io/gh/15five/django-scim2/graph/badge.svg\n    :target: https://codecov.io/gh/15five/django-scim2\n\nhttps://codecov.io/gh/15five/django-scim2/\n\nTo run tests with coverage::\n\n    tox -e coverage\n\n\nLicense\n-------\n\nThis library is released under the terms of the **MIT license**. Full details in ``LICENSE.txt`` file.\n\n\nExtensibility\n-------------\n\nThis library was forked and developed to be highly extensible. A number of\nadapters can be defined to control what different endpoints do to your resources.\nPlease see the documentation for more details.\n\nPLEASE NOTE: This app does not implement authorization and authentication.\nSuch tasks are left for other apps such as `Django OAuth Toolkit`_ to implement.\n\n.. _`Django OAuth Toolkit`: https://github.com/evonove/django-oauth-toolkit\n\nDevelopment Speed\n-----------------\n\nSince this project is relatively stable, time is only dedicated to it on\nFridays. Thus if you issue a PR, bug, etc, please note that it may take a week\nbefore we get back to you. Thanks you for your patience.\n\nCredits\n-------\n\nThis project was forked from https://bitbucket.org/atlassian/django_scim\n\n\n.. [1] http://www.simplecloud.info/, https://tools.ietf.org/html/rfc7644\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2F15five%2Fdjango-scim2","html_url":"https://awesome.ecosyste.ms/projects/github.com%2F15five%2Fdjango-scim2","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2F15five%2Fdjango-scim2/lists"}