├── .coveragerc ├── .github └── workflows │ └── test.yaml ├── .gitignore ├── .readthedocs.yaml ├── AUTHORS ├── LICENSE.txt ├── MANIFEST.in ├── README.md ├── bin └── jsonpointer ├── doc ├── Makefile ├── _static │ └── .empty ├── commandline.rst ├── conf.py ├── index.rst ├── mod-jsonpointer.rst └── tutorial.rst ├── jsonpointer.py ├── makefile ├── requirements-dev.txt ├── setup.cfg ├── setup.py └── tests.py /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankoegl/python-json-pointer/HEAD/.coveragerc -------------------------------------------------------------------------------- /.github/workflows/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankoegl/python-json-pointer/HEAD/.github/workflows/test.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankoegl/python-json-pointer/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankoegl/python-json-pointer/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankoegl/python-json-pointer/HEAD/AUTHORS -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankoegl/python-json-pointer/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankoegl/python-json-pointer/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankoegl/python-json-pointer/HEAD/README.md -------------------------------------------------------------------------------- /bin/jsonpointer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankoegl/python-json-pointer/HEAD/bin/jsonpointer -------------------------------------------------------------------------------- /doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankoegl/python-json-pointer/HEAD/doc/Makefile -------------------------------------------------------------------------------- /doc/_static/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/commandline.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankoegl/python-json-pointer/HEAD/doc/commandline.rst -------------------------------------------------------------------------------- /doc/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankoegl/python-json-pointer/HEAD/doc/conf.py -------------------------------------------------------------------------------- /doc/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankoegl/python-json-pointer/HEAD/doc/index.rst -------------------------------------------------------------------------------- /doc/mod-jsonpointer.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankoegl/python-json-pointer/HEAD/doc/mod-jsonpointer.rst -------------------------------------------------------------------------------- /doc/tutorial.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankoegl/python-json-pointer/HEAD/doc/tutorial.rst -------------------------------------------------------------------------------- /jsonpointer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankoegl/python-json-pointer/HEAD/jsonpointer.py -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankoegl/python-json-pointer/HEAD/makefile -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- 1 | wheel 2 | setuptools 3 | coverage 4 | flake8 5 | -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankoegl/python-json-pointer/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankoegl/python-json-pointer/HEAD/setup.py -------------------------------------------------------------------------------- /tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefankoegl/python-json-pointer/HEAD/tests.py --------------------------------------------------------------------------------