https://github.com/lucascarvalho/flask-handlers
https://github.com/lucascarvalho/flask-handlers
flask flask-api json json-api python
Last synced: 6 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/lucascarvalho/flask-handlers
- Owner: lucascarvalho
- License: mit
- Created: 2017-04-20T19:48:44.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-04-20T20:55:24.000Z (over 8 years ago)
- Last Synced: 2025-09-22T15:12:00.620Z (3 months ago)
- Topics: flask, flask-api, json, json-api, python
- Language: Python
- Size: 3.91 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# flask-handlers
## How to install?
```bash
$ pip install flask_handlers
```
## How to use?
```python
from flask import Flask
from flask_handlers import set_json_error_handler
app = Flask(__name__)
set_json_error_handler(app)
```