Recursively gets and filters dict/list-like objects with a path-like syntax
>>> from filterpath import get
>>> obj = ["one", {"two": {"three": [4, [{"four": [5]}], 6]}}]
>>> get(obj, "1.two.three.-2.0.four.0")
5See more in-depth examples in tests/get_test.py