I would like to encrypt a sqlite3 database that is used by my Django project. For this purpose I would like to use pysqlcipher.
Since I haven't found any ways to easily integrate pysqlcipher with Django I started wondering if it would be possible to integrate Djpeewee into my existing Django project and then through Djpeewee encrypt and decrypt my sqlite3 database since originally PeeWee supports sqlcipher encryptions.
Is this possible?