Closed tomjeannesson closed 1 year ago
It seems the latest version of SQLAlchemy is not compatible with pysqlcipher3 and/or sqlite3 anymore. The issue seems related to this https://github.com/sqlalchemy/sqlalchemy/discussions/9379
For now downgrading to an older version of SQLAlchemy fixes the issue. Or using the patch mentioned in the previous thread, but I didn't test this.
Ok thanks, I'll just stick with SQLAlchemy < 2.0.0 for now.
With this library https://github.com/coleifer/sqlcipher3 it seems to work with the SQLAlchemy 2.0.9
Updated instructions in documentation
Hello, I get the following error when executing
db = Db(db_uri=db_uri, password=password)
.I am using:
Works fine with
SQLAlchemy==1.4.46
. Any ideas?