flask-oidc-auth


Nameflask-oidc-auth JSON
Version 0.5.0 PyPI version JSON
download
home_pageNone
SummaryFlask extension for an OIDC client.
upload_time2025-01-01 14:32:52
maintainerNone
docs_urlNone
authorNone
requires_pythonNone
licenseMIT License
keywords oidc authentication authorization
VCS
bugtrack_url
requirements No requirements were recorded.
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/c8/0b/2fbf5933ae41ac8b1edee823fa9702ec3a83037e0c694dc1b52fac639a84/flask_oidc_auth-0.5.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.5.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": "67087e03deaa73a0bb3fdd01531e2ed3cc9aca2061cd4fe85c6dd46337e0fc01",
                "md5": "f913298267b4501cc01f0765ec37d10b",
                "sha256": "bf49d50be4cd471cedb5e63ef5207d22f6b96558219609f2c97acaa400b28b96"
            },
            "downloads": -1,
            "filename": "flask_oidc_auth-0.5.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "f913298267b4501cc01f0765ec37d10b",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": null,
            "size": 6305,
            "upload_time": "2025-01-01T14:32:48",
            "upload_time_iso_8601": "2025-01-01T14:32:48.361726Z",
            "url": "https://files.pythonhosted.org/packages/67/08/7e03deaa73a0bb3fdd01531e2ed3cc9aca2061cd4fe85c6dd46337e0fc01/flask_oidc_auth-0.5.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c80b2fbf5933ae41ac8b1edee823fa9702ec3a83037e0c694dc1b52fac639a84",
                "md5": "0097e36488dabc001857b2cb71c4c4f9",
                "sha256": "eb7d099151e7d6bb9968db2642bb8a8125bcc90784ab9d9ff47b65a65dbca444"
            },
            "downloads": -1,
            "filename": "flask_oidc_auth-0.5.0.tar.gz",
            "has_sig": false,
            "md5_digest": "0097e36488dabc001857b2cb71c4c4f9",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 8448,
            "upload_time": "2025-01-01T14:32:52",
            "upload_time_iso_8601": "2025-01-01T14:32:52.030319Z",
            "url": "https://files.pythonhosted.org/packages/c8/0b/2fbf5933ae41ac8b1edee823fa9702ec3a83037e0c694dc1b52fac639a84/flask_oidc_auth-0.5.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-01-01 14:32: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,
    "lcname": "flask-oidc-auth"
}
        
Elapsed time: 1.73249s