Coverage for /pythoncovmergedfiles/medio/medio/usr/local/lib/python3.11/site-packages/jmespath/__init__.py: 62%

Shortcuts on this page

r m x   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

8 statements  

1from jmespath import parser 

2from jmespath.visitor import Options 

3 

4__version__ = '1.0.1' 

5 

6 

7def compile(expression): 

8 return parser.Parser().parse(expression) 

9 

10 

11def search(expression, data, options=None): 

12 return parser.Parser().parse(expression).search(data, options=options)