pkgsrc-WIP-changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

py-storm: Restore DESCR, lost in previous update.



Module Name:	pkgsrc-wip
Committed By:	Thomas Klausner <wiz%NetBSD.org@localhost>
Pushed By:	wiz
Date:		Fri Nov 27 23:08:08 2015 +0100
Changeset:	b31459261bb9886da00f0d2e16da0974091cec3f

Modified Files:
	py-storm/DESCR

Log Message:
py-storm: Restore DESCR, lost in previous update.

To see a diff of this commit:
https://wip.pkgsrc.org/cgi-bin/gitweb.cgi?p=pkgsrc-wip.git;a=commitdiff;h=b31459261bb9886da00f0d2e16da0974091cec3f

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

diffstat:
 py-storm/DESCR | 24 ++++++++++++++++++++++++
 1 file changed, 24 insertions(+)

diffs:
diff --git a/py-storm/DESCR b/py-storm/DESCR
index e69de29..de18dfe 100644
--- a/py-storm/DESCR
+++ b/py-storm/DESCR
@@ -0,0 +1,24 @@
+Storm is an Object Relational Mapper for Python.
+
+    * Storm is fast.
+    * Storm lets you efficiently access and update large datasets
+    by allowing you to formulate complex queries spanning multiple
+    tables using Python.
+    * Storm allows you to fallback to SQL if needed (or if you just
+    prefer), allowing you to mix "old school" code and ORM code
+    * Storm handles composed primary keys with ease (no need for
+    surrogate keys).
+    * Storm doesn't do schema management, and as a result you're
+    free to manage the schema as wanted, and creating classes that
+    work with Storm is clean and simple.
+    * Storm works very well connecting to several databases and
+    using the same Python types (or different ones) with all of
+    them.
+    * Storm can handle obj.attr = <A SQL expression> assignments,
+    when that's really needed (the expression is executed at
+    INSERT/UPDATE time).
+    * Storm handles relationships between objects even before they
+    were added to a database.
+    * Storm works well with existing database schemas.
+    * Storm will flush changes to the database automatically when
+    needed, so that queries made affect recently modified objects.


Home | Main Index | Thread Index | Old Index