├── .editorconfig ├── .flake8 ├── .github └── workflows │ └── tests.yaml ├── .gitignore ├── .pre-commit-config.yaml ├── CHANGES.rst ├── LICENSE.rst ├── MANIFEST.in ├── README.rst ├── pyproject.toml ├── rpp ├── __init__.py ├── decoder.py ├── element.py ├── encoder.py ├── rpp.py └── scanner.py ├── tests ├── data │ ├── empty.RPP │ └── vst.RPP ├── test_element.py └── test_rpp.py └── tox.ini /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlence/rpp/HEAD/.editorconfig -------------------------------------------------------------------------------- /.flake8: -------------------------------------------------------------------------------- 1 | [flake8] 2 | max-line-length = 120 3 | -------------------------------------------------------------------------------- /.github/workflows/tests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlence/rpp/HEAD/.github/workflows/tests.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlence/rpp/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlence/rpp/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CHANGES.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlence/rpp/HEAD/CHANGES.rst -------------------------------------------------------------------------------- /LICENSE.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlence/rpp/HEAD/LICENSE.rst -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlence/rpp/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlence/rpp/HEAD/README.rst -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlence/rpp/HEAD/pyproject.toml -------------------------------------------------------------------------------- /rpp/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlence/rpp/HEAD/rpp/__init__.py -------------------------------------------------------------------------------- /rpp/decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlence/rpp/HEAD/rpp/decoder.py -------------------------------------------------------------------------------- /rpp/element.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlence/rpp/HEAD/rpp/element.py -------------------------------------------------------------------------------- /rpp/encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlence/rpp/HEAD/rpp/encoder.py -------------------------------------------------------------------------------- /rpp/rpp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlence/rpp/HEAD/rpp/rpp.py -------------------------------------------------------------------------------- /rpp/scanner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlence/rpp/HEAD/rpp/scanner.py -------------------------------------------------------------------------------- /tests/data/empty.RPP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlence/rpp/HEAD/tests/data/empty.RPP -------------------------------------------------------------------------------- /tests/data/vst.RPP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlence/rpp/HEAD/tests/data/vst.RPP -------------------------------------------------------------------------------- /tests/test_element.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlence/rpp/HEAD/tests/test_element.py -------------------------------------------------------------------------------- /tests/test_rpp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlence/rpp/HEAD/tests/test_rpp.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlence/rpp/HEAD/tox.ini --------------------------------------------------------------------------------