Name | Flask-Security-Too JSON |
Version |
5.6.0
JSON |
| download |
home_page | None |
Summary | Quickly add security features to your Flask application. |
upload_time | 2025-02-12 01:05:24 |
maintainer | None |
docs_url | None |
author | Matt Wright |
requires_python | >=3.9 |
license | None |
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/actions/workflows/tests.yml/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. Please consider changing your
requirements file to point to flask-security.
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-Too",
"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/35/77/0eb381f7cb9cc36a96bb0468354a9092377b33f7440c68c909656516f06b/flask_security_too-5.6.0.tar.gz",
"platform": null,
"description": "Flask-Security\n===================\n\n.. image:: https://github.com/pallets-eco/flask-security/actions/workflows/tests.yml/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. Please consider changing your\nrequirements file to point to flask-security.\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.6.0",
"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": null,
"digests": {
"blake2b_256": "12ece6008804fa911bb573d4ebe44a4833dbf958d81147018eb300ce2c40bc76",
"md5": "518b01e85cb19f90c446526dd232e60a",
"sha256": "dc70147bc34964f0c965b03c2762feef7bf57375d1584a0d3b9ada7c98366d22"
},
"downloads": -1,
"filename": "flask_security_too-5.6.0-py3-none-any.whl",
"has_sig": false,
"md5_digest": "518b01e85cb19f90c446526dd232e60a",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.9",
"size": 436071,
"upload_time": "2025-02-12T01:05:21",
"upload_time_iso_8601": "2025-02-12T01:05:21.625196Z",
"url": "https://files.pythonhosted.org/packages/12/ec/e6008804fa911bb573d4ebe44a4833dbf958d81147018eb300ce2c40bc76/flask_security_too-5.6.0-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "35770eb381f7cb9cc36a96bb0468354a9092377b33f7440c68c909656516f06b",
"md5": "4bf58d5de9af20a844f14a2cbc1ea314",
"sha256": "8da51fcb7393e3fe6f931af84ed4c90c7c08bbfe99a19080cb4b7343e76d80b2"
},
"downloads": -1,
"filename": "flask_security_too-5.6.0.tar.gz",
"has_sig": false,
"md5_digest": "4bf58d5de9af20a844f14a2cbc1ea314",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.9",
"size": 693814,
"upload_time": "2025-02-12T01:05:24",
"upload_time_iso_8601": "2025-02-12T01:05:24.859617Z",
"url": "https://files.pythonhosted.org/packages/35/77/0eb381f7cb9cc36a96bb0468354a9092377b33f7440c68c909656516f06b/flask_security_too-5.6.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2025-02-12 01:05:24",
"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-too"
}