5 lines
82 B
Python
5 lines
82 B
Python
import pickle
|
|
|
|
pick = pickle.dumps({'a': 'b', 'c': 'd'})
|
|
raw = pickle.loads(pick)
|