generated from kgod/ai-review-template
提交
This commit is contained in:
@@ -0,0 +1,32 @@
|
||||
# SPDX-License-Identifier: MPL-2.0
|
||||
# Copyright ijl (2023-2026)
|
||||
|
||||
"""
|
||||
Fast, correct Python JSON library supporting dataclasses, datetimes, and numpy
|
||||
"""
|
||||
|
||||
from .orjson import *
|
||||
from .orjson import __version__
|
||||
|
||||
__all__ = (
|
||||
"__version__",
|
||||
"dumps",
|
||||
"Fragment",
|
||||
"JSONDecodeError",
|
||||
"JSONEncodeError",
|
||||
"loads",
|
||||
"OPT_APPEND_NEWLINE",
|
||||
"OPT_INDENT_2",
|
||||
"OPT_NAIVE_UTC",
|
||||
"OPT_NON_STR_KEYS",
|
||||
"OPT_OMIT_MICROSECONDS",
|
||||
"OPT_PASSTHROUGH_DATACLASS",
|
||||
"OPT_PASSTHROUGH_DATETIME",
|
||||
"OPT_PASSTHROUGH_SUBCLASS",
|
||||
"OPT_SERIALIZE_DATACLASS",
|
||||
"OPT_SERIALIZE_NUMPY",
|
||||
"OPT_SERIALIZE_UUID",
|
||||
"OPT_SORT_KEYS",
|
||||
"OPT_STRICT_INTEGER",
|
||||
"OPT_UTC_Z",
|
||||
)
|
||||
Reference in New Issue
Block a user