Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion jsonpath_ng/ext/filter.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
# under the License.

import operator
import re
from six import moves

from .. import JSONPath, DatumInContext, Index
Expand All @@ -25,7 +26,7 @@
'<': operator.lt,
'>=': operator.ge,
'>': operator.gt,
'=~': operator.contains,
'=~': lambda a, b: True if re.search(b, a) else False,
}


Expand Down