├── .github └── workflows │ └── coverage.yaml ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── examples ├── gpt_function_call │ └── main.py └── simple_json_stream │ └── main.py ├── pyproject.toml ├── streamingjson ├── __init__.py ├── lexer.py ├── lexer_helper.py └── lexer_tokens.py ├── tests ├── test_lexer.py └── test_lexer_helper.py └── tox.ini /.github/workflows/coverage.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karminski/streaming-json-py/HEAD/.github/workflows/coverage.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karminski/streaming-json-py/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karminski/streaming-json-py/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karminski/streaming-json-py/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karminski/streaming-json-py/HEAD/README.md -------------------------------------------------------------------------------- /examples/gpt_function_call/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karminski/streaming-json-py/HEAD/examples/gpt_function_call/main.py -------------------------------------------------------------------------------- /examples/simple_json_stream/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karminski/streaming-json-py/HEAD/examples/simple_json_stream/main.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karminski/streaming-json-py/HEAD/pyproject.toml -------------------------------------------------------------------------------- /streamingjson/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karminski/streaming-json-py/HEAD/streamingjson/__init__.py -------------------------------------------------------------------------------- /streamingjson/lexer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karminski/streaming-json-py/HEAD/streamingjson/lexer.py -------------------------------------------------------------------------------- /streamingjson/lexer_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karminski/streaming-json-py/HEAD/streamingjson/lexer_helper.py -------------------------------------------------------------------------------- /streamingjson/lexer_tokens.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karminski/streaming-json-py/HEAD/streamingjson/lexer_tokens.py -------------------------------------------------------------------------------- /tests/test_lexer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karminski/streaming-json-py/HEAD/tests/test_lexer.py -------------------------------------------------------------------------------- /tests/test_lexer_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karminski/streaming-json-py/HEAD/tests/test_lexer_helper.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karminski/streaming-json-py/HEAD/tox.ini --------------------------------------------------------------------------------