
[英]pysqlcipher app fails with 64 bit python and pyinstaller but 32 bit ok DLL Load failed
基于 Windows 11,我有一个使用 pysqlcipher 的小应用程序。 我用 Python 3.8.3 x86 和 Python 3.9.4 x64 编译了 pysqlcipher。 该应用程序在开发机器上都运行良好。 我使用 pyinstaller 编译为 exe,而不是 onefile ...
[英]pysqlcipher app fails with 64 bit python and pyinstaller but 32 bit ok DLL Load failed
基于 Windows 11,我有一个使用 pysqlcipher 的小应用程序。 我用 Python 3.8.3 x86 和 Python 3.9.4 x64 编译了 pysqlcipher。 该应用程序在开发机器上都运行良好。 我使用 pyinstaller 编译为 exe,而不是 onefile ...
[英]Install pysqlcipher3 windows
我需要在我的 windows 计算机上安装 pysqlcipher 但是当我这样做时: 我有: 我试图用 git 安装它,我有: 我用python3试过了,但它是一样的。 我认为它就像这样的问题: 安装 pysqlcipher3 时出现问题,但我没有成功解决问题有人可以帮助我吗? ...
[英]Problem Creating One File exe with pyinstaller and pysqlcipher
我正在尝试创建一个 file.exe 以在任何 windows 机器上运行,但我遇到了 pysqlcipher 的问题。 我已经回到了一些基本代码,这些代码只是用一个密钥创建了一个简单的数据库,在我的开发机器上,无论我使用 python 文件还是编译的 exe,都可以正常工作。 我似乎缺少库、路径或 ...
[英]Python aiosqlite override Connection with pysqlcipher3
我看到了一个 peewee 的例子,其中 pysqlcipher 被用作管理数据库文件的连接器,而不是 sqlite 模块。 太好了,甚至还有peewee 的异步版本,但我不需要(或不想)使用 peewee 的 object model。 在 peewee 中,连接器的初始化如下: 我想用aiosq ...
[英]Using SQLCipher in Python - the easy way
我正在编写一个 Python 实用程序,它应该适用于加密的 SQLite 数据库。 最终,我会将此类实用程序转换为可执行文件,以便更轻松地发送到我团队的 rest。 我读了很多关于 SQLCipher 的页面,但他们都在谈论编译东西并在 Windows 中安装 - 真的,我很难完全理解这一点,似乎他 ...
[英]Issue in installing pysqlcipher3
因此,即使pip install pysqlcipher3工作返回了Successfully installed pysqlcipher3 ,它也没有。 根据我的研究,对于尝试安装 Sqlcipher 的 Windows 用户来说,这似乎是一个常见问题。 尝试 #1 首先,我尝试从 githu ...
[英]"ModuleNotFoundError: No module named 'pysqlcipher3'" error while using Python 3.7 on windows 10
我正在尝试使用 Python 3.7 解密一个数据库文件。 要解密它,我必须使用 python 3.7 的pysqlcipher3版本。 要安装它,我尝试使用这两个命令: 和 并且这两个命令都显示成功安装了pysqlcipher包。 但是,当我尝试使用以下行在我的 Python 项目中导入p ...
[英]'sqlite3.h': No such file or directory
我试图在我的Windows 10计算机上安装Python 2.7的pysqlite模块。 我发出了以下命令: 安装按常规运行,直到遇到错误: c:\\ users \\ xaresys \\ appdata \\ local \\ temp \\ pip-build-xleo ...
[英]How to get Pysqlcipher to detect openssl during installation
我正在尝试安装pysqlcipher以使我能够在python中使用sqlcipher函数。 在安装pysqlcipher时出现错误提示 致命错误:无法检测到OpenSSL! 然后我尝试安装openssl 我收到一个成功的消息 成功安装cffi-1.6.0密码 ...
[英]How to build SQL Cipher Python Binding for Windows
我在Windows计算机上为SQL密码构建python绑定时遇到问题。 我已经成功地为Macintosh建立了python绑定。 我想在Mac和PC上都使用python脚本。 我是python的新手,不完全了解为什么它会失败,但是我开始尝试调试setup.py脚本,发现错误在第147行 ...
[英]Integrate Djpeewee into Django to encrypt sqlite3 database
我想加密我的Django项目使用的sqlite3数据库。 为此,我想使用pysqlcipher。 因为我还没有找到将pysqlcipher与Django轻松集成的任何方法,所以我开始怀疑是否有可能将Djpeewee集成到我现有的Django项目中,然后通过Djpeewee加密和解密我的s ...
[英]How to use pysqlcipher with Django?
我想使用sqlcipher及其python绑定pysqlcipher( https://pypi.python.org/pypi/pysqlcipher )对Django使用的sqlite3数据库进行加密。 将其实现到Django中的最佳方法是什么? 完全可行吗?您会通过信号,路由器还是 ...
[英]Unable to open pysqlcipher-encrypted dictionary in command-line sqlcipher tool
我能够创建一个使用加密数据库pysqlcipher ,并与pysqlcipher打开它,但不知何故,我无法打开使用同一个数据库sqlcipher从源代码安装sqlcipher当安装在Mac OS X command0line工具。 对于安装,我按照此处列出的步骤操作: https : //gi ...