We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5776050 commit 52efa9dCopy full SHA for 52efa9d
README.rst
@@ -88,15 +88,14 @@ of your dict keys. To do this you can use either of these options:
88
.. code:: python
89
90
>>> import jmespath
91
- >>> jmespath.search('{a: a, b: b},
+ >>> jmespath.search('{a: a, b: b}',
92
... mydata,
93
... jmespath.Options(dict_cls=collections.OrderedDict))
94
95
96
97
>>> parsed = jmespath.compile('{a: a, b: b}')
98
- >>> parsed.search('{a: a, b: b},
99
- ... mydata,
+ >>> parsed.search(mydata,
100
101
102
0 commit comments