rigglemania / pysqlcipher3

Python 3 bindings for SQLCipher
zlib License
138 stars 42 forks source link

Upload to PyPi #1

Closed tfeldmann closed 9 years ago

rigglemania commented 9 years ago

The package is now uploaded: https://pypi.python.org/pypi/pysqlcipher3. I'm not terribly familiar with Python packaging as this is my first package uploaded to PyPi, so let me know if you run into any issues. A good way to verify things are working is to make sure all the unit tests pass after installing pysqlcipher3.

from pysqlcipher3 import test
test.test()
tfeldmann commented 9 years ago

I'm on Mac OS X 10.10.2 and didn't have lsqlcipher installed, so I needed to run

brew install sqlcipher

before installation. Now everything works fine and the tests pass. I will try to port some small applications using pysqlcipher to using pysqlcipher3. I'll let you know if I find any issues :+1:

rigglemania commented 9 years ago

That sounds right. The default installation is to link against the sqlcipher libary installed on your machine. I've looked at the Python documentation and I don't see a way to specify the non-Python dependency in the setup config, so I'll at least include in the README and make sure it's mentioned somewhere on PyPi.

rigglemania commented 9 years ago

I'm going to close this. Create a new issue if you find any issues.