From 79d16d72cd530acbee682ebee44d5b1d2010c661 Mon Sep 17 00:00:00 2001 From: Micah Anderson Date: Sun, 17 Nov 2013 17:25:01 -0500 Subject: initial import of debian package to build with autobuilder --- README | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 README (limited to 'README') diff --git a/README b/README new file mode 100644 index 0000000..1e63c15 --- /dev/null +++ b/README @@ -0,0 +1,38 @@ + _ _ _ + _ __ _ _ ___ __ _| (_) |_ ___ + | '_ \| | | / __|/ _` | | | __/ _ \ + | |_) | |_| \__ \ (_| | | | || __/ + | .__/ \__, |___/\__, |_|_|\__\___| + |_| |___/ |_| + + A DB API v2.0 compatible interface to SQLite 3.0 + Embedded Relational Database. + Copyright (c) 2001-2003 + Michael Owens + Gerhard Häring + +Python versions supported: Python 2.1 or later +SQLite version required: SQLite 3.0 or later + +Overview: + +This is an extension module for the SQLite embedded relational database. It +tries to conform to the Python DB-API Spec v2 as far as possible. One problem +is that SQLite returns everything as text. This is a result of SQLite's +internal representation of data, however it still may be possible to return +data in the type specified by the table definitions. I am still working on +that, and will require some study of the SQLite source. + +Installation: + +Installation should be relatively simple. Following that prescribed by Python, +it can be done in two steps: + + python setup.py build + python setup.py install + +For building PySQLite on Windows, check out the file INSTALL.win32. + +Other: + +Check out the doc/rest and examples folders. -- cgit v1.2.3