Better JSON support for Flask
Project description
Flask-JSON is a simple extension that adds better JSON support to Flask application.
Features:
Works on python 2.6, 2.7, 3.3+ and Flask 0.10+.
More ways to generate JSON responses (comparing to plain Flask).
Extended JSON encoding support.
Usage
Here is fast example:
from datetime import datetime
from flask import Flask
from flask_json import FlaskJSON, JsonError, json_response, as_json
app = Flask(__name__)
FlaskJSON(app)
@app.route('/get_time')
def get_time():
return json_response(time=datetime.utcnow())
@app.route('/get_time_and_value')
@as_json
def get_time_and_value():
return dict(time=datetime.utcnow(), value=12)
@app.route('/raise_error')
def raise_error():
raise JsonError(description='Example text.', code=123)
if __name__ == '__main__':
app.run()
Responses:
GET /get_time HTTP/1.1
HTTP/1.0 200 OK
Content-Type: application/json
Content-Length: 60
{
"status": 200,
"time": "2015-04-14T13:17:16.732000"
}
GET /raise_error HTTP/1.1
HTTP/1.0 400 BAD REQUEST
Content-Type: application/json
Content-Length: 70
{
"code": 123,
"description": "Example text.",
"status": 400
}
Documentation
Documentation is available on pythonhosted and Read the Docs.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Flask-JSON-0.3.0.zip
(12.0 kB
view details)
File details
Details for the file Flask-JSON-0.3.0.zip
.
File metadata
- Download URL: Flask-JSON-0.3.0.zip
- Upload date:
- Size: 12.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2e6b37bc220f29f33d87bb9e405b872305dd9a74c56d1c964f536fdcdd020b75 |
|
MD5 | dd5ba75a99218e5ed0d08c4edf7a414c |
|
BLAKE2b-256 | 4afdd772455cceefe913709bbf395a321ade1525c3fd258a499f4750026826d2 |