Metadata-Version: 2.1
Name: connexion-auth-paths-extd
Version: 0.0.1.dev0
Summary: Small connexion extension to add authentication into spec routes
Home-page: https://github.com/exageraldo/connexion-auth-paths-extd
Author: Geraldo Castro
Author-email: victormatheuscastro@gmail.com
License: BSD-3-Clause
Project-URL: Bug Tracker, https://github.com/exageraldo/connexion-auth-paths-extd/issues
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
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.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: connexion (~=2.10.0)


# Connexion Auth Paths Extended

Small connexion extension to add authentication into spec routes

## Installation

Install `connexion-auth-paths-extd` with `pip`:

```bash
  pip install connexion-auth-paths-extd
```

## Usage/Examples

```python
from connexion.extended.auth_paths_extd import FlaskApp


def create_app():
    connexion_app = FlaskApp(
        __name__,
        specification_dir='.',
        auth_all_paths=True,
        options={
            'swagger_ui': True,
            'auth_all_paths': True
        }
    )
```

A better exemple is on [examples folder](/example).


