├── .github └── workflows │ └── docker-image.yml ├── .gitignore ├── CHANGELOG.md ├── Dockerfile ├── LICENSE.txt ├── README.md ├── commands.txt ├── console.txt ├── docker-compose.sample.yml ├── neosvr_headless_api ├── __init__.py └── response_formats.py ├── requirements.txt └── rpc_server.py /.github/workflows/docker-image.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glitchfur/NeosVR-Headless-API/HEAD/.github/workflows/docker-image.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__/ 2 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glitchfur/NeosVR-Headless-API/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glitchfur/NeosVR-Headless-API/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glitchfur/NeosVR-Headless-API/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glitchfur/NeosVR-Headless-API/HEAD/README.md -------------------------------------------------------------------------------- /commands.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glitchfur/NeosVR-Headless-API/HEAD/commands.txt -------------------------------------------------------------------------------- /console.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glitchfur/NeosVR-Headless-API/HEAD/console.txt -------------------------------------------------------------------------------- /docker-compose.sample.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glitchfur/NeosVR-Headless-API/HEAD/docker-compose.sample.yml -------------------------------------------------------------------------------- /neosvr_headless_api/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glitchfur/NeosVR-Headless-API/HEAD/neosvr_headless_api/__init__.py -------------------------------------------------------------------------------- /neosvr_headless_api/response_formats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glitchfur/NeosVR-Headless-API/HEAD/neosvr_headless_api/response_formats.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | parse 2 | rpyc 3 | pdoc 4 | -------------------------------------------------------------------------------- /rpc_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glitchfur/NeosVR-Headless-API/HEAD/rpc_server.py --------------------------------------------------------------------------------