pickle を使ってPythonオブジェクトをそのままシリアライズしてしまえばいいのではないでしょうか。
python
1In [1]: from collections import OrderedDict
2In [2]: import pickle
3In [3]: d = OrderedDict(a=1, b=OrderedDict(c="c",d=True))
4In [4]: d
5Out[4]: OrderedDict([('a', 1), ('b', OrderedDict([('c', 'c'), ('d', True)]))])
6In [5]: with open("somefile.pkl", "wb") as f:
7 ...: pickle.dump(d, f)
8In [6]: with open("somefile.pkl", "rb") as f:
9 ...: dd = pickle.load(f)
10In [7]: dd
11Out[7]: OrderedDict([('a', 1), ('b', OrderedDict([('c', 'c'), ('d', True)]))])
12
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/05/21 17:19