how to keep order of sorted dictionary passed to jsonify() function?

Add this config line to your code after the app definition:

app = Flask(__name__)
app.config['JSON_SORT_KEYS'] = False

Update: For Flask 2.3 and later use this:

app.json.sort_keys = False

Leave a Comment