Exemplo n.º 1
0
 def __ge__(self, other):
     return filter.Filter(self, filter.Filter.GE, other)
Exemplo n.º 2
0
 def __gt__(self, other):
     return filter.Filter(self, filter.Filter.GT, other)
Exemplo n.º 3
0
 def __ne__(self, other):
     return filter.Filter(self, filter.Filter.NE, other)
Exemplo n.º 4
0
 def __eq__(self, other):
     return filter.Filter(self, filter.Filter.EQ, other)
Exemplo n.º 5
0
 def __le__(self, other):
     return filter.Filter(self, filter.Filter.LE, other)
Exemplo n.º 6
0
 def __lt__(self, other):
     return filter.Filter(self, filter.Filter.LT, other)
Exemplo n.º 7
0
 def contains(self, other):
     return filter.Filter(self, filter.Filter.IN, json.dumps(other))