diff --git a/Messaging/messagepackex.py b/Messaging/messagepackex.py new file mode 100644 index 0000000..3aae70a --- /dev/null +++ b/Messaging/messagepackex.py @@ -0,0 +1,9 @@ +import umsgpack + +binary = umsgpack.packb({"compact": True, "schema": [0, False]}) + +obj = umsgpack.unpackb(binary) + +print(obj) + +print(obj['schema']) \ No newline at end of file