code/change/load.py
2024-09-27 21:57:32 +08:00

8 lines
118 B
Python

import shelve
#初始化数据库文件
with shelve.open('main') as db:
db['bin_name'] = 1
db.close()
exit()