├── .gitignore ├── README.md ├── autosave.json ├── json.10.toe ├── json.11.toe ├── json.12.toe ├── json.13.toe ├── json.14.toe ├── json.15.toe ├── json.16.toe ├── json.17.toe ├── json.18.toe ├── json.19.toe ├── json.20.toe ├── json.21.toe ├── json.22.toe ├── json.32.toe ├── json.5.toe ├── json.6.toe ├── json.7.toe ├── json.8.toe ├── json.9.toe ├── json.toe ├── jsoner.tox ├── jsons ├── basic.json ├── basic1.json ├── basic2.json ├── basic3.json └── render.json └── python-packages └── dictdiffer ├── __init__.py ├── _compat.py ├── conflict.py ├── merge.py ├── resolve.py ├── unify.py ├── utils.py └── version.py /.gitignore: -------------------------------------------------------------------------------- 1 | .#* 2 | **/__pycache__ 3 | 4 | .DS_Store 5 | Backup/ -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulyssesdotcodes/TouchDesignerJson/HEAD/README.md -------------------------------------------------------------------------------- /autosave.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulyssesdotcodes/TouchDesignerJson/HEAD/autosave.json -------------------------------------------------------------------------------- /json.10.toe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulyssesdotcodes/TouchDesignerJson/HEAD/json.10.toe -------------------------------------------------------------------------------- /json.11.toe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulyssesdotcodes/TouchDesignerJson/HEAD/json.11.toe -------------------------------------------------------------------------------- /json.12.toe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulyssesdotcodes/TouchDesignerJson/HEAD/json.12.toe -------------------------------------------------------------------------------- /json.13.toe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulyssesdotcodes/TouchDesignerJson/HEAD/json.13.toe -------------------------------------------------------------------------------- /json.14.toe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulyssesdotcodes/TouchDesignerJson/HEAD/json.14.toe -------------------------------------------------------------------------------- /json.15.toe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulyssesdotcodes/TouchDesignerJson/HEAD/json.15.toe -------------------------------------------------------------------------------- /json.16.toe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulyssesdotcodes/TouchDesignerJson/HEAD/json.16.toe -------------------------------------------------------------------------------- /json.17.toe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulyssesdotcodes/TouchDesignerJson/HEAD/json.17.toe -------------------------------------------------------------------------------- /json.18.toe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulyssesdotcodes/TouchDesignerJson/HEAD/json.18.toe -------------------------------------------------------------------------------- /json.19.toe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulyssesdotcodes/TouchDesignerJson/HEAD/json.19.toe -------------------------------------------------------------------------------- /json.20.toe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulyssesdotcodes/TouchDesignerJson/HEAD/json.20.toe -------------------------------------------------------------------------------- /json.21.toe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulyssesdotcodes/TouchDesignerJson/HEAD/json.21.toe -------------------------------------------------------------------------------- /json.22.toe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulyssesdotcodes/TouchDesignerJson/HEAD/json.22.toe -------------------------------------------------------------------------------- /json.32.toe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulyssesdotcodes/TouchDesignerJson/HEAD/json.32.toe -------------------------------------------------------------------------------- /json.5.toe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulyssesdotcodes/TouchDesignerJson/HEAD/json.5.toe -------------------------------------------------------------------------------- /json.6.toe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulyssesdotcodes/TouchDesignerJson/HEAD/json.6.toe -------------------------------------------------------------------------------- /json.7.toe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulyssesdotcodes/TouchDesignerJson/HEAD/json.7.toe -------------------------------------------------------------------------------- /json.8.toe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulyssesdotcodes/TouchDesignerJson/HEAD/json.8.toe -------------------------------------------------------------------------------- /json.9.toe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulyssesdotcodes/TouchDesignerJson/HEAD/json.9.toe -------------------------------------------------------------------------------- /json.toe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulyssesdotcodes/TouchDesignerJson/HEAD/json.toe -------------------------------------------------------------------------------- /jsoner.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulyssesdotcodes/TouchDesignerJson/HEAD/jsoner.tox -------------------------------------------------------------------------------- /jsons/basic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulyssesdotcodes/TouchDesignerJson/HEAD/jsons/basic.json -------------------------------------------------------------------------------- /jsons/basic1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulyssesdotcodes/TouchDesignerJson/HEAD/jsons/basic1.json -------------------------------------------------------------------------------- /jsons/basic2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulyssesdotcodes/TouchDesignerJson/HEAD/jsons/basic2.json -------------------------------------------------------------------------------- /jsons/basic3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulyssesdotcodes/TouchDesignerJson/HEAD/jsons/basic3.json -------------------------------------------------------------------------------- /jsons/render.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulyssesdotcodes/TouchDesignerJson/HEAD/jsons/render.json -------------------------------------------------------------------------------- /python-packages/dictdiffer/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulyssesdotcodes/TouchDesignerJson/HEAD/python-packages/dictdiffer/__init__.py -------------------------------------------------------------------------------- /python-packages/dictdiffer/_compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulyssesdotcodes/TouchDesignerJson/HEAD/python-packages/dictdiffer/_compat.py -------------------------------------------------------------------------------- /python-packages/dictdiffer/conflict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulyssesdotcodes/TouchDesignerJson/HEAD/python-packages/dictdiffer/conflict.py -------------------------------------------------------------------------------- /python-packages/dictdiffer/merge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulyssesdotcodes/TouchDesignerJson/HEAD/python-packages/dictdiffer/merge.py -------------------------------------------------------------------------------- /python-packages/dictdiffer/resolve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulyssesdotcodes/TouchDesignerJson/HEAD/python-packages/dictdiffer/resolve.py -------------------------------------------------------------------------------- /python-packages/dictdiffer/unify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulyssesdotcodes/TouchDesignerJson/HEAD/python-packages/dictdiffer/unify.py -------------------------------------------------------------------------------- /python-packages/dictdiffer/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulyssesdotcodes/TouchDesignerJson/HEAD/python-packages/dictdiffer/utils.py -------------------------------------------------------------------------------- /python-packages/dictdiffer/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulyssesdotcodes/TouchDesignerJson/HEAD/python-packages/dictdiffer/version.py --------------------------------------------------------------------------------