Ejemplo n.º 1
0
 def __init__(self, client, attributes):
     AttributeGetter.__init__(self, attributes)
     self.client = client
Ejemplo n.º 2
0
 def __init__(self, **kwargs):
     AttributeGetter.__init__(self, kwargs)
Ejemplo n.º 3
0
    def __init__(self, *args, **kwargs):
        for key, val in self.__class__.__dict__.iteritems():
            if isinstance(val, BaseField):
                val.name = key

        AttributeGetter.__init__(self, kwargs)