|
|
@ -1,5 +1,6 @@
|
|
|
|
import collections.abc
|
|
|
|
import collections.abc
|
|
|
|
import contextlib
|
|
|
|
import contextlib
|
|
|
|
|
|
|
|
import http.cookies
|
|
|
|
import inspect
|
|
|
|
import inspect
|
|
|
|
import itertools
|
|
|
|
import itertools
|
|
|
|
import re
|
|
|
|
import re
|
|
|
@ -28,7 +29,8 @@ def traverse_obj(
|
|
|
|
|
|
|
|
|
|
|
|
Each of the provided `paths` is tested and the first producing a valid result will be returned.
|
|
|
|
Each of the provided `paths` is tested and the first producing a valid result will be returned.
|
|
|
|
The next path will also be tested if the path branched but no results could be found.
|
|
|
|
The next path will also be tested if the path branched but no results could be found.
|
|
|
|
Supported values for traversal are `Mapping`, `Iterable` and `re.Match`.
|
|
|
|
Supported values for traversal are `Mapping`, `Iterable`, `re.Match`,
|
|
|
|
|
|
|
|
`xml.etree.ElementTree` (xpath) and `http.cookies.Morsel`.
|
|
|
|
Unhelpful values (`{}`, `None`) are treated as the absence of a value and discarded.
|
|
|
|
Unhelpful values (`{}`, `None`) are treated as the absence of a value and discarded.
|
|
|
|
|
|
|
|
|
|
|
|
The paths will be wrapped in `variadic`, so that `'key'` is conveniently the same as `('key', )`.
|
|
|
|
The paths will be wrapped in `variadic`, so that `'key'` is conveniently the same as `('key', )`.
|
|
|
@ -36,8 +38,8 @@ def traverse_obj(
|
|
|
|
The keys in the path can be one of:
|
|
|
|
The keys in the path can be one of:
|
|
|
|
- `None`: Return the current object.
|
|
|
|
- `None`: Return the current object.
|
|
|
|
- `set`: Requires the only item in the set to be a type or function,
|
|
|
|
- `set`: Requires the only item in the set to be a type or function,
|
|
|
|
like `{type}`/`{func}`. If a `type`, returns only values
|
|
|
|
like `{type}`/`{type, type, ...}/`{func}`. If a `type`, return only
|
|
|
|
of this type. If a function, returns `func(obj)`.
|
|
|
|
values of this type. If a function, returns `func(obj)`.
|
|
|
|
- `str`/`int`: Return `obj[key]`. For `re.Match`, return `obj.group(key)`.
|
|
|
|
- `str`/`int`: Return `obj[key]`. For `re.Match`, return `obj.group(key)`.
|
|
|
|
- `slice`: Branch out and return all values in `obj[key]`.
|
|
|
|
- `slice`: Branch out and return all values in `obj[key]`.
|
|
|
|
- `Ellipsis`: Branch out and return a list of all values.
|
|
|
|
- `Ellipsis`: Branch out and return a list of all values.
|
|
|
@ -48,8 +50,10 @@ def traverse_obj(
|
|
|
|
For `Iterable`s, `key` is the index of the value.
|
|
|
|
For `Iterable`s, `key` is the index of the value.
|
|
|
|
For `re.Match`es, `key` is the group number (0 = full match)
|
|
|
|
For `re.Match`es, `key` is the group number (0 = full match)
|
|
|
|
as well as additionally any group names, if given.
|
|
|
|
as well as additionally any group names, if given.
|
|
|
|
- `dict` Transform the current object and return a matching dict.
|
|
|
|
- `dict`: Transform the current object and return a matching dict.
|
|
|
|
Read as: `{key: traverse_obj(obj, path) for key, path in dct.items()}`.
|
|
|
|
Read as: `{key: traverse_obj(obj, path) for key, path in dct.items()}`.
|
|
|
|
|
|
|
|
- `any`-builtin: Take the first matching object and return it, resetting branching.
|
|
|
|
|
|
|
|
- `all`-builtin: Take all matching objects and return them as a list, resetting branching.
|
|
|
|
|
|
|
|
|
|
|
|
`tuple`, `list`, and `dict` all support nested paths and branches.
|
|
|
|
`tuple`, `list`, and `dict` all support nested paths and branches.
|
|
|
|
|
|
|
|
|
|
|
@ -102,10 +106,10 @@ def traverse_obj(
|
|
|
|
result = obj
|
|
|
|
result = obj
|
|
|
|
|
|
|
|
|
|
|
|
elif isinstance(key, set):
|
|
|
|
elif isinstance(key, set):
|
|
|
|
assert len(key) == 1, 'Set should only be used to wrap a single item'
|
|
|
|
|
|
|
|
item = next(iter(key))
|
|
|
|
item = next(iter(key))
|
|
|
|
if isinstance(item, type):
|
|
|
|
if len(key) > 1 or isinstance(item, type):
|
|
|
|
if isinstance(obj, item):
|
|
|
|
assert all(isinstance(item, type) for item in key)
|
|
|
|
|
|
|
|
if isinstance(obj, tuple(key)):
|
|
|
|
result = obj
|
|
|
|
result = obj
|
|
|
|
else:
|
|
|
|
else:
|
|
|
|
result = try_call(item, args=(obj,))
|
|
|
|
result = try_call(item, args=(obj,))
|
|
|
@ -117,6 +121,8 @@ def traverse_obj(
|
|
|
|
|
|
|
|
|
|
|
|
elif key is ...:
|
|
|
|
elif key is ...:
|
|
|
|
branching = True
|
|
|
|
branching = True
|
|
|
|
|
|
|
|
if isinstance(obj, http.cookies.Morsel):
|
|
|
|
|
|
|
|
obj = dict(obj, key=obj.key, value=obj.value)
|
|
|
|
if isinstance(obj, collections.abc.Mapping):
|
|
|
|
if isinstance(obj, collections.abc.Mapping):
|
|
|
|
result = obj.values()
|
|
|
|
result = obj.values()
|
|
|
|
elif is_iterable_like(obj) or isinstance(obj, xml.etree.ElementTree.Element):
|
|
|
|
elif is_iterable_like(obj) or isinstance(obj, xml.etree.ElementTree.Element):
|
|
|
@ -131,6 +137,8 @@ def traverse_obj(
|
|
|
|
|
|
|
|
|
|
|
|
elif callable(key):
|
|
|
|
elif callable(key):
|
|
|
|
branching = True
|
|
|
|
branching = True
|
|
|
|
|
|
|
|
if isinstance(obj, http.cookies.Morsel):
|
|
|
|
|
|
|
|
obj = dict(obj, key=obj.key, value=obj.value)
|
|
|
|
if isinstance(obj, collections.abc.Mapping):
|
|
|
|
if isinstance(obj, collections.abc.Mapping):
|
|
|
|
iter_obj = obj.items()
|
|
|
|
iter_obj = obj.items()
|
|
|
|
elif is_iterable_like(obj) or isinstance(obj, xml.etree.ElementTree.Element):
|
|
|
|
elif is_iterable_like(obj) or isinstance(obj, xml.etree.ElementTree.Element):
|
|
|
@ -157,6 +165,8 @@ def traverse_obj(
|
|
|
|
} or None
|
|
|
|
} or None
|
|
|
|
|
|
|
|
|
|
|
|
elif isinstance(obj, collections.abc.Mapping):
|
|
|
|
elif isinstance(obj, collections.abc.Mapping):
|
|
|
|
|
|
|
|
if isinstance(obj, http.cookies.Morsel):
|
|
|
|
|
|
|
|
obj = dict(obj, key=obj.key, value=obj.value)
|
|
|
|
result = (try_call(obj.get, args=(key,)) if casesense or try_call(obj.__contains__, args=(key,)) else
|
|
|
|
result = (try_call(obj.get, args=(key,)) if casesense or try_call(obj.__contains__, args=(key,)) else
|
|
|
|
next((v for k, v in obj.items() if casefold(k) == key), None))
|
|
|
|
next((v for k, v in obj.items() if casefold(k) == key), None))
|
|
|
|
|
|
|
|
|
|
|
@ -179,7 +189,7 @@ def traverse_obj(
|
|
|
|
|
|
|
|
|
|
|
|
elif isinstance(obj, xml.etree.ElementTree.Element) and isinstance(key, str):
|
|
|
|
elif isinstance(obj, xml.etree.ElementTree.Element) and isinstance(key, str):
|
|
|
|
xpath, _, special = key.rpartition('/')
|
|
|
|
xpath, _, special = key.rpartition('/')
|
|
|
|
if not special.startswith('@') and special != 'text()':
|
|
|
|
if not special.startswith('@') and not special.endswith('()'):
|
|
|
|
xpath = key
|
|
|
|
xpath = key
|
|
|
|
special = None
|
|
|
|
special = None
|
|
|
|
|
|
|
|
|
|
|
@ -198,7 +208,7 @@ def traverse_obj(
|
|
|
|
return try_call(element.attrib.get, args=(special[1:],))
|
|
|
|
return try_call(element.attrib.get, args=(special[1:],))
|
|
|
|
if special == 'text()':
|
|
|
|
if special == 'text()':
|
|
|
|
return element.text
|
|
|
|
return element.text
|
|
|
|
assert False, f'apply_specials is missing case for {special!r}'
|
|
|
|
raise SyntaxError(f'apply_specials is missing case for {special!r}')
|
|
|
|
|
|
|
|
|
|
|
|
if xpath:
|
|
|
|
if xpath:
|
|
|
|
result = list(map(apply_specials, obj.iterfind(xpath)))
|
|
|
|
result = list(map(apply_specials, obj.iterfind(xpath)))
|
|
|
|