Cormoran cusl5-cormoran
Status: Pre-Alpha
Brought to you by:
nhoax
Overview
--------
Cormoran is a fast and lightweight persistence framework.
Using
-----
See the online tutorial at <http://cormoran.nhopkg.org/docs/tutorial>.
>>> from cormoran import *
>>> class User(Persistent):
... name = StringField()
... mail = StringField()
>>> store = Store('sqlite:')
>>> user = User(name='user', mail='user1@localhost')
>>> store.add(user)
>>> store.commit()
Documentation
-------------
See the online documentation at <http://cormoran.nhopkg.org/docs>.
Installation
------------
Using setuptools:
# easy_install Cormoran
Download a source tarball:
$ tar xvf cormoran.tar.bz2
or get the latest git code:
$ git clone git://cormoran.git.sourceforge.net/gitroot/cormoran/cormoran
and then:
$ cd cormoran
# python setup.py install
Authors
-------
Read AUTHORS file ;)
Bugs
----
To submit bugs, feature request, etc. use our bugzilla at
<http://bugzilla.nhopkg.org/describecomponents.cgi?product=Cormoran>.
License
-------
Cormoran is distributed under the GNU General Public License version 3
<http://www.gnu.org/licenses/>.