Menu

Tree [afb8a4] master /
 History

HTTPS access


File Date Author Commit
 cormoran 2011-06-02 Jaime Gil de Sagredo Luna Jaime Gil de Sagredo Luna [afb8a4] Updated resultset, persistence and errors modul...
 doc 2011-06-02 Jaime Gil de Sagredo Luna Jaime Gil de Sagredo Luna [8cc839] Updated SQL package to ORM.
 test 2011-05-10 Jaime Gil de Sagredo Luna Jaime Gil de Sagredo Luna [69b8c4] Added URI parser and its test cases.
 .gitignore 2011-05-15 Jaime Gil de Sagredo Luna Jaime Gil de Sagredo Luna [156aec] Updated .gitignore.
 AUTHORS 2011-03-22 Jaime Gil de Sagredo Luna Jaime Gil de Sagredo Luna [03d83b] Fixed problem merging with master.
 COPYING 2010-11-09 Jaime Gil de Sagredo Luna Jaime Gil de Sagredo Luna [66aff6] Added COPYING file with the GNU GPLv3 license.
 MANIFEST.in 2010-11-13 Jaime Gil de Sagredo Luna Jaime Gil de Sagredo Luna [e6e589] Updated MANIFEST.in to include test directory a...
 README 2011-04-23 Jaime Gil de Sagredo Luna Jaime Gil de Sagredo Luna [8ece18] Updated tutorial in README file.
 setup.cfg 2010-11-13 Jaime Gil de Sagredo Luna Jaime Gil de Sagredo Luna [90b0df] Added Sphinx documentation sources and modified...
 setup.py 2011-04-23 Jaime Gil de Sagredo Luna Jaime Gil de Sagredo Luna [28a4b8] Updated Development Status from Planning to Pre...

Read Me

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/>.