Add fastapi code
This commit is contained in:
5
venv/lib/python3.11/site-packages/orjson/__init__.py
Normal file
5
venv/lib/python3.11/site-packages/orjson/__init__.py
Normal file
@ -0,0 +1,5 @@
|
||||
from .orjson import *
|
||||
|
||||
__doc__ = orjson.__doc__
|
||||
if hasattr(orjson, "__all__"):
|
||||
__all__ = orjson.__all__
|
||||
29
venv/lib/python3.11/site-packages/orjson/__init__.pyi
Normal file
29
venv/lib/python3.11/site-packages/orjson/__init__.pyi
Normal file
@ -0,0 +1,29 @@
|
||||
import json
|
||||
from typing import Any, Callable, Optional, Union
|
||||
|
||||
__version__: str
|
||||
|
||||
def dumps(
|
||||
__obj: Any,
|
||||
default: Optional[Callable[[Any], Any]] = ...,
|
||||
option: Optional[int] = ...,
|
||||
) -> bytes: ...
|
||||
def loads(__obj: Union[bytes, bytearray, memoryview, str]) -> Any: ...
|
||||
|
||||
class JSONDecodeError(json.JSONDecodeError): ...
|
||||
class JSONEncodeError(TypeError): ...
|
||||
|
||||
OPT_APPEND_NEWLINE: int
|
||||
OPT_INDENT_2: int
|
||||
OPT_NAIVE_UTC: int
|
||||
OPT_NON_STR_KEYS: int
|
||||
OPT_OMIT_MICROSECONDS: int
|
||||
OPT_PASSTHROUGH_DATACLASS: int
|
||||
OPT_PASSTHROUGH_DATETIME: int
|
||||
OPT_PASSTHROUGH_SUBCLASS: int
|
||||
OPT_SERIALIZE_DATACLASS: int
|
||||
OPT_SERIALIZE_NUMPY: int
|
||||
OPT_SERIALIZE_UUID: int
|
||||
OPT_SORT_KEYS: int
|
||||
OPT_STRICT_INTEGER: int
|
||||
OPT_UTC_Z: int
|
||||
Binary file not shown.
BIN
venv/lib/python3.11/site-packages/orjson/orjson.cpython-311-x86_64-linux-gnu.so
Executable file
BIN
venv/lib/python3.11/site-packages/orjson/orjson.cpython-311-x86_64-linux-gnu.so
Executable file
Binary file not shown.
0
venv/lib/python3.11/site-packages/orjson/py.typed
Normal file
0
venv/lib/python3.11/site-packages/orjson/py.typed
Normal file
Reference in New Issue
Block a user