├── .github └── workflows │ ├── release_and_publish.yml │ └── screenshot-comparison.yml ├── .gitignore ├── LICENSE.txt ├── README.md ├── example ├── data │ ├── Co_bands.json │ ├── Co_dos.json │ ├── Si_bands.json │ ├── Si_bands_Shifted.json │ └── Si_dos.json ├── demo.gif └── example.ipynb ├── js └── widget.jsx ├── package.json ├── pyproject.toml ├── src └── widget_bandsplot │ └── __init__.py └── test ├── test.py ├── test_figures.py └── widget-sample.png /.github/workflows/release_and_publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osscar-org/widget-bandsplot/HEAD/.github/workflows/release_and_publish.yml -------------------------------------------------------------------------------- /.github/workflows/screenshot-comparison.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osscar-org/widget-bandsplot/HEAD/.github/workflows/screenshot-comparison.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osscar-org/widget-bandsplot/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osscar-org/widget-bandsplot/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osscar-org/widget-bandsplot/HEAD/README.md -------------------------------------------------------------------------------- /example/data/Co_bands.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osscar-org/widget-bandsplot/HEAD/example/data/Co_bands.json -------------------------------------------------------------------------------- /example/data/Co_dos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osscar-org/widget-bandsplot/HEAD/example/data/Co_dos.json -------------------------------------------------------------------------------- /example/data/Si_bands.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osscar-org/widget-bandsplot/HEAD/example/data/Si_bands.json -------------------------------------------------------------------------------- /example/data/Si_bands_Shifted.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osscar-org/widget-bandsplot/HEAD/example/data/Si_bands_Shifted.json -------------------------------------------------------------------------------- /example/data/Si_dos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osscar-org/widget-bandsplot/HEAD/example/data/Si_dos.json -------------------------------------------------------------------------------- /example/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osscar-org/widget-bandsplot/HEAD/example/demo.gif -------------------------------------------------------------------------------- /example/example.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osscar-org/widget-bandsplot/HEAD/example/example.ipynb -------------------------------------------------------------------------------- /js/widget.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osscar-org/widget-bandsplot/HEAD/js/widget.jsx -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osscar-org/widget-bandsplot/HEAD/package.json -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osscar-org/widget-bandsplot/HEAD/pyproject.toml -------------------------------------------------------------------------------- /src/widget_bandsplot/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osscar-org/widget-bandsplot/HEAD/src/widget_bandsplot/__init__.py -------------------------------------------------------------------------------- /test/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osscar-org/widget-bandsplot/HEAD/test/test.py -------------------------------------------------------------------------------- /test/test_figures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osscar-org/widget-bandsplot/HEAD/test/test_figures.py -------------------------------------------------------------------------------- /test/widget-sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osscar-org/widget-bandsplot/HEAD/test/widget-sample.png --------------------------------------------------------------------------------