PICKLE->
platformThe PICKLE->
function decodes some Pickle encoded content contained in a byte array.
The conversion is done using Pyrolite v4.
It can read all pickle protocol versions (0 to 4, so this includes the latest additions made in Python 3.4).
>>> myobject={ 'apple':3.5,'banana':18 }
>>> pickle.dumps(myobject).encode("hex")
'286470300a53276170706c65270a70310a46332e350a73532762616e616e61270a70320a4931380a732e'