Skip to main content

Compact MessagePack serialization for CircuitPython, MicroPython, and CPython — delegates to the native C module when available.

Project description

chumicro-msgpack

Binary serialization that's typically 30–50 % smaller than JSON.

The subset of MessagePack that fits on a 256 KB board — 32-bit ints, single-precision floats, 16-bit lengths. Wire-compatible with the PyPI msgpack library when it's configured for the same subset (use_single_float=True); on CircuitPython firmware that ships the native msgpack C module, encoding and decoding delegate to the C path automatically.


Part of the ChuMicro family — small, focused Python libraries for microcontrollers and laptops. Browse all libraries.

Install

# CircuitPython (after `circup bundle-add ChuMicro/ChuMicro-Bundle`)
circup install chumicro-msgpack

# MicroPython
mpremote mip install github:ChuMicro/ChuMicro-Bundle/chumicro_msgpack

# CPython
pip install chumicro-msgpack

For bundle setup, pre-compiled .mpy bundles, the experimental channel, and details on PyPI naming, see the chumicro INSTALL guide.

Quick example

from chumicro_msgpack import packb, unpackb

settings = {0: "MyNetwork", 1: "secret", 2: True}

data = packb(settings)       # compact binary bytes
print(len(data))             # much smaller than JSON

restored = unpackb(data)
print(restored)              # {0: 'MyNetwork', 1: 'secret', 2: True}

What's included

Stream-based API (preferred on microcontrollers)

Symbol Description
pack(obj, stream) Pack an object to a writable stream (streams without an intermediate buffer on the native CircuitPython encoder; on the pure path it encodes to bytes first)
unpack(stream) Unpack one object from a readable stream

Bytes-based API

Symbol Description
packb(obj) Pack a Python object to msgpack bytes (allocates a temporary buffer)
unpackb(data) Unpack msgpack bytes (bytes, bytearray, or memoryview) to a Python object

Use pack/unpack when writing to files, sockets, or NVM. Use packb/unpackb when you need the encoded bytes in memory (e.g., to measure length before framing).

Supported types

Python type msgpack format Limit
None nil
True / False bool
int fixint, int8/16/32, uint8/16/32 -2^31 ≤ value ≤ 2^32 − 1
float float32 single precision (~7 decimal digits)
str fixstr, str8, str16 up to 65 535 bytes UTF-8
bytes / bytearray bin8, bin16 up to 65 535 bytes
list / tuple fixarray, array16 up to 65 535 elements
dict fixmap, map16 up to 65 535 entries

Values outside these limits raise OverflowError on encode. Tags outside the subset (float64 0xcb, int64 0xd3, uint64 0xcf, the *32-length variants) raise a descriptive ValueError on decode that names the offending tag.

tuple decodes back as list — msgpack has no tuple type. dict keys may be any supported type, including int (no strict_map_key enforcement). Ext types (timestamps, custom classes) are not supported in either direction.

Cross-runtime compatibility

Direction Works? Notes
chumicro device writes → host reads ✓ always Bytes are spec-compliant; any standard reader decodes them
chumicro device writes → chumicro device reads ✓ always The common case; full round-trip
Host writes with PyPI msgpack → chumicro device reads ✓ if host stays in subset See recipe below
Host writes default PyPI msgpack → chumicro device reads PyPI defaults to float64, decodes raise on device

Host-side recipe — when a host script needs to produce bytes a chumicro device will read:

import msgpack  # standard PyPI library
data = msgpack.packb(obj, use_single_float=True)
# Caller's job: keep ints in [-2**31, 2**32-1] and lengths under 65 536.

use_single_float=True switches PyPI msgpack from float64 to float32, matching what chumicro reads. This is what chumicro-workspace uses to write runtime_config.msgpack for the device.

Where this fits

Leaf — no upstream ChuMicro deps. Used directly by chumicro-config to decode /runtime_config.msgpack on the device, and by host-side workspace tooling to write it.

Platform support

Runtime Implementation
CircuitPython (hardware) Delegates to the native C msgpack module; pure-Python code is never loaded
CircuitPython (unix port) Pure-Python encoder/decoder (native module not compiled in)
MicroPython Pure-Python encoder/decoder
CPython Pure-Python encoder/decoder

Examples

Example What it shows
packb_basic.py Pack and unpack a settings dict
packb_size_comparison.py Compare msgpack vs JSON size for the same dict
stream_roundtrip.py Use the stream-based pack / unpack API with BytesIO
circuitpython_nvm_settings.py Store and load settings in non-volatile memory (hardware)

Contributing

Working on chumicro-msgpack itself? Clone the mono-repo if you haven't already — the rest of the workflow assumes you're inside that workspace.

pip install -e .[test]
pytest tests/                  # host-side tests
pytest functional_tests/       # on-device tests (needs a board registered in devices.yml)

Register a board before running functional tests: chumicro-workspace add-device <id> --address <port>.

Docs

📖 Stable docs · Experimental docs

Find this library

License

MIT

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

chumicro_msgpack_experimental-0.2.1.tar.gz (29.6 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

chumicro_msgpack_experimental-0.2.1-py3-none-any.whl (11.0 kB view details)

Uploaded Python 3

File details

Details for the file chumicro_msgpack_experimental-0.2.1.tar.gz.

File metadata

File hashes

Hashes for chumicro_msgpack_experimental-0.2.1.tar.gz
Algorithm Hash digest
SHA256 65c89f82498dfd904d634e75ab2280846d5ccfa9f924f4371b7662282a78cb56
MD5 60384db1fc3b57a3fbcc188adcc9f516
BLAKE2b-256 b1545c35e33f5ddaea08fb8e09bd342a2fea4e32b7cd52db7e6d6e639fe79046

See more details on using hashes here.

File details

Details for the file chumicro_msgpack_experimental-0.2.1-py3-none-any.whl.

File metadata

File hashes

Hashes for chumicro_msgpack_experimental-0.2.1-py3-none-any.whl
Algorithm Hash digest
SHA256 83a34a45e8272c5b00b229ae7b2c90a0943974355ec2cc4c6e9d7caa1d914f1b
MD5 15ae2854eecb26ef2cca269718b2f9d9
BLAKE2b-256 303d67d8291bd2b599df18176506a3ef9e75641083fe2d292a6c10dd5a7cef65

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page