API

nofeardb.orm

nofeardb.orm.Document

Base class for all documents that should be stored in the database

nofeardb.orm.Field

Descriptor for a data field in a document

nofeardb.orm.OneToMany

descriptor for one to many relationships

nofeardb.orm.ManyToOne

descriptor for many to one relationships

nofeardb.orm.ManyToMany

descriptor for many to many relationships

nofeardb.engine

nofeardb.engine.StorageEngine

Storage Engine Class

nofeardb.engine.DocumentLock

A Lock for a specific document

nofeardb.datatypes

nofeardb.datatypes.UUID

ORM UUID Datatype

nofeardb.datatypes.Boolean

ORM Integer Datatype

nofeardb.datatypes.Integer

ORM Integer Datatype

nofeardb.datatypes.Float

ORM Float Datatype

nofeardb.datatypes.String

ORM String Datatype

nofeardb.datatypes.DateTime

ORM Datetime Datatype

nofeardb.query

nofeardb.query.Query

nofeardb.expr

nofeardb.expr.eq

Equals operator (==)

nofeardb.expr.neq

Not equals operator (!=)

nofeardb.expr.lt

Lower than operator (<)

nofeardb.expr.lte

Lower than equals operator (<=)

nofeardb.expr.gt

Greater than operator (>)

nofeardb.expr.gte

Greater than equals operator (>=)

nofeardb.expr.is_in

Is in operator (in)

nofeardb.expr.is_

Is operator (is)

nofeardb.expr.is_not

Is not operator (is not)

nofeardb.expr.and_

Logical AND operator (and)

nofeardb.expr.or_

Logical OR operator (or)

nofeardb.exceptions

nofeardb.exceptions.NotCreateableException