├── .github └── workflows │ ├── check-links.yaml │ ├── ruff.yml │ └── run-tests.yaml ├── .gitignore ├── .pre-commit-config.yaml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── RELEASE.md ├── conftest.py ├── licenserc.toml ├── mit-header.txt ├── pymvr ├── __init__.py └── value.py ├── pyproject.toml └── tests ├── basic_fixture.mvr ├── capture_demo_show.mvr ├── scene_objects.mvr ├── test_fixture_1_5.py ├── test_fixture_scene_object_1_5.py ├── test_group_objects_1_4.py ├── test_mvr_01_write_ours.py ├── test_mvr_02_read_ours.py ├── test_mvr_03_write_ours_json.py ├── test_mvr_04_read_ours_json.py ├── test_mvr_05_example.py ├── test_read_write_round_trip.py └── test_reading_with_many_files.py /.github/workflows/check-links.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-stage/python-mvr/HEAD/.github/workflows/check-links.yaml -------------------------------------------------------------------------------- /.github/workflows/ruff.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-stage/python-mvr/HEAD/.github/workflows/ruff.yml -------------------------------------------------------------------------------- /.github/workflows/run-tests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-stage/python-mvr/HEAD/.github/workflows/run-tests.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-stage/python-mvr/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-stage/python-mvr/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-stage/python-mvr/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-stage/python-mvr/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-stage/python-mvr/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-stage/python-mvr/HEAD/RELEASE.md -------------------------------------------------------------------------------- /conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-stage/python-mvr/HEAD/conftest.py -------------------------------------------------------------------------------- /licenserc.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-stage/python-mvr/HEAD/licenserc.toml -------------------------------------------------------------------------------- /mit-header.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-stage/python-mvr/HEAD/mit-header.txt -------------------------------------------------------------------------------- /pymvr/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-stage/python-mvr/HEAD/pymvr/__init__.py -------------------------------------------------------------------------------- /pymvr/value.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-stage/python-mvr/HEAD/pymvr/value.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-stage/python-mvr/HEAD/pyproject.toml -------------------------------------------------------------------------------- /tests/basic_fixture.mvr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-stage/python-mvr/HEAD/tests/basic_fixture.mvr -------------------------------------------------------------------------------- /tests/capture_demo_show.mvr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-stage/python-mvr/HEAD/tests/capture_demo_show.mvr -------------------------------------------------------------------------------- /tests/scene_objects.mvr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-stage/python-mvr/HEAD/tests/scene_objects.mvr -------------------------------------------------------------------------------- /tests/test_fixture_1_5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-stage/python-mvr/HEAD/tests/test_fixture_1_5.py -------------------------------------------------------------------------------- /tests/test_fixture_scene_object_1_5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-stage/python-mvr/HEAD/tests/test_fixture_scene_object_1_5.py -------------------------------------------------------------------------------- /tests/test_group_objects_1_4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-stage/python-mvr/HEAD/tests/test_group_objects_1_4.py -------------------------------------------------------------------------------- /tests/test_mvr_01_write_ours.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-stage/python-mvr/HEAD/tests/test_mvr_01_write_ours.py -------------------------------------------------------------------------------- /tests/test_mvr_02_read_ours.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-stage/python-mvr/HEAD/tests/test_mvr_02_read_ours.py -------------------------------------------------------------------------------- /tests/test_mvr_03_write_ours_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-stage/python-mvr/HEAD/tests/test_mvr_03_write_ours_json.py -------------------------------------------------------------------------------- /tests/test_mvr_04_read_ours_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-stage/python-mvr/HEAD/tests/test_mvr_04_read_ours_json.py -------------------------------------------------------------------------------- /tests/test_mvr_05_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-stage/python-mvr/HEAD/tests/test_mvr_05_example.py -------------------------------------------------------------------------------- /tests/test_read_write_round_trip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-stage/python-mvr/HEAD/tests/test_read_write_round_trip.py -------------------------------------------------------------------------------- /tests/test_reading_with_many_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-stage/python-mvr/HEAD/tests/test_reading_with_many_files.py --------------------------------------------------------------------------------