iro/model/__init__.py
branchdevel
changeset 263 52284710c0b4
parent 147 e96e50ae6352
child 294 0e75bd39767d
equal deleted inserted replaced
262:212a69cc4d44 263:52284710c0b4
       
     1 """The model pakcage represents all data, that is stored either in database or in objects.
       
     2 
       
     3 before using the model, you have to use, you have to set the Engine with :func:`dbdefer.setEngine` and set the Threadpool with :func:`dbdefer.setPool` (see :func:`iro.main.runReactor` for initalizing this module).
       
     4 """
       
     5 
     1 import schema
     6 import schema
     2 import user
     7 import user
     3 import utils
     8 import utils
     4 import job
     9 import job
     5 import offer
    10 import offer
     6 
    11 
     7 from dbdefer import setEngine
    12 from dbdefer import setEngine
     8 from pool import setPool
    13 from pool import setPool
     9 
       
    10 
       
    11 
       
    12