mirror of
https://github.com/PartialVolume/shredos.x86_64.git
synced 2026-03-02 06:22:12 +00:00
5 lines
154 B
Python
5 lines
154 B
Python
|
|
import jmespath
|
||
|
|
expression = jmespath.compile('foo.bar')
|
||
|
|
res = expression.search({'foo': {'bar': 'baz'}})
|
||
|
|
assert res == "baz", "expression.search failed"
|