I get the following error, when I try to use SQLCipher. I'm following a tutorial, which can be found here: https://charlesleifer.com/blog/encrypted-sqlite-databases-with-python-and-sqlcipher/
I copied the first 2 lines which are:
>>> from pysqlcipher3 import dbapi2 as sqlcipher
>>> db = sqlcipher.connect('testing.db')
And I get the following error:
ImportError: cannot import name 'dbapi2' from partially initialized module 'sqlcipher' (most likely due to a circular import) (C:\Users\Vlad\Desktop\Coding\sqlcipher.py)
Does anyone know what it means? And how do I fix it?