pyre.flow¶
Submodules¶
Package Contents¶
-
class
pyre.flow.producer¶ Bases:
pyre.protocolThe requirements that all factories must implement
-
make(self, **kwds)¶ Build all products
-
plan(self, **kwds)¶ Describe what needs to get to done to make the products
-
-
class
pyre.flow.specification¶ Bases:
pyre.protocolThe protocol of product specifications
Specifications are snapshots of product attributes
-
input= False¶
-
output= False¶
-
-
class
pyre.flow.factory¶ Bases:
pyre.flow.Node.NodeThe base class for creators of data products
-
make(self, context=None)¶ Construct my products
-
plan(self, context=None)¶ Describe what needs to get to done to make my products
-
-
class
pyre.flow.product¶ Bases:
pyre.flow.Node.NodeThe base class for data products
-
sync(self)¶ Examine my state
-