{"id":19056723,"url":"https://github.com/geonode/geonode-oauth-toolkit","last_synced_at":"2025-10-11T12:47:11.296Z","repository":{"id":50873501,"uuid":"136325496","full_name":"GeoNode/geonode-oauth-toolkit","owner":"GeoNode","description":null,"archived":false,"fork":false,"pushed_at":"2024-05-30T14:04:27.000Z","size":1357,"stargazers_count":1,"open_issues_count":0,"forks_count":8,"subscribers_count":21,"default_branch":"openid-connect","last_synced_at":"2024-11-06T16:49:16.026Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"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/GeoNode.png","metadata":{"files":{"readme":"README.rst","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":"AUTHORS","dei":null,"publiccode":null,"codemeta":null}},"created_at":"2018-06-06T12:27:47.000Z","updated_at":"2024-05-30T14:01:02.000Z","dependencies_parsed_at":"2024-06-21T15:19:18.941Z","dependency_job_id":"d4fd129f-a58a-4014-8eac-78af3245a861","html_url":"https://github.com/GeoNode/geonode-oauth-toolkit","commit_stats":{"total_commits":951,"total_committers":128,"mean_commits":7.4296875,"dds":0.7381703470031546,"last_synced_commit":"94c89d32699d63e88477035246a39e2c8d03dad0"},"previous_names":[],"tags_count":14,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GeoNode%2Fgeonode-oauth-toolkit","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GeoNode%2Fgeonode-oauth-toolkit/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GeoNode%2Fgeonode-oauth-toolkit/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GeoNode%2Fgeonode-oauth-toolkit/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/GeoNode","download_url":"https://codeload.github.com/GeoNode/geonode-oauth-toolkit/tar.gz/refs/heads/openid-connect","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":224885693,"owners_count":17386202,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":"2024-11-08T23:51:12.626Z","updated_at":"2025-10-11T12:47:06.261Z","avatar_url":"https://github.com/GeoNode.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"Django OAuth Toolkit\n====================\n\n.. image:: https://jazzband.co/static/img/badge.svg\n   :target: https://jazzband.co/\n   :alt: Jazzband\n\n*OAuth2 goodies for the Djangonauts!*\n\n.. image:: https://badge.fury.io/py/django-oauth-toolkit.svg\n    :target: http://badge.fury.io/py/django-oauth-toolkit\n\n.. image:: https://github.com/jazzband/django-oauth-toolkit/workflows/Test/badge.svg\n   :target: https://github.com/jazzband/django-oauth-toolkit/actions\n   :alt: GitHub Actions\n\n.. image:: https://codecov.io/gh/jazzband/django-oauth-toolkit/branch/master/graph/badge.svg\n   :target: https://codecov.io/gh/jazzband/django-oauth-toolkit\n   :alt: Coverage\n\n.. image:: https://img.shields.io/pypi/pyversions/django-oauth-toolkit.svg\n   :target: https://pypi.org/project/django-oauth-toolkit/\n   :alt: Supported Python versions\n\n.. image:: https://img.shields.io/pypi/djversions/django-oauth-toolkit.svg\n   :target: https://pypi.org/project/django-oauth-toolkit/\n   :alt: Supported Django versions\n\nIf you are facing one or more of the following:\n * Your Django app exposes a web API you want to protect with OAuth2 authentication,\n * You need to implement an OAuth2 authorization server to provide tokens management for your infrastructure,\n\nDjango OAuth Toolkit can help you providing out of the box all the endpoints, data and logic needed to add OAuth2\ncapabilities to your Django projects. Django OAuth Toolkit makes extensive use of the excellent\n`OAuthLib \u003chttps://github.com/idan/oauthlib\u003e`_, so that everything is\n`rfc-compliant \u003chttp://tools.ietf.org/html/rfc6749\u003e`_.\n\nContributing\n------------\n\nWe love contributions, so please feel free to fix bugs, improve things, provide documentation. Just `follow the\nguidelines \u003chttps://django-oauth-toolkit.readthedocs.io/en/latest/contributing.html\u003e`_ and submit a PR.\n\nReporting security issues\n-------------------------\n\nPlease report any security issues to the JazzBand security team at \u003csecurity@jazzband.co\u003e. Do not file an issue on the tracker.\n\nRequirements\n------------\n\n* Python 3.6+\n* Django 2.2+\n* oauthlib 3.1+\n\nInstallation\n------------\n\nInstall with pip::\n\n    pip install django-oauth-toolkit\n\nAdd `oauth2_provider` to your `INSTALLED_APPS`\n\n.. code-block:: python\n\n    INSTALLED_APPS = (\n        ...\n        'oauth2_provider',\n    )\n\n\nIf you need an OAuth2 provider you'll want to add the following to your urls.py.\nNotice that `oauth2_provider` namespace is mandatory.\n\n.. code-block:: python\n\n    urlpatterns = [\n        ...\n        path('o/', include('oauth2_provider.urls', namespace='oauth2_provider')),\n    ]\n\nChangelog\n---------\n\nSee `CHANGELOG.md \u003chttps://github.com/jazzband/django-oauth-toolkit/blob/master/CHANGELOG.md\u003e`_.\n\n\nDocumentation\n--------------\n\nThe `full documentation \u003chttps://django-oauth-toolkit.readthedocs.io/\u003e`_ is on *Read the Docs*.\n\nLicense\n-------\n\ndjango-oauth-toolkit is released under the terms of the **BSD license**. Full details in ``LICENSE`` file.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgeonode%2Fgeonode-oauth-toolkit","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgeonode%2Fgeonode-oauth-toolkit","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgeonode%2Fgeonode-oauth-toolkit/lists"}