flask-oidc-auth


Nameflask-oidc-auth JSON
Version 0.4.0 PyPI version JSON
download
home_pageNone
SummaryFlask extension for an OIDC client.
upload_time2024-12-12 20:10:52
maintainerNone
docs_urlNone
authorNone
requires_pythonNone
licenseMIT License
keywords oidc authentication authorization
VCS
bugtrack_url
requirements pytest responses freezegun cosmic-ray
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # flask-oidc-auth

OIDC client endpoints.

## Description

`flask-oidc-auth` lets you easily deploy a set of endpoints to integrate with an OIDC-compliant IdP - either as a standalone app or as part of an existing app.

## Getting started

Install using pip:

```bash
pip install flask-oidc-auth
```

Then run as a standalone app:

```bash
flask --app flask_oidc_auth --debug run
```

Or as an extension in an existing app:

```python
from flask import Flask
from flask_oidc_auth import OidcExtension

app = Flask(__name__)

OidcExtension(app=app, url_prefix='/auth')

```

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "flask-oidc-auth",
    "maintainer": null,
    "docs_url": null,
    "requires_python": null,
    "maintainer_email": null,
    "keywords": "oidc, authentication, authorization",
    "author": null,
    "author_email": null,
    "download_url": "https://files.pythonhosted.org/packages/e2/2c/cfa1002fc4d1044a637880f865a96539ca1466e5f05beddc256597be860a/flask_oidc_auth-0.4.0.tar.gz",
    "platform": null,
    "description": "# flask-oidc-auth\n\nOIDC client endpoints.\n\n## Description\n\n`flask-oidc-auth` lets you easily deploy a set of endpoints to integrate with an OIDC-compliant IdP - either as a standalone app or as part of an existing app.\n\n## Getting started\n\nInstall using pip:\n\n```bash\npip install flask-oidc-auth\n```\n\nThen run as a standalone app:\n\n```bash\nflask --app flask_oidc_auth --debug run\n```\n\nOr as an extension in an existing app:\n\n```python\nfrom flask import Flask\nfrom flask_oidc_auth import OidcExtension\n\napp = Flask(__name__)\n\nOidcExtension(app=app, url_prefix='/auth')\n\n```\n",
    "bugtrack_url": null,
    "license": "MIT License",
    "summary": "Flask extension for an OIDC client.",
    "version": "0.4.0",
    "project_urls": {
        "Documentation": "https://github.com/andycaine/flask-oidc-auth?tab=readme-ov-file",
        "Homepage": "https://github.com/andycaine/flask-oidc-auth",
        "Repository": "https://github.com/andycaine/flask-oidc-auth.git"
    },
    "split_keywords": [
        "oidc",
        " authentication",
        " authorization"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "27c8a5947e1efc54029ef091bbfd48fcb80a5943dfcba25e6b7ffd6be0fd7f5f",
                "md5": "10853aca8f8c4ee861de9c85dfcc0fd2",
                "sha256": "71d56456d3f0d7c0cc580b543d3fabf49967d4906b79b9b89cb8921d2a9e929e"
            },
            "downloads": -1,
            "filename": "flask_oidc_auth-0.4.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "10853aca8f8c4ee861de9c85dfcc0fd2",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": null,
            "size": 5920,
            "upload_time": "2024-12-12T20:10:50",
            "upload_time_iso_8601": "2024-12-12T20:10:50.340860Z",
            "url": "https://files.pythonhosted.org/packages/27/c8/a5947e1efc54029ef091bbfd48fcb80a5943dfcba25e6b7ffd6be0fd7f5f/flask_oidc_auth-0.4.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e22ccfa1002fc4d1044a637880f865a96539ca1466e5f05beddc256597be860a",
                "md5": "7fbeaeeeacded8a6a68d788122bdeab5",
                "sha256": "abc8fb488c14308d44eadcb85f0c270efe98374bf9c2f275b5443f5fe731b5b3"
            },
            "downloads": -1,
            "filename": "flask_oidc_auth-0.4.0.tar.gz",
            "has_sig": false,
            "md5_digest": "7fbeaeeeacded8a6a68d788122bdeab5",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 8244,
            "upload_time": "2024-12-12T20:10:52",
            "upload_time_iso_8601": "2024-12-12T20:10:52.691206Z",
            "url": "https://files.pythonhosted.org/packages/e2/2c/cfa1002fc4d1044a637880f865a96539ca1466e5f05beddc256597be860a/flask_oidc_auth-0.4.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-12-12 20:10:52",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "andycaine",
    "github_project": "flask-oidc-auth?tab=readme-ov-file",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "requirements": [
        {
            "name": "pytest",
            "specs": []
        },
        {
            "name": "responses",
            "specs": []
        },
        {
            "name": "freezegun",
            "specs": []
        },
        {
            "name": "cosmic-ray",
            "specs": []
        }
    ],
    "lcname": "flask-oidc-auth"
}
        
Elapsed time: 0.37928s