code/change/load.py
2024-09-26 18:01:24 +08:00

8 lines
118 B
Python

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