We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
item
1 parent ed3921a commit 10a1174Copy full SHA for 10a1174
README.md
@@ -166,7 +166,7 @@ Let's say you have a huge nested object and want to see if any item with the wor
166
```py
167
from deepdiff import DeepSearch
168
obj = {"long": "somewhere", "string": 2, 0: 0, "somewhere": "around"}
169
-ds = DeepSearch(obj, item, verbose_level=2)
+ds = DeepSearch(obj, "somewhere", verbose_level=2)
170
print(ds)
171
```
172
@@ -188,7 +188,7 @@ Just grep through your objects as you would in shell!
188
189
from deepdiff import grep
190
191
-ds = obj | grep(item)
+ds = obj | grep("somewhere")
192
193
194
0 commit comments