Remove sqlean.py support (#772)

Closes #771, refs #769
This commit is contained in:
Simon Willison 2026-07-05 16:00:52 -07:00 committed by GitHub
commit afbfd95273
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
7 changed files with 11 additions and 29 deletions

View file

@ -2184,7 +2184,7 @@ The ``db.iterdump()`` method returns a sequence of SQL strings representing a co
This uses the `sqlite3.Connection.iterdump() <https://docs.python.org/3/library/sqlite3.html#sqlite3.Connection.iterdump>`__ method.
If you are using ``pysqlite3`` or ``sqlean.py`` the underlying method may be missing. If you install the `sqlite-dump <https://pypi.org/project/sqlite-dump/>`__ package then the ``db.iterdump()`` method will use that implementation instead:
If you are using ``pysqlite3`` the underlying method may be missing. If you install the `sqlite-dump <https://pypi.org/project/sqlite-dump/>`__ package then the ``db.iterdump()`` method will use that implementation instead:
.. code-block:: bash