Complete the code to import the MessagePack library in Python.
import [1]
The correct library name to import MessagePack in Python is msgpack.
Complete the code to pack a Python dictionary into MessagePack format.
packed = msgpack.[1]({'key': 'value'})
The packb function converts Python objects into MessagePack binary format.
Fix the error in unpacking MessagePack data back to Python object.
data = msgpack.[1](packed_data, raw=False)
The unpackb function is used to convert MessagePack binary data back to Python objects.
Fill both blanks to create a MessagePack packed object and then unpack it correctly.
packed = msgpack.[1](obj) data = msgpack.[2](packed, raw=False)
Use packb to pack and unpackb to unpack MessagePack data.
Fill all three blanks to pack a dictionary, unpack it, and access the value of key 'name'.
packed = msgpack.[1]({'name': 'Alice'}) data = msgpack.[2](packed, raw=False) value = data[[3]]
First pack with packb, then unpack with unpackb, and access the dictionary value with the key 'name'.