Metadata-Version: 2.1
Name: Flask-SeaSurf
Version: 1.1.1
Summary: An updated CSRF extension for Flask.
Home-page: https://github.com/maxcountryman/flask-seasurf/
Author: Max Countryman
Author-email: maxc@me.com
License: BSD
Description: [![Tests](https://img.shields.io/github/workflow/status/maxcountryman/flask-seasurf/Tests/main?label=tests)](https://github.com/maxcountryman/flask-seasurf/actions)
        [![Version](https://img.shields.io/pypi/v/Flask-SeaSurf.svg)](https://pypi.python.org/pypi/Flask-SeaSurf)
        [![Supported Python Versions](https://img.shields.io/pypi/pyversions/Flask-SeaSurf.svg)](https://pypi.python.org/pypi/Flask-SeaSurf)
        
        # Flask-SeaSurf
        
        SeaSurf is a Flask extension for preventing cross-site request forgery (CSRF).
        
        CSRF vulnerabilities have been found in large and popular sites such as
        YouTube. These attacks are problematic because the mechanism they use is
        relatively easy to exploit. This extension attempts to aid you in securing
        your application from such attacks.
        
        This extension is based on the excellent Django middleware.
        
        
        ## Installation
        
        Install the extension with one of the following commands:
        
            $ easy_install flask-seasurf
        
        or alternatively if you have pip installed:
        
            $ pip install flask-seasurf
        
        
        ## Usage
        
        Using SeaSurf is fairly straightforward. Begin by importing the extension and
        then passing your application object back to the extension, like this:
        
            from flask_seasurf import SeaSurf
            csrf = SeaSurf(app)
        
        
        ## Documentation
        
        The Sphinx-compiled documentation is available here: https://flask-seasurf.readthedocs.io/
        
Platform: any
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Description-Content-Type: text/markdown
