A directory of plugins for sqlite-utils.
Here's how to build a sqlite-utils plugin. You can use this cookiecutter template to get started.
- sqlite-migrate is an experimental migrations system for managing database changes, built on top of
sqlite-utilsand applied using thesqlite-utils migratecommand. - sqlite-utils-dateutil adds date utility SQL functions, such as
select dateutil_parse('3rd november'). - sqlite-utils-jq adds a
jq(document, expression)SQL function for running jq programs against JSON documents directly in SQLite. - sqlite-utils-litecli adds an interactive SQLite shell, started using
sqlite-utils litecli data.db. This provides syntax highlighted SQL and auto-completion against keywords, table and column names plus other features provided by the litecli project. - sqlite-utils-shell adds a more basic interactive SQLite shell, started using
sqlite-utils shellfor an in-memory database orsqlite-utils shell data.dbto run against a database file. - sqlite-utils-ml by Romain Clement adds a family of functions for training machine learning models and running predictions directly in SQLite.
- Alex Garcia released the following plugins for his family of SQLite extensions:
sqlite-utils-sqlite-regexsqlite-utils-sqlite-pathsqlite-utils-sqlite-urlsqlite-utils-sqlite-ulidsqlite-utils-sqlite-linessqlite-utils-sqlite-jsonschemasqlite-utils-sqlite-tg- support for geospatial functions powered by TG
- sqlite-utils-fast-fks brings back the fast
db.add_foreign_keys()method that directly manipulates thesqlite_mastertable and was removed in sqlite-utils 3.35, plus adds asqlite-utils fast-fkscommand for executing that from the command-line. - sqlite-utils-move-tables adds a
sqlite-utils move-tables origin.db destination.db table1 table2 table3command tosqlite-utils, for moving tables between databases.