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-Experimental`)
circup install chumicro_msgpack
# MicroPython
mpremote mip install github:ChuMicro/ChuMicro-Bundle-Experimental/chumicro_msgpack
# CPython
pip install chumicro-msgpack-experimental
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
- PyPI: chumicro-msgpack
- Bundle: ChuMicro-Bundle (CircuitPython & MicroPython)
- Experimental bundle: ChuMicro-Bundle-Experimental
- Source: libraries/msgpack
License
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file chumicro_msgpack_experimental-0.2.2.tar.gz.
File metadata
- Download URL: chumicro_msgpack_experimental-0.2.2.tar.gz
- Upload date:
- Size: 21.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c61871f6c3c3e42784b36e843d9f0d61afcd086da8ea237387c7ba1e2db50465
|
|
| MD5 |
9da7d80850c57da66c85f163fb912011
|
|
| BLAKE2b-256 |
8b4a1c6e9e47472eda396690492b09b7565b49e633a13a65c19244c40d2ecac6
|
Provenance
The following attestation bundles were made for chumicro_msgpack_experimental-0.2.2.tar.gz:
Publisher:
release.yml on ChuMicro/ChuMicro
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
chumicro_msgpack_experimental-0.2.2.tar.gz -
Subject digest:
c61871f6c3c3e42784b36e843d9f0d61afcd086da8ea237387c7ba1e2db50465 - Sigstore transparency entry: 2199635644
- Sigstore integration time:
-
Permalink:
ChuMicro/ChuMicro@bd5a08ba89ce08ea17dd027ff20cebf5d20244f8 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/ChuMicro
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@bd5a08ba89ce08ea17dd027ff20cebf5d20244f8 -
Trigger Event:
push
-
Statement type:
File details
Details for the file chumicro_msgpack_experimental-0.2.2-py3-none-any.whl.
File metadata
- Download URL: chumicro_msgpack_experimental-0.2.2-py3-none-any.whl
- Upload date:
- Size: 8.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
83c6e6418fd527d2fd7afadba596fc249c68647d51815fc9c5bced9788268a58
|
|
| MD5 |
3a2f225f45ef4a4915aeb5b2f03a5959
|
|
| BLAKE2b-256 |
b37c902029d142efe8187d037657c84fe12af39e4933e981b81ec90b7d431068
|
Provenance
The following attestation bundles were made for chumicro_msgpack_experimental-0.2.2-py3-none-any.whl:
Publisher:
release.yml on ChuMicro/ChuMicro
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
chumicro_msgpack_experimental-0.2.2-py3-none-any.whl -
Subject digest:
83c6e6418fd527d2fd7afadba596fc249c68647d51815fc9c5bced9788268a58 - Sigstore transparency entry: 2199635718
- Sigstore integration time:
-
Permalink:
ChuMicro/ChuMicro@bd5a08ba89ce08ea17dd027ff20cebf5d20244f8 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/ChuMicro
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@bd5a08ba89ce08ea17dd027ff20cebf5d20244f8 -
Trigger Event:
push
-
Statement type: