├── .github └── workflows │ ├── docs.yaml │ ├── lint.yaml │ ├── test.yml │ └── wheel.yml ├── .gitignore ├── .readthedocs.yaml ├── COPYING ├── ChangeLog.rst ├── DEVELOP.md ├── MANIFEST.in ├── Makefile ├── README.md ├── SECURITY.md ├── benchmark └── benchmark.py ├── docker ├── buildwheel.sh ├── runtests.sh └── shared.env ├── docs ├── Makefile ├── _static │ └── README.txt ├── advanced.rst ├── api.rst ├── conf.py ├── index.rst └── requirements.txt ├── msgpack ├── __init__.py ├── _cmsgpack.pyx ├── _packer.pyx ├── _unpacker.pyx ├── exceptions.py ├── ext.py ├── fallback.py ├── pack.h ├── pack_template.h ├── sysdep.h ├── unpack.h ├── unpack_container_header.h ├── unpack_define.h └── unpack_template.h ├── pyproject.toml ├── requirements.txt ├── setup.py └── test ├── test_buffer.py ├── test_case.py ├── test_except.py ├── test_extension.py ├── test_format.py ├── test_limits.py ├── test_memoryview.py ├── test_newspec.py ├── test_obj.py ├── test_pack.py ├── test_read_size.py ├── test_seq.py ├── test_sequnpack.py ├── test_stricttype.py ├── test_subtype.py ├── test_timestamp.py └── test_unpack.py /.github/workflows/docs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msgpack/msgpack-python/HEAD/.github/workflows/docs.yaml -------------------------------------------------------------------------------- /.github/workflows/lint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msgpack/msgpack-python/HEAD/.github/workflows/lint.yaml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msgpack/msgpack-python/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.github/workflows/wheel.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msgpack/msgpack-python/HEAD/.github/workflows/wheel.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msgpack/msgpack-python/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msgpack/msgpack-python/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msgpack/msgpack-python/HEAD/COPYING -------------------------------------------------------------------------------- /ChangeLog.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msgpack/msgpack-python/HEAD/ChangeLog.rst -------------------------------------------------------------------------------- /DEVELOP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msgpack/msgpack-python/HEAD/DEVELOP.md -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msgpack/msgpack-python/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msgpack/msgpack-python/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msgpack/msgpack-python/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msgpack/msgpack-python/HEAD/SECURITY.md -------------------------------------------------------------------------------- /benchmark/benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msgpack/msgpack-python/HEAD/benchmark/benchmark.py -------------------------------------------------------------------------------- /docker/buildwheel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msgpack/msgpack-python/HEAD/docker/buildwheel.sh -------------------------------------------------------------------------------- /docker/runtests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msgpack/msgpack-python/HEAD/docker/runtests.sh -------------------------------------------------------------------------------- /docker/shared.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msgpack/msgpack-python/HEAD/docker/shared.env -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msgpack/msgpack-python/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/_static/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msgpack/msgpack-python/HEAD/docs/_static/README.txt -------------------------------------------------------------------------------- /docs/advanced.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msgpack/msgpack-python/HEAD/docs/advanced.rst -------------------------------------------------------------------------------- /docs/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msgpack/msgpack-python/HEAD/docs/api.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msgpack/msgpack-python/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msgpack/msgpack-python/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msgpack/msgpack-python/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /msgpack/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msgpack/msgpack-python/HEAD/msgpack/__init__.py -------------------------------------------------------------------------------- /msgpack/_cmsgpack.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msgpack/msgpack-python/HEAD/msgpack/_cmsgpack.pyx -------------------------------------------------------------------------------- /msgpack/_packer.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msgpack/msgpack-python/HEAD/msgpack/_packer.pyx -------------------------------------------------------------------------------- /msgpack/_unpacker.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msgpack/msgpack-python/HEAD/msgpack/_unpacker.pyx -------------------------------------------------------------------------------- /msgpack/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msgpack/msgpack-python/HEAD/msgpack/exceptions.py -------------------------------------------------------------------------------- /msgpack/ext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msgpack/msgpack-python/HEAD/msgpack/ext.py -------------------------------------------------------------------------------- /msgpack/fallback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msgpack/msgpack-python/HEAD/msgpack/fallback.py -------------------------------------------------------------------------------- /msgpack/pack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msgpack/msgpack-python/HEAD/msgpack/pack.h -------------------------------------------------------------------------------- /msgpack/pack_template.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msgpack/msgpack-python/HEAD/msgpack/pack_template.h -------------------------------------------------------------------------------- /msgpack/sysdep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msgpack/msgpack-python/HEAD/msgpack/sysdep.h -------------------------------------------------------------------------------- /msgpack/unpack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msgpack/msgpack-python/HEAD/msgpack/unpack.h -------------------------------------------------------------------------------- /msgpack/unpack_container_header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msgpack/msgpack-python/HEAD/msgpack/unpack_container_header.h -------------------------------------------------------------------------------- /msgpack/unpack_define.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msgpack/msgpack-python/HEAD/msgpack/unpack_define.h -------------------------------------------------------------------------------- /msgpack/unpack_template.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msgpack/msgpack-python/HEAD/msgpack/unpack_template.h -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msgpack/msgpack-python/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | Cython==3.2.1 2 | setuptools==78.1.1 3 | build 4 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msgpack/msgpack-python/HEAD/setup.py -------------------------------------------------------------------------------- /test/test_buffer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msgpack/msgpack-python/HEAD/test/test_buffer.py -------------------------------------------------------------------------------- /test/test_case.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msgpack/msgpack-python/HEAD/test/test_case.py -------------------------------------------------------------------------------- /test/test_except.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msgpack/msgpack-python/HEAD/test/test_except.py -------------------------------------------------------------------------------- /test/test_extension.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msgpack/msgpack-python/HEAD/test/test_extension.py -------------------------------------------------------------------------------- /test/test_format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msgpack/msgpack-python/HEAD/test/test_format.py -------------------------------------------------------------------------------- /test/test_limits.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msgpack/msgpack-python/HEAD/test/test_limits.py -------------------------------------------------------------------------------- /test/test_memoryview.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msgpack/msgpack-python/HEAD/test/test_memoryview.py -------------------------------------------------------------------------------- /test/test_newspec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msgpack/msgpack-python/HEAD/test/test_newspec.py -------------------------------------------------------------------------------- /test/test_obj.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msgpack/msgpack-python/HEAD/test/test_obj.py -------------------------------------------------------------------------------- /test/test_pack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msgpack/msgpack-python/HEAD/test/test_pack.py -------------------------------------------------------------------------------- /test/test_read_size.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msgpack/msgpack-python/HEAD/test/test_read_size.py -------------------------------------------------------------------------------- /test/test_seq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msgpack/msgpack-python/HEAD/test/test_seq.py -------------------------------------------------------------------------------- /test/test_sequnpack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msgpack/msgpack-python/HEAD/test/test_sequnpack.py -------------------------------------------------------------------------------- /test/test_stricttype.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msgpack/msgpack-python/HEAD/test/test_stricttype.py -------------------------------------------------------------------------------- /test/test_subtype.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msgpack/msgpack-python/HEAD/test/test_subtype.py -------------------------------------------------------------------------------- /test/test_timestamp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msgpack/msgpack-python/HEAD/test/test_timestamp.py -------------------------------------------------------------------------------- /test/test_unpack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msgpack/msgpack-python/HEAD/test/test_unpack.py --------------------------------------------------------------------------------