sqlite-utils 4.1 发布,新增代码行生成与严格模式支持

sqlite-utils 4.1

精选理由

处理 SQLite 数据更灵活了,4.1 版让你直接用 Python 代码生成行,还能轻松切换严格模式,值得升级。

AI 摘要

sqlite-utils 4.1 是 4.0 后的首个小版本更新,新增 --code 选项允许用户通过 Python 代码块或 .py 文件生成插入行。新增 --type 选项可覆盖自动推断的列类型,例如将 ZIP 码强制存为 TEXT 以保留前导零。添加了 table.drop_index() 方法和 sqlite-utils drop-index 命令,支持 --ignore 忽略缺失索引。sqlite-utils query 现在可通过标准输入读取 SQL 查询(传入 -)。upsert 和 transform 命令也得到增强,upsert 可自动推断已有表的主键,transform 支持通过 --strict 或 --no-strict 切换表的严格模式。

原文 · Simon Willison’s Weblog

sqlite-utils 4.1

Release: sqlite-utils 4.1 The first dot-release since 4.0 a few days ago , introducing a number of minor new features. sqlite-utils insert and sqlite-utils upsert now accept a --code option for providing a block of Python code (or a path to a .py file) that defines a rows() function or rows iterable of rows to insert, as an alternative to importing from a file. ( #684 ) sqlite-utils already had features that allow you to pass blocks of Python code as CLI arguments, for example this one for the sqlite-utils convert command: sqlite - utils convert content . db articles headline ' def convert ( value ): return value . upper ()' Allowing blocks of code to generate new rows directly was on obvious extension of that pattern: sqlite - utils insert data . db creatures - - code ' def rows (): yield { "id" : 1 , "name" : "Cleo" } yield { "id" : 2 , "name" : "Suna" } ' - - pk id sqlite-utils insert and sqlite-utils upsert now accept --type column-name type to override the type automatically chosen when the table is created . This is useful for CSV or TSV columns such as ZIP codes that look like integers but should be stored as TEXT to preserve leading zeros. ( #131 ) A long-standing feature request which turned out to be a simple implementation . New table.drop_index(name) method and sqlite-utils drop-index command for dropping an index by name. Both accept ignore=True / --ignore to ignore a missing index. ( #626 ) sqlite-utils query can now read the SQL query from standard input by passing - in place of the query, for example echo "select * from dogs" | sqlite-utils query dogs.db - . ( #765 ) Two more small features. I had Codex review all open issues and highlight the easiest ones! sqlite-utils upsert can now infer the primary key of an existing table, so --pk can be omitted when upserting into a table that already has a primary key. Another Codex suggestion, an obvious missing CLI feature from a Python library improvement that shipped in the 4.0 release. table.transform() and table.transform_sql() now accept strict=True or strict=False to change a table’s SQLite strict mode . Omitting the option preserves the existing mode. ( #787 ) The sqlite-utils transform command now accepts --strict and --no-strict to change a table’s strict mode. ( #787 ) These two were inspired by Prefer STRICT tables in SQLite by Evan Hahn, which did the rounds on Hacker News today. Evan pointed out that: Unfortunately, I don’t think there’s a way to ALTER a table to make it strict. I think you have to copy the data out of the non-strict table into the strict one. That's exactly what the sqlite-utils transform mechanism does, so I extended it to add the ability to switch tables from strict to non-strict and vice-versa. Here's the GPT-5.6 Sol xhigh Codex transcript I used to implement those new strict table features. One of the most useful prompts I ran was this one: use uv run python -c and manually exercise the new .transform(strict=) option, see if you can find any edge-cases or bugs Effectively telling the model to manually test its work, outside of the automated tests it had already written. This turned up two minor issues that we then fixed. Tags: projects , python , sqlite , sqlite-utils , annotated-release-notes , ai-assisted-programming

sqlite-utils 4.1 发布,新增代码行生成与严格模式支持 · AI 热点