├── .github └── workflows │ ├── publish.yml │ └── test.yml ├── .gitignore ├── LICENSE ├── README.md ├── json_flatten.py ├── setup.py └── test_json_flatten.py /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonw/json-flatten/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonw/json-flatten/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonw/json-flatten/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonw/json-flatten/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonw/json-flatten/HEAD/README.md -------------------------------------------------------------------------------- /json_flatten.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonw/json-flatten/HEAD/json_flatten.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonw/json-flatten/HEAD/setup.py -------------------------------------------------------------------------------- /test_json_flatten.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonw/json-flatten/HEAD/test_json_flatten.py --------------------------------------------------------------------------------