Python CLI utility and library for manipulating SQLite databases https://sqlite-utils.datasette.io
  • Python 99.7%
  • C 0.2%
Find a file
Simon Willison 0aa28293ad Fix compatibility with SQLite prior to 3.16.0
pragma_index_info() and pragma_index_list() were introduced in 3.16.0 but the
version of SQLite running in Travis CI is earlier than that, hence the test
failures:

https://travis-ci.com/simonw/sqlite-utils/jobs/137617744
2018-08-01 08:29:53 -07:00
docs table.create_index(columns, index_name) method 2018-08-01 08:20:44 -07:00
sqlite_utils Fix compatibility with SQLite prior to 3.16.0 2018-08-01 08:29:53 -07:00
tests table.create_index(columns, index_name) method 2018-08-01 08:20:44 -07:00
.gitignore Initial project layout + database table creation tools 2018-07-28 06:46:17 -07:00
.travis.yml Preparing v0.2, first release to PyPI 2018-07-28 17:42:41 -07:00
README.md Fleshed out README 2018-07-31 08:38:50 -07:00
setup.py enable_fts(), populate_fts() and search() methods 2018-07-31 09:19:20 -07:00

sqlite-utils

PyPI Travis CI Documentation Status License

Python utility functions for manipulating SQLite databases

pip3 install sqlite-utils

Documentation: https://sqlite-utils.readthedocs.io/

Related projects: