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 8df408f commit 8d52f7dCopy full SHA for 8d52f7d
src/jsonparse/functions.py
@@ -16,6 +16,13 @@ def find_key(data, key):
16
data -- The python object representing JSON data with key:value pairs. This could be a dictionary or a list.
17
18
key -- The key that will be searched for in the JSON data. The key must be a string.
19
+
20
+ partial -- If set to True the search will perform a partial match on keys
21
+ This means the provided key may appear as a substring of the dictionary key
22
+ Default is False which results in exact key matches will be returned
23
24
+ case_sensitive -- If set to True the key comparison will be case-sensitive
25
+ Default is False which means 'Name' and 'name' will be considered same
26
"""
27
return Parser().find_key(data, key)
28
0 commit comments