├── .gitignore ├── LICENSE ├── README.md ├── brukeropus ├── __init__.py ├── control │ ├── __init__.py │ ├── dde.py │ └── opus.py └── file │ ├── __init__.py │ ├── block.py │ ├── constants.py │ ├── data.py │ ├── directory.py │ ├── file.py │ ├── labels.py │ ├── params.py │ ├── parse.py │ ├── report.py │ └── utils.py ├── docs ├── brukeropus.html ├── brukeropus │ ├── control.html │ ├── control │ │ ├── dde.html │ │ └── opus.html │ ├── file.html │ └── file │ │ ├── block.html │ │ ├── constants.html │ │ ├── data.html │ │ ├── directory.html │ │ ├── file.html │ │ ├── labels.html │ │ ├── params.html │ │ ├── parse.html │ │ ├── report.html │ │ └── utils.html ├── index.html └── search.js ├── examples ├── file.0 ├── list_opus_files_in_dir.py └── plot_data_and_print_params.py ├── pyproject.toml └── test └── test.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshduran/brukeropus/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshduran/brukeropus/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshduran/brukeropus/HEAD/README.md -------------------------------------------------------------------------------- /brukeropus/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshduran/brukeropus/HEAD/brukeropus/__init__.py -------------------------------------------------------------------------------- /brukeropus/control/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshduran/brukeropus/HEAD/brukeropus/control/__init__.py -------------------------------------------------------------------------------- /brukeropus/control/dde.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshduran/brukeropus/HEAD/brukeropus/control/dde.py -------------------------------------------------------------------------------- /brukeropus/control/opus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshduran/brukeropus/HEAD/brukeropus/control/opus.py -------------------------------------------------------------------------------- /brukeropus/file/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshduran/brukeropus/HEAD/brukeropus/file/__init__.py -------------------------------------------------------------------------------- /brukeropus/file/block.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshduran/brukeropus/HEAD/brukeropus/file/block.py -------------------------------------------------------------------------------- /brukeropus/file/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshduran/brukeropus/HEAD/brukeropus/file/constants.py -------------------------------------------------------------------------------- /brukeropus/file/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshduran/brukeropus/HEAD/brukeropus/file/data.py -------------------------------------------------------------------------------- /brukeropus/file/directory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshduran/brukeropus/HEAD/brukeropus/file/directory.py -------------------------------------------------------------------------------- /brukeropus/file/file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshduran/brukeropus/HEAD/brukeropus/file/file.py -------------------------------------------------------------------------------- /brukeropus/file/labels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshduran/brukeropus/HEAD/brukeropus/file/labels.py -------------------------------------------------------------------------------- /brukeropus/file/params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshduran/brukeropus/HEAD/brukeropus/file/params.py -------------------------------------------------------------------------------- /brukeropus/file/parse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshduran/brukeropus/HEAD/brukeropus/file/parse.py -------------------------------------------------------------------------------- /brukeropus/file/report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshduran/brukeropus/HEAD/brukeropus/file/report.py -------------------------------------------------------------------------------- /brukeropus/file/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshduran/brukeropus/HEAD/brukeropus/file/utils.py -------------------------------------------------------------------------------- /docs/brukeropus.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshduran/brukeropus/HEAD/docs/brukeropus.html -------------------------------------------------------------------------------- /docs/brukeropus/control.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshduran/brukeropus/HEAD/docs/brukeropus/control.html -------------------------------------------------------------------------------- /docs/brukeropus/control/dde.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshduran/brukeropus/HEAD/docs/brukeropus/control/dde.html -------------------------------------------------------------------------------- /docs/brukeropus/control/opus.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshduran/brukeropus/HEAD/docs/brukeropus/control/opus.html -------------------------------------------------------------------------------- /docs/brukeropus/file.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshduran/brukeropus/HEAD/docs/brukeropus/file.html -------------------------------------------------------------------------------- /docs/brukeropus/file/block.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshduran/brukeropus/HEAD/docs/brukeropus/file/block.html -------------------------------------------------------------------------------- /docs/brukeropus/file/constants.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshduran/brukeropus/HEAD/docs/brukeropus/file/constants.html -------------------------------------------------------------------------------- /docs/brukeropus/file/data.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshduran/brukeropus/HEAD/docs/brukeropus/file/data.html -------------------------------------------------------------------------------- /docs/brukeropus/file/directory.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshduran/brukeropus/HEAD/docs/brukeropus/file/directory.html -------------------------------------------------------------------------------- /docs/brukeropus/file/file.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshduran/brukeropus/HEAD/docs/brukeropus/file/file.html -------------------------------------------------------------------------------- /docs/brukeropus/file/labels.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshduran/brukeropus/HEAD/docs/brukeropus/file/labels.html -------------------------------------------------------------------------------- /docs/brukeropus/file/params.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshduran/brukeropus/HEAD/docs/brukeropus/file/params.html -------------------------------------------------------------------------------- /docs/brukeropus/file/parse.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshduran/brukeropus/HEAD/docs/brukeropus/file/parse.html -------------------------------------------------------------------------------- /docs/brukeropus/file/report.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshduran/brukeropus/HEAD/docs/brukeropus/file/report.html -------------------------------------------------------------------------------- /docs/brukeropus/file/utils.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshduran/brukeropus/HEAD/docs/brukeropus/file/utils.html -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshduran/brukeropus/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshduran/brukeropus/HEAD/docs/search.js -------------------------------------------------------------------------------- /examples/file.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshduran/brukeropus/HEAD/examples/file.0 -------------------------------------------------------------------------------- /examples/list_opus_files_in_dir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshduran/brukeropus/HEAD/examples/list_opus_files_in_dir.py -------------------------------------------------------------------------------- /examples/plot_data_and_print_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshduran/brukeropus/HEAD/examples/plot_data_and_print_params.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshduran/brukeropus/HEAD/pyproject.toml -------------------------------------------------------------------------------- /test/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshduran/brukeropus/HEAD/test/test.py --------------------------------------------------------------------------------