文件名称:sqlite-shelve:在SQLite中实现线程安全的搁置后端
文件大小:13KB
文件格式:ZIP
更新时间:2024-03-10 09:30:10
Python
斜架子 在SQLite中实现类似于货架的存储 包含此模块的应用程序可以像使用Shelve类一样利用SQLiteShelve类的接口。 在大多数普通情况下,使用内置扩展模块的应用程序可以通过以下操作切换到SQLiteShelve: import sqliteshelve as shelve d = shelve.open(filename) # opens existing SQLite3 database if it exists. Creates a new one if it does not d[key] = data # store data at key (overwrites old data if # using an existing key) data = d[key] # retrieve a COPY of data at
【文件预览】:
sqlite-shelve-master
----playbooks()
--------setup.yml(150B)
----Vagrantfile(3KB)
----.github()
--------workflows()
----shelve-tool(8KB)
----sqliteshelve()
--------__init__.py(3KB)
----setup.py(533B)
----README.md(1KB)
----ez_setup.py(10KB)
----tests()
--------test_sqliteshelve.py(3KB)
----.gitignore(44B)