Flask-Security


NameFlask-Security JSON
Version 5.5.2 PyPI version JSON
download
home_pageNone
SummaryQuickly add security features to your Flask application.
upload_time2024-08-04 19:15:08
maintainerNone
docs_urlNone
authorMatt Wright
requires_python>=3.9
licenseNone
keywords flask security
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            Flask-Security
===================

.. image:: https://github.com/pallets-eco/flask-security/workflows/tests/badge.svg?branch=main&event=push
    :target: https://github.com/pallets-eco/flask-security

.. image:: https://codecov.io/gh/pallets-eco/flask-security/graph/badge.svg?token=ZYS0AST5M3
    :target: https://codecov.io/gh/pallets-eco/flask-security
    :alt: Coverage!

.. image:: https://img.shields.io/github/tag/pallets-eco/flask-security.svg
    :target: https://github.com/pallets-eco/flask-security/releases

.. image:: https://img.shields.io/pypi/dm/flask-security.svg
    :target: https://pypi.python.org/pypi/flask-security
    :alt: Downloads

.. image:: https://img.shields.io/pypi/dm/flask-security-too.svg
    :target: https://pypi.python.org/pypi/flask-security-too
    :alt: Downloads

.. image:: https://img.shields.io/github/license/pallets-eco/flask-security.svg
    :target: https://github.com/pallets-eco/flask-security/blob/main/LICENSE
    :alt: License

.. image:: https://readthedocs.org/projects/flask-security/badge/?version=latest
    :target: https://flask-security.readthedocs.io/en/latest/?badge=latest
    :alt: Documentation Status

.. image:: https://img.shields.io/badge/code%20style-black-000000.svg
    :target: https://github.com/python/black

.. image:: https://img.shields.io/badge/pre--commit-enabled-brightgreen?logo=pre-commit&logoColor=white
    :target: https://github.com/pre-commit/pre-commit
    :alt: pre-commit

Quickly add security features to your Flask application.

Notes on this repo
------------------
As of 7/30/2024, the independent fork Flask-Security-Too replaced the archived
Flask-Security repo (now called Flask-Security-3.0). This repo is published at PyPI at
both Flask-Security and Flask-Security-Too.

Flask-Security-Too was a fork from the 3.0.0
version of the `Original <https://github.com/mattupstate/flask-security>`_

Pallets Community Ecosystem
----------------------------

This project is part of the Pallets Community Ecosystem. Pallets is the open
source organization that maintains Flask; Pallets-Eco enables community
maintenance of related projects. If you are interested in helping maintain
this project, please reach out on `the Pallets Discord server <https://discord.gg/pallets>`.

Goals
+++++

* Use `OWASP <https://github.com/OWASP/ASVS>`_ to guide best practice and default configurations.
* Be more opinionated and 'batteries' included by reducing reliance on abandoned projects and
  bundling in support for common use cases.
* Follow the `Pallets <https://github.com/pallets>`_ lead on supported versions, documentation
  standards and any other guidelines for extensions that they come up with.
* Continue to add newer authentication/authorization standards:
    * 'Social Auth' integrated (using authlib) (5.1)
    * WebAuthn support (5.0)
    * Two-Factor recovery codes (5.0)
    * First-class support for username as identity (4.1)
    * Support for freshness decorator to ensure sensitive operations have new authentication (4.0)
    * Support for email normalization and validation (4.0)
    * Unified signin (username, phone, passwordless) feature (3.4)


Contributing
++++++++++++
Issues and pull requests are welcome. Other maintainers are also welcome.
Please consult these `contributing`_ guidelines.

.. _contributing: https://github.com/pallets-eco/flask-security/blob/main/CONTRIBUTING.rst

Installing
----------
Install and update using `pip <https://pip.pypa.io/en/stable/quickstart/>`_:

::

    pip install -U Flask-Security


Resources
---------

