Updated README.

This commit is contained in:
Fabio Caccamo 2020-09-23 11:10:08 +02:00
parent a7301ee1f8
commit 06cf05c12f
1 changed files with 1 additions and 2 deletions

View File

@ -323,7 +323,6 @@ items = d.items_sorted_by_values(reverse=False)
# Return a list of all keypaths in the dict. # Return a list of all keypaths in the dict.
# If indexes is True, the output will include list values indexes. # If indexes is True, the output will include list values indexes.
k = d.keypaths(indexes=False) k = d.keypaths(indexes=False)
print(k)
``` ```
- #### match - #### match
@ -332,7 +331,7 @@ print(k)
# Return a list of all values whose keypath matches the given pattern (a regex or string). # Return a list of all values whose keypath matches the given pattern (a regex or string).
# If pattern is string, wildcard can be used (eg. [*] can be used to match all list indexes). # If pattern is string, wildcard can be used (eg. [*] can be used to match all list indexes).
# If indexes is True, the pattern will be matched also against list values. # If indexes is True, the pattern will be matched also against list values.
d.match(pattern, indexes=True) m = d.match(pattern, indexes=True)
``` ```
- #### merge - #### merge