Metadata-Version: 2.1
Name: flask-request-logger
Version: 0.3.0
Summary: A Flask extension for recording requests and responses
Home-page: https://github.com/BbsonLin/flask-request-logger
Author: Bobson Lin
Author-email: bobson801104@gmail.com
License: MIT
Keywords: flask logger
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Web Environment
Classifier: Framework :: Flask
Classifier: Operating System :: OS Independent
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: License :: OSI Approved :: MIT License
Description-Content-Type: text/markdown
Requires-Dist: flask (==1.0.2)
Requires-Dist: flask-sqlalchemy (==2.3.2)

Flask Request Logger
====================

**This module is in Development Status :: 3 - Alpha**

Flask-Request-Logger is an extension for [Flask](http://flask.pocoo.org/) that logging requests and responses for your Flask app.

Compatibility
-------------

For now Python 3.5+.

Installation
------------

With pip:
```
$ pip install flask-reqeust-logger
```

Testing
-------

Run unittest in current development environment
```
$ pytest -sv --tap-combined
```
* `--tap-combined` option will log the test result in testresults.tap.  
* More testing options please check [pytest](https://github.com/pytest-dev/pytest/), [pytest-tap](https://github.com/python-tap/pytest-tap) or more [pytest plugins](http://plugincompat.herokuapp.com/)


