co3.manager module

Manager

Wrapper for state-changing database operations. Managers expose the formalized means of interacting with an underlying database, like inserts and schema recreation.

class co3.manager.Manager[source]

Bases: Generic

Management wrapper class for table groupings.

The schema is centered around a connected group of tables (via foreign keys). Thus, most operations need to be coordinated across tables. A few common operations are wrapped up in this class to then also be mirrored for the FTS counterparts.

abstract insert(component, *args, **kwargs)[source]
abstract migrate()[source]
abstract recreate(schema, engine)[source]
abstract sync()[source]