A list of SQL WHERE filters combined with AND/OR logical operator.
(self, *args, **kwargs)
| 1104 | class Group(list): |
| 1105 | |
| 1106 | def __init__(self, *args, **kwargs): |
| 1107 | """ A list of SQL WHERE filters combined with AND/OR logical operator. |
| 1108 | """ |
| 1109 | list.__init__(self, args) |
| 1110 | self.operator = kwargs.get("operator", AND) |
| 1111 | |
| 1112 | def SQL(self, **kwargs): |
| 1113 | """ For example, filter for small pets with tails or wings |