Hi, I am trying to use Sqlcipher in Django. I already added sqlcipher in INSTALLED_APPS . Now, I am having problem to set database engine to sqlcipher.backend . Previously it was,
'ENGINE': 'django.db.backends.sqlite3'
I changed it to,
'ENGINE': 'sqlcipher.backend'
Error is showing,
Error was: No module named backend.base
I installed it using, pip install git+http://github.com/codasus/django-sqlcipher#egg=sqlcipher
Probably, I am missing something. Please help me out. Thanks.
Hi, I am trying to use Sqlcipher in Django. I already added sqlcipher in INSTALLED_APPS . Now, I am having problem to set database engine to sqlcipher.backend . Previously it was,
'ENGINE': 'django.db.backends.sqlite3'I changed it to,
'ENGINE': 'sqlcipher.backend'Error is showing,
Error was: No module named backend.baseI installed it using,
pip install git+http://github.com/codasus/django-sqlcipher#egg=sqlcipherProbably, I am missing something. Please help me out. Thanks.