Metadata-Version: 2.1 Name: Flask-Security-Too Version: 5.2.0 Summary: Simple security for Flask apps. Home-page: https://github.com/Flask-Middleware/flask-security Author: Matt Wright & Chris Wagner Author-email: jwag.wagner+github@gmail.com License: MIT Project-URL: Documentation, https://flask-security-too.readthedocs.io Project-URL: Releases, https://pypi.org/project/Flask-Security-Too/ Project-URL: Code, https://github.com/Flask-Middleware/flask-security Project-URL: Issue tracker, https://github.com/Flask-Middleware/flask-security/issues Keywords: flask security Platform: any Classifier: Environment :: Web Environment Classifier: Framework :: Flask Classifier: Intended Audience :: Developers Classifier: License :: OSI Approved :: MIT License Classifier: Operating System :: OS Independent Classifier: Programming Language :: Python Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content Classifier: Topic :: Software Development :: Libraries :: Python Modules Classifier: Programming Language :: Python :: 3 Classifier: Programming Language :: Python :: 3.8 Classifier: Programming Language :: Python :: 3.9 Classifier: Programming Language :: Python :: 3.10 Classifier: Programming Language :: Python :: 3.11 Classifier: Programming Language :: Python :: Implementation :: CPython Classifier: Programming Language :: Python :: Implementation :: PyPy Classifier: Development Status :: 5 - Production/Stable Requires-Python: >=3.8 License-File: LICENSE License-File: AUTHORS Requires-Dist: Flask (>=2.3.0) Requires-Dist: Flask-Login (>=0.6.2) Requires-Dist: Flask-Principal (>=0.4.0) Requires-Dist: Flask-WTF (>=1.1.1) Requires-Dist: email-validator (>=1.1.1) Requires-Dist: passlib (>=1.7.4) Requires-Dist: wtforms (>=3.0.0) Requires-Dist: importlib-resources (>=5.10.0) Provides-Extra: babel Requires-Dist: babel (>=2.12.1) ; extra == 'babel' Requires-Dist: flask-babel (>=3.1.0) ; extra == 'babel' Provides-Extra: common Requires-Dist: bcrypt (>=4.0.1) ; extra == 'common' Requires-Dist: flask-mailman (>=0.3.0) ; extra == 'common' Requires-Dist: bleach (>=6.0.0) ; extra == 'common' Provides-Extra: fsqla Requires-Dist: flask-sqlalchemy (>=3.0.2) ; extra == 'fsqla' Requires-Dist: sqlalchemy (>=1.4.35) ; extra == 'fsqla' Requires-Dist: sqlalchemy-utils (>=0.38.3) ; extra == 'fsqla' Provides-Extra: mfa Requires-Dist: cryptography (>=40.0.2) ; extra == 'mfa' Requires-Dist: qrcode (>=7.4.2) ; extra == 'mfa' Requires-Dist: phonenumberslite (>=8.13.11) ; extra == 'mfa' Requires-Dist: webauthn (>=1.8.0) ; extra == 'mfa' Flask-Security =================== .. image:: https://github.com/Flask-Middleware/flask-security/workflows/tests/badge.svg?branch=master&event=push :target: https://github.com/Flask-Middleware/flask-security .. image:: https://codecov.io/gh/Flask-Middleware/flask-security/branch/master/graph/badge.svg?token=U02MUQJ7BM :target: https://codecov.io/gh/Flask-Middleware/flask-security :alt: Coverage! .. image:: https://img.shields.io/github/tag/Flask-Middleware/flask-security.svg :target: https://github.com/Flask-Middleware/flask-security/releases .. 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/Flask-Middleware/flask-security.svg :target: https://github.com/Flask-Middleware/flask-security/blob/master/LICENSE :alt: License .. image:: https://readthedocs.org/projects/flask-security-too/badge/?version=latest :target: https://flask-security-too.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 ------------------ This is a independently maintained version of Flask-Security based on the 3.0.0 version of the `Original `_ Goals +++++ * Regain momentum for this critical piece of the Flask eco-system. To that end the the plan is to put out small, frequent releases starting with pulling the simplest and most obvious changes that have already been vetted in the upstream version, as well as other pull requests. This was completed with the June 29 2019 3.2.0 release. * Continue work to get Flask-Security to be usable from Single Page Applications, such as those built with Vue and Angular, that have no html forms. This is true as of the 3.3.0 release. * Use `OWASP `_ 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 `_ 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 fresheness 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. Unlike the original Flask-Security - issue pull requests against the *master* branch. Please consult these `contributing`_ guidelines. .. _contributing: https://github.com/Flask-Middleware/flask-security/blob/master/CONTRIBUTING.rst Installing ---------- Install and update using `pip `_: :: pip install -U Flask-Security-Too Resources --------- - `Documentation `_ - `Releases `_ - `Issue Tracker `_ - `Code `_