Skip to content

Latest commit

 

History

History
19 lines (14 loc) · 471 Bytes

README.md

File metadata and controls

19 lines (14 loc) · 471 Bytes

flask-ujson

A Flask/Quart JSON provider using the fast ujson library. Using this provider will significantly speed up reading JSON data in requests and generating JSON responses.

Example

from flask import Flask
from flask_ujson import UjsonProvider

app = Flask(__name__)
app.json = UjsonProvider(app)