├── .gitignore ├── LICENSE ├── README.md ├── pyboiler ├── __init__.py ├── pyboiler.py └── serializers.py ├── setup.py └── test_files ├── complex.json ├── perror.json └── simple.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Link-/pyboiler/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Link-/pyboiler/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Link-/pyboiler/HEAD/README.md -------------------------------------------------------------------------------- /pyboiler/__init__.py: -------------------------------------------------------------------------------- 1 | # 2 | -------------------------------------------------------------------------------- /pyboiler/pyboiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Link-/pyboiler/HEAD/pyboiler/pyboiler.py -------------------------------------------------------------------------------- /pyboiler/serializers.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | # TBD -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Link-/pyboiler/HEAD/setup.py -------------------------------------------------------------------------------- /test_files/complex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Link-/pyboiler/HEAD/test_files/complex.json -------------------------------------------------------------------------------- /test_files/perror.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Link-/pyboiler/HEAD/test_files/perror.json -------------------------------------------------------------------------------- /test_files/simple.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Link-/pyboiler/HEAD/test_files/simple.json --------------------------------------------------------------------------------