如题,最近撸了一个小工具file-remark。考虑到数据规模和性能的关系使用json文件的方式存储显得不再合适,于是搜索了一下,尝试使用sqlite数据库来实现。 值得欣喜的是Python是自带sqlite3库的,这回省去一些使用第三方库的麻烦。 废话不多说,直接上代码: import sqlite3 import os from sqlite3.dbapi2 import Connection, Cursor from typing import Any from file_remark.config im…