From 79a87c6eaf402de682732634efe2991e8040eb1f Mon Sep 17 00:00:00 2001 From: Charles Leifer Date: Thu, 5 Sep 2019 14:57:42 -0500 Subject: [PATCH] Update README with notes on the binary package. --- README.md | 26 ++++++++++++++++++++++---- 1 file changed, 22 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 9a5fa8c..fbb1562 100644 --- a/README.md +++ b/README.md @@ -7,9 +7,17 @@ some small modifications so it is suitable for use with Additional features: -* Support for user-defined window functions (requires SQLite >= 3.25) -* Support specifying flags when opening connection -* Support specifying VFS when opening connection +* User-defined window functions (requires SQLite >= 3.25) +* Flags and VFS an be specified when opening connection +* Incremental BLOB I/O, [bpo-24905](https://github.com/python/cpython/pull/271) +* Improved error messages, [bpo-16379](https://github.com/python/cpython/pull/1108) +* Simplified detection of DML statements via `sqlite3_stmt_readonly`. +* Sqlite native backup API (also present in standard library 3.7 and newer). + +A completely self-contained binary package (wheel) is available for versions +0.4.0 and newer as `sqlcipher3-binary`. This package contains the latest +release of sqlcipher compiled with numerous extensions, and requires no +external dependencies. Building with System SQLCipher ------------------------------ @@ -44,4 +52,14 @@ $ python setup.py build_static build You now have a statically-linked, completely self-contained `sqlcipher3`. -Original code (c) Gerhard Häring +Using the binary package +------------------------ + +A binary package (wheel) is available for linux with a completely +self-contained `sqlcipher3`, statically-linked against the most recent release +of sqlcipher. + +``` +$ pip install sqlcipher3-binary +``` +