Source code for pycropml.inout

import six

[docs]class InputOutput(object): """ """ def __init__(self, kwds): self.min = None self.max = None self._attributes = kwds for k, v in six.iteritems(kwds): self.__setattr__(k,v) def __repr__(self): return str(self._attributes)
[docs]class Input(InputOutput): """ Input """
[docs]class Output(InputOutput): """ Output """