{{ entry.run }}
77 | Index: {{ entry.selectedIndex }}/{{ entry.steps.length }} 78 | Step: {{ entry.selectedStep }}/{{ entry.maxStep }}79 |
├── viewer ├── __init__.py ├── public │ ├── logo.png │ └── favicon.png ├── src │ ├── assets │ │ ├── material-symbols.woff2 │ │ └── main.css │ ├── _router.js │ ├── storage.js │ ├── main.js │ ├── Options.vue │ ├── cache.js │ ├── InputText.vue │ ├── Card.vue │ ├── keynav.js │ ├── CardImage.vue │ ├── CardText.vue │ ├── Selector.vue │ ├── App.vue │ ├── CardVideo.vue │ ├── chartZoomPlugin.js │ ├── store.js │ └── CardFloat.vue ├── jsconfig.json ├── .gitignore ├── index.html ├── config.py ├── __main__.py ├── README.md ├── package.json ├── vite.config.js ├── filesystems.py ├── server.py └── package-lock.json ├── MANIFEST.in ├── requirements.txt ├── .gitignore ├── pyproject.toml ├── scope ├── __init__.py ├── reader.py ├── writer.py └── formats.py ├── .github └── workflows │ └── tests.yaml ├── LICENSE ├── tests ├── test_video.py ├── test_float.py └── test_image.py ├── README.md └── setup.py /viewer/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | include README.md 2 | include requirements.txt 3 | -------------------------------------------------------------------------------- /viewer/public/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danijar/scope/HEAD/viewer/public/logo.png -------------------------------------------------------------------------------- /viewer/public/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danijar/scope/HEAD/viewer/public/favicon.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | av 2 | elements>=3.16.6 3 | fastapi 4 | mediapy 5 | numpy 6 | orjson 7 | pillow 8 | uvicorn[standard] 9 | -------------------------------------------------------------------------------- /viewer/src/assets/material-symbols.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danijar/scope/HEAD/viewer/src/assets/material-symbols.woff2 -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.egg-info 2 | *.py[cod] 3 | .pytest_cache 4 | MANIFEST 5 | MUJOCO_LOG.TXT 6 | [';:] 7 | \[ 8 | \] 9 | __pycache__/ 10 | dist 11 | -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- 1 | [tool.pytest.ini_options] 2 | markers = ['slow'] 3 | addopts = ['--strict-config', '-ra'] 4 | pythonpath = ['.'] 5 | testpaths = ['tests'] 6 | -------------------------------------------------------------------------------- /viewer/jsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "paths": { 4 | "@/*": ["./src/*"] 5 | } 6 | }, 7 | "exclude": ["node_modules", "dist"] 8 | } 9 | -------------------------------------------------------------------------------- /scope/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = '0.6.3' 2 | 3 | from .reader import Reader 4 | from .writer import Writer 5 | 6 | from .formats import table_read 7 | from .formats import table_append 8 | 9 | from . import formats 10 | -------------------------------------------------------------------------------- /viewer/.gitignore: -------------------------------------------------------------------------------- 1 | *.local 2 | *.log 3 | .DS_Store 4 | /cypress/screenshots/ 5 | /cypress/videos/ 6 | coverage 7 | dist 8 | dist-ssr 9 | lerna-debug.log* 10 | logs 11 | node_modules 12 | npm-debug.log* 13 | pnpm-debug.log* 14 | yarn-debug.log* 15 | yarn-error.log* 16 | -------------------------------------------------------------------------------- /viewer/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 | 7 |