Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

✨ Update ORJSONResponse to support non str keys and serializing Numpy arrays #3892

Merged
merged 8 commits into from Sep 2, 2022
2 changes: 1 addition & 1 deletion fastapi/responses.py
Expand Up @@ -31,4 +31,4 @@ class ORJSONResponse(JSONResponse):

def render(self, content: Any) -> bytes:
assert orjson is not None, "orjson must be installed to use ORJSONResponse"
return orjson.dumps(content)
return orjson.dumps(content, option=orjson.OPT_NON_STR_KEYS)