Re: [sqlalchemy] Support for pysqlcipher3

2015-06-14 Thread Mike Bayer
On 6/14/15 7:29 AM, Fayaz Yusuf Khan wrote: On Saturday 13 Jun 2015 7:42:51 AM Mike Bayer wrote: if that is the only test failing I wouldn't worry too hard.if you look at the test, you'll see this comment: # fails on newer versions of pysqlite due to unusual memory behvior #

Re: [sqlalchemy] Support for pysqlcipher3

2015-06-14 Thread Fayaz Yusuf Khan
On Saturday 13 Jun 2015 7:42:51 AM Mike Bayer wrote: if that is the only test failing I wouldn't worry too hard.if you look at the test, you'll see this comment: # fails on newer versions of pysqlite due to unusual memory behvior # in pysqlite itself. background at: #

Re: [sqlalchemy] Support for pysqlcipher3

2015-06-13 Thread Mike Bayer
On 6/13/15 5:08 AM, Fayaz Yusuf Khan wrote: On Sunday 31 May 2015 11:36:12 PM Mike Bayer wrote: you can send in pysqlcipher3 to create_engine() using the dbapi argument: import pysqlcipher3 e = create_engine(sqlite+pysqlcipher:///file.db, dbapi=pysqlcipher3) feel free to submit a PR that

Re: [sqlalchemy] Support for pysqlcipher3

2015-06-13 Thread Fayaz Yusuf Khan
On Sunday 31 May 2015 11:36:12 PM Mike Bayer wrote: you can send in pysqlcipher3 to create_engine() using the dbapi argument: import pysqlcipher3 e = create_engine(sqlite+pysqlcipher:///file.db, dbapi=pysqlcipher3) feel free to submit a PR that returns this DBAPI from the dbapi method

Re: [sqlalchemy] Support for pysqlcipher3

2015-06-01 Thread Fayaz Yusuf Khan
Alright, thanks! I would try to submit the PR. But it does look like a transitional package to me. How do we generally handle such upstream changes anyway? On Monday, June 1, 2015 at 9:06:20 AM UTC+5:30, Michael Bayer wrote: On 5/31/15 8:58 PM, Fayaz Yusuf Khan wrote: On Sunday 31 May

Re: [sqlalchemy] Support for pysqlcipher3

2015-05-31 Thread Mike Bayer
On 5/31/15 4:23 AM, Fayaz Yusuf Khan wrote: Hi, pysqlcipher3 is a Python3 port for pysqlcipher (for SQLite). Does SQLA currently have support for this? (I wasn't able to get it running for my project.) If not, any chances it will, in the future? pysqlcipher is right here:

Re: [sqlalchemy] Support for pysqlcipher3

2015-05-31 Thread Fayaz Yusuf Khan
On Sunday 31 May 2015 11:06:32 AM Mike Bayer wrote: pysqlcipher is right here: http://docs.sqlalchemy.org/en/rel_1_0/dialects/sqlite.html#module-sqlalchemy .dialects.sqlite.pysqlcipher SQLAlchemy supports Python 2K and Python 3K in place though the above dialect has probably not been

Re: [sqlalchemy] Support for pysqlcipher3

2015-05-31 Thread Mike Bayer
On 5/31/15 8:58 PM, Fayaz Yusuf Khan wrote: On Sunday 31 May 2015 11:06:32 AM Mike Bayer wrote: pysqlcipher is right here: http://docs.sqlalchemy.org/en/rel_1_0/dialects/sqlite.html#module-sqlalchemy .dialects.sqlite.pysqlcipher SQLAlchemy supports Python 2K and Python 3K in place though

[sqlalchemy] Support for pysqlcipher3

2015-05-31 Thread Fayaz Yusuf Khan
Hi, pysqlcipher3 is a Python3 port for pysqlcipher (for SQLite). Does SQLA currently have support for this? (I wasn't able to get it running for my project.) If not, any chances it will, in the future? Thanks. -- You received this message because you are subscribed to the Google Groups