python 使用搁置模块进行数据持久化的示例。

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 使用搁置模块进行数据持久化的示例。相关的知识,希望对你有一定的参考价值。

import shelve

d = shelve.open(DATA_FILE, writeback=True)

# creating key if it does not exist 
# is there a function for this already?
try:
  d["records"]
except KeyError:
  d["records"] = []  # initialize list
try:
  d["model"]
except KeyError:
  d["model"] = []  # initialize list

d.close()

以上是关于python 使用搁置模块进行数据持久化的示例。的主要内容,如果未能解决你的问题,请参考以下文章

python中的pickle库

使用python搁置跨平台

如何使用搁置模块保存 pygame 精灵组

PYTHON之路

python入门:shelve模块

Python json & pickle, shelve 模块