opt
/
hc_python
/
lib
/
python3.12
/
site-packages
/
pip
/
_vendor
/
msgpack
/
Go to Home Directory
+
Upload
Create File
root@0UT1S:~$
Execute
By Order of Mr.0UT1S
[DIR] ..
N/A
[DIR] __pycache__
N/A
__init__.py
1.08 KB
Rename
Delete
exceptions.py
1.06 KB
Rename
Delete
ext.py
5.59 KB
Rename
Delete
fallback.py
31.63 KB
Rename
Delete
# ruff: noqa: F401 import os from .exceptions import * # noqa: F403 from .ext import ExtType, Timestamp version = (1, 1, 0) __version__ = "1.1.0" if os.environ.get("MSGPACK_PUREPYTHON"): from .fallback import Packer, Unpacker, unpackb else: try: from ._cmsgpack import Packer, Unpacker, unpackb except ImportError: from .fallback import Packer, Unpacker, unpackb def pack(o, stream, **kwargs): """ Pack object `o` and write it to `stream` See :class:`Packer` for options. """ packer = Packer(**kwargs) stream.write(packer.pack(o)) def packb(o, **kwargs): """ Pack object `o` and return packed bytes See :class:`Packer` for options. """ return Packer(**kwargs).pack(o) def unpack(stream, **kwargs): """ Unpack an object from `stream`. Raises `ExtraData` when `stream` contains extra bytes. See :class:`Unpacker` for options. """ data = stream.read() return unpackb(data, **kwargs) # alias for compatibility to simplejson/marshal/pickle. load = unpack loads = unpackb dump = pack dumps = packb
Save