ormsgpack icon indicating copy to clipboard operation
ormsgpack copied to clipboard

Msgpack serialization/deserialization library for Python, written in Rust using PyO3 and rust-msgpack. Reboot of orjson. msgpack.org[Python]

Results 13 ormsgpack issues
Sort by recently updated
recently updated
newest added

I added a bit of return value checking on a couple fallible calls to C functions. It would probably be more correct to throw proper python errors, but some checking...

Hi, I was wondering how "canonical" `ormsgpack` is: i.e. will any two equal objects result in the same serialized bytes? I found this issue (https://github.com/msgpack/msgpack/issues/215) that says the `msgpack` specification...

I have a dictionary where keys are strings and the value is an instance of a Pydantic BaseModel - after running the packDB is there a way to save that...