├── .flake8 ├── .github └── workflows │ └── python-package.yml ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── checks ├── autogen.py ├── broken.py ├── check.py ├── debug.py ├── oneline.json ├── runratio.sh ├── runshow.sh └── runtest.sh ├── half_json ├── __init__.py ├── core.py ├── json_util.py └── main.py ├── pdm.lock ├── pyproject.toml └── tests ├── __init__.py ├── test_cases.py ├── test_js.py ├── test_miss.py └── test_stop.py /.flake8: -------------------------------------------------------------------------------- 1 | [flake8] 2 | ignore = E501 3 | -------------------------------------------------------------------------------- /.github/workflows/python-package.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/half-pie/half-json/HEAD/.github/workflows/python-package.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/half-pie/half-json/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/half-pie/half-json/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/half-pie/half-json/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/half-pie/half-json/HEAD/README.md -------------------------------------------------------------------------------- /checks/autogen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/half-pie/half-json/HEAD/checks/autogen.py -------------------------------------------------------------------------------- /checks/broken.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/half-pie/half-json/HEAD/checks/broken.py -------------------------------------------------------------------------------- /checks/check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/half-pie/half-json/HEAD/checks/check.py -------------------------------------------------------------------------------- /checks/debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/half-pie/half-json/HEAD/checks/debug.py -------------------------------------------------------------------------------- /checks/oneline.json: -------------------------------------------------------------------------------- 1 | {a:1} -------------------------------------------------------------------------------- /checks/runratio.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/half-pie/half-json/HEAD/checks/runratio.sh -------------------------------------------------------------------------------- /checks/runshow.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/half-pie/half-json/HEAD/checks/runshow.sh -------------------------------------------------------------------------------- /checks/runtest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/half-pie/half-json/HEAD/checks/runtest.sh -------------------------------------------------------------------------------- /half_json/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /half_json/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/half-pie/half-json/HEAD/half_json/core.py -------------------------------------------------------------------------------- /half_json/json_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/half-pie/half-json/HEAD/half_json/json_util.py -------------------------------------------------------------------------------- /half_json/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/half-pie/half-json/HEAD/half_json/main.py -------------------------------------------------------------------------------- /pdm.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/half-pie/half-json/HEAD/pdm.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/half-pie/half-json/HEAD/pyproject.toml -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_cases.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/half-pie/half-json/HEAD/tests/test_cases.py -------------------------------------------------------------------------------- /tests/test_js.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/half-pie/half-json/HEAD/tests/test_js.py -------------------------------------------------------------------------------- /tests/test_miss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/half-pie/half-json/HEAD/tests/test_miss.py -------------------------------------------------------------------------------- /tests/test_stop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/half-pie/half-json/HEAD/tests/test_stop.py --------------------------------------------------------------------------------