My Python program uses the standard Python SQLite database (import sqlite3). All works, I want to cypher the database. I opened it with DB Browser (sqlitebrowser.org) that uses SQLCipher 3/4 and I ciphered it using a key (SQLCipher version 3). Which library must I use to reuse the most part of it?
I understand I need to import the new standard library (SQLCipher) and use code to connect with the database with a key. I don't want to rewrite my code if it's possible. How to do that?