summaryrefslogtreecommitdiffstats
path: root/python/pydblite/README
diff options
context:
space:
mode:
Diffstat (limited to 'python/pydblite/README')
-rw-r--r--python/pydblite/README8
1 files changed, 8 insertions, 0 deletions
diff --git a/python/pydblite/README b/python/pydblite/README
new file mode 100644
index 0000000000..00a37b1a68
--- /dev/null
+++ b/python/pydblite/README
@@ -0,0 +1,8 @@
+PyDbLite (small footprint untyped database engine in python)
+
+PyDbLite is a pure-Python in-memory database engine, using Python
+list comprehensions as query language instead of SQL, which stores
+data in a cPickled file.
+
+You can also use PyDbLite with MySQL and SQLite, as backends.
+In order to use MySQL's adapter, you will need MySQL-python.