.flake8
.gitignore
.pre-commit-config.yaml
CHANGELOG.md
LICENSE
README.md
readthedocs.yml
setup.py
.github/ISSUE_TEMPLATE.md
.github/PULL_REQUEST_TEMPLATE.md
.github/workflows/pre-commit.yml
.github/workflows/pypi.yml
.github/workflows/pytest.yml
.github/workflows/sphinx.yml
docs/Makefile
docs/conf.py
docs/exampleusage.md
docs/index.rst
docs/installation.md
docs/jsonpath2.expressions.rst
docs/jsonpath2.nodes.rst
docs/jsonpath2.parser.rst
docs/jsonpath2.rst
docs/jsonpath2.subscripts.rst
docs/make.bat
docs/_static/.gitkeep
jsonpath2/__init__.py
jsonpath2/expression.py
jsonpath2/node.py
jsonpath2/path.py
jsonpath2/subscript.py
jsonpath2/tojsonpath.py
jsonpath2.egg-info/PKG-INFO
jsonpath2.egg-info/SOURCES.txt
jsonpath2.egg-info/dependency_links.txt
jsonpath2.egg-info/requires.txt
jsonpath2.egg-info/top_level.txt
jsonpath2/expressions/__init__.py
jsonpath2/expressions/operator.py
jsonpath2/expressions/some.py
jsonpath2/nodes/__init__.py
jsonpath2/nodes/current.py
jsonpath2/nodes/recursivedescent.py
jsonpath2/nodes/root.py
jsonpath2/nodes/subscript.py
jsonpath2/nodes/terminal.py
jsonpath2/parser/JSONPath.g4
jsonpath2/parser/JSONPath.interp
jsonpath2/parser/JSONPath.tokens
jsonpath2/parser/JSONPathLexer.interp
jsonpath2/parser/JSONPathLexer.py
jsonpath2/parser/JSONPathLexer.tokens
jsonpath2/parser/JSONPathListener.py
jsonpath2/parser/JSONPathParser.py
jsonpath2/parser/__init__.py
jsonpath2/subscripts/__init__.py
jsonpath2/subscripts/arrayindex.py
jsonpath2/subscripts/arrayslice.py
jsonpath2/subscripts/callable.py
jsonpath2/subscripts/filter.py
jsonpath2/subscripts/node.py
jsonpath2/subscripts/objectindex.py
jsonpath2/subscripts/wildcard.py
tests/arrayslice_subscript_test.py
tests/bookstore_test.py
tests/expression_test.py
tests/jsonpath2_test.py
tests/node_subscript_test.py
tests/shortcuts_test.py
tests/subscript_node_test.py