├── .gitignore ├── LICENSE ├── README.md ├── json_patch.py └── test_json_patch.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | *.*~ 3 | .vscode 4 | library/ 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particledecay/ansible-jsonpatch/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particledecay/ansible-jsonpatch/HEAD/README.md -------------------------------------------------------------------------------- /json_patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particledecay/ansible-jsonpatch/HEAD/json_patch.py -------------------------------------------------------------------------------- /test_json_patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particledecay/ansible-jsonpatch/HEAD/test_json_patch.py --------------------------------------------------------------------------------