- `Documentation <https://flask-security.readthedocs.io/>`_
- `Releases <https://pypi.org/project/Flask-Security/>`_
- `Issue Tracker <https://github.com/pallets-eco/flask-security/issues>`_
- `Code <https://github.com/pallets-eco/flask-security/>`_


            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "Flask-Security",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.9",
    "maintainer_email": "Chris Wagner <jwag.wagner+github@gmail.com>",
    "keywords": "flask security",
    "author": "Matt Wright",
    "author_email": "Chris Wagner <jwag.wagner+github@gmail.com>",
    "download_url": "https://files.pythonhosted.org/packages/6d/8d/c22fc43fe9491d85bf80e810b317981002a9df2da6da084027288fdd72cd/flask_security-5.5.2.tar.gz",
    "platform": null,
    "description": "Flask-Security\n===================\n\n.. image:: https://github.com/pallets-eco/flask-security/workflows/tests/badge.svg?branch=main&event=push\n    :target: https://github.com/pallets-eco/flask-security\n\n.. image:: https://codecov.io/gh/pallets-eco/flask-security/graph/badge.svg?token=ZYS0AST5M3\n    :target: https://codecov.io/gh/pallets-eco/flask-security\n    :alt: Coverage!\n\n.. image:: https://img.shields.io/github/tag/pallets-eco/flask-security.svg\n    :target: https://github.com/pallets-eco/flask-security/releases\n\n.. image:: https://img.shields.io/pypi/dm/flask-security.svg\n    :target: https://pypi.python.org/pypi/flask-security\n    :alt: Downloads\n\n.. image:: https://img.shields.io/pypi/dm/flask-security-too.svg\n    :target: https://pypi.python.org/pypi/flask-security-too\n    :alt: Downloads\n\n.. image:: https://img.shields.io/github/license/pallets-eco/flask-security.svg\n    :target: https://github.com/pallets-eco/flask-security/blob/main/LICENSE\n    :alt: License\n\n.. image:: https://readthedocs.org/projects/flask-security/badge/?version=latest\n    :target: https://flask-security.readthedocs.io/en/latest/?badge=latest\n    :alt: Documentation Status\n\n.. image:: https://img.shields.io/badge/code%20style-black-000000.svg\n    :target: https://github.com/python/black\n\n.. image:: https://img.shields.io/badge/pre--commit-enabled-brightgreen?logo=pre-commit&logoColor=white\n    :target: https://github.com/pre-commit/pre-commit\n    :alt: pre-commit\n\nQuickly add security features to your Flask application.\n\nNotes on this repo\n------------------\nAs of 7/30/2024, the independent fork Flask-Security-Too replaced the archived\nFlask-Security repo (now called Flask-Security-3.0). This repo is published at PyPI at\nboth Flask-Security and Flask-Security-Too.\n\nFlask-Security-Too was a fork from the 3.0.0\nversion of the `Original <https://github.com/mattupstate/flask-security>`_\n\nPallets Community Ecosystem\n----------------------------\n\nThis project is part of the Pallets Community Ecosystem. Pallets is the open\nsource organization that maintains Flask; Pallets-Eco enables community\nmaintenance of related projects. If you are interested in helping maintain\nthis project, please reach out on `the Pallets Discord server <https://discord.gg/pallets>`.\n\nGoals\n+++++\n\n* Use `OWASP <https://github.com/OWASP/ASVS>`_ to guide best practice and default configurations.\n* Be more opinionated and 'batteries' included by reducing reliance on abandoned projects and\n  bundling in support for common use cases.\n* Follow the `Pallets <https://github.com/pallets>`_ lead on supported versions, documentation\n  standards and any other guidelines for extensions that they come up with.\n* Continue to add newer authentication/authorization standards:\n    * 'Social Auth' integrated (using authlib) (5.1)\n    * WebAuthn support (5.0)\n    * Two-Factor recovery codes (5.0)\n    * First-class support for username as identity (4.1)\n    * Support for freshness decorator to ensure sensitive operations have new authentication (4.0)\n    * Support for email normalization and validation (4.0)\n    * Unified signin (username, phone, passwordless) feature (3.4)\n\n\nContributing\n++++++++++++\nIssues and pull requests are welcome. Other maintainers are also welcome.\nPlease consult these `contributing`_ guidelines.\n\n.. _contributing: https://github.com/pallets-eco/flask-security/blob/main/CONTRIBUTING.rst\n\nInstalling\n----------\nInstall and update using `pip <https://pip.pypa.io/en/stable/quickstart/>`_:\n\n::\n\n    pip install -U Flask-Security\n\n\nResources\n---------\n\n- `Documentation <https://flask-security.readthedocs.io/>`_\n- `Releases <https://pypi.org/project/Flask-Security/>`_\n- `Issue Tracker <https://github.com/pallets-eco/flask-security/issues>`_\n- `Code <https://github.com/pallets-eco/flask-security/>`_\n\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "Quickly add security features to your Flask application.",
    "version": "5.5.2",
    "project_urls": {
        "Documentation": "https://flask-security.readthedocs.io",
        "Homepage": "https://github.com/pallets-eco/flask-security",
        "Releases": "https://pypi.org/project/Flask-Security/",
        "Source": "https://github.com/pallets-eco/flask-security",
        "Tracker": "https://github.com/pallets-eco/flask-security/issues"
    },
    "split_keywords": [
        "flask",
        "security"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "01830bf09129b8fab6228093454d6709bdcee2646def556e544bacc112302fac",
                "md5": "b14b6b4b2a6c3204f6b643dd43495b89",
                "sha256": "256958ddb4c146e0f3f2d48b7e0b0ccd222075ef1de42996ae47d725b62479d4"
            },
            "downloads": -1,
            "filename": "flask_security-5.5.2-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "b14b6b4b2a6c3204f6b643dd43495b89",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.9",
            "size": 418911,
            "upload_time": "2024-08-04T19:15:06",
            "upload_time_iso_8601": "2024-08-04T19:15:06.596598Z",
            "url": "https://files.pythonhosted.org/packages/01/83/0bf09129b8fab6228093454d6709bdcee2646def556e544bacc112302fac/flask_security-5.5.2-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6d8dc22fc43fe9491d85bf80e810b317981002a9df2da6da084027288fdd72cd",
                "md5": "9cea5be6ccc5a1a1c9d12fa6f50d1925",
                "sha256": "0139eef4b5a3f44387a96c85cc880b84449156f70882451f781a4dea7ad3ec8a"
            },
            "downloads": -1,
            "filename": "flask_security-5.5.2.tar.gz",
            "has_sig": false,
            "md5_digest": "9cea5be6ccc5a1a1c9d12fa6f50d1925",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.9",
            "size": 668289,
            "upload_time": "2024-08-04T19:15:08",
            "upload_time_iso_8601": "2024-08-04T19:15:08.085732Z",
            "url": "https://files.pythonhosted.org/packages/6d/8d/c22fc43fe9491d85bf80e810b317981002a9df2da6da084027288fdd72cd/flask_security-5.5.2.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-08-04 19:15:08",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "pallets-eco",
    "github_project": "flask-security",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "tox": true,
    "lcname": "flask-security"
}
        
Elapsed time: 0.34845s