Metadata-Version: 2.1
Name: flask-exception
Version: 0.0.1
Summary: Flask-Exception is a Flask extension that provides exception handling and logging for Flask applications.
Author-email: Ido Shraga <idoshraga@gmail.com>
License: BSD 3-Clause License
Project-URL: Homepage, https://github.com/idoshr/flask-exception
Project-URL: Documentation, https://flask-exception.readthedocs.io/en/latest/
Project-URL: Repository, https://github.com/idoshr/flask-exception
Project-URL: Changelog, https://github.com/idoshr/flask-exception/releases
Keywords: flask,exception,extension
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 :: Only
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 :: PyPy
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Framework :: Flask
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: AUTHORS.md
Requires-Dist: Flask >=1.1.4

# Flask-Exception

[![PyPI version](https://badge.fury.io/py/flask-exception.svg)](https://badge.fury.io/py/flask-exception)
[![CI Tests](https://github.com/idoshr/flask-exception/actions/workflows/tests.yml/badge.svg)](https://github.com/flask/flask-exception/actions/workflows/tests.yml)
[![Documentation Status](https://readthedocs.org/projects/flask-exception/badge/?version=latest)](https://flask-exception.readthedocs.io/en/latest/?badge=latest)
[![Maintainability](https://api.codeclimate.com/v1/badges/6fb8ae00b1008f5f1b20/maintainability)](https://codeclimate.com/github/idoshr/flask-exception/maintainability)
[![Test Coverage](https://api.codeclimate.com/v1/badges/6fb8ae00b1008f5f1b20/test_coverage)](https://codeclimate.com/github/idoshr/flask-exception/test_coverage)
![PyPI - Downloads](https://img.shields.io/pypi/dm/flask-exception)

Flask-Exception is a Flask extension that provides exception handling and logging for
Flask applications.

## Installation

```bash
# For Flask >= 2.0.0
pip install flask-exception
```

## Flask configuration

Flask-exception does not provide any configuration defaults. User is responsible
for setting up correct database settings, to exclude any possible misconfiguration
and data corruption.

There are several options to set connection. Please note, that all except
recommended are deprecated and may be removed in future versions, to lower code base
complexity and bugs. If you use any deprecated connection settings approach, you should
update your application configuration.

Please refer to [complete connection settings description] for more info.

## Usage and API documentation

Full project documentation available on [read the docs].

## Contributing and testing

We are welcome for contributors and testers! Check [Contribution guidelines].

## License

Flask-Exception is distributed under [BSD 3-Clause License].
