├── .gitignore ├── CITATION.cff ├── Dockerfile ├── LICENSE ├── README.md ├── app.py ├── assets ├── android-chrome-192x192.png ├── android-chrome-512x512.png ├── apple-touch-icon.png ├── favicon-16x16.png ├── favicon-32x32.png ├── favicon.ico ├── site.webmanifest └── typography.css └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmc-data-storage/isotope-xs-plotter/HEAD/.gitignore -------------------------------------------------------------------------------- /CITATION.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmc-data-storage/isotope-xs-plotter/HEAD/CITATION.cff -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmc-data-storage/isotope-xs-plotter/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmc-data-storage/isotope-xs-plotter/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmc-data-storage/isotope-xs-plotter/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmc-data-storage/isotope-xs-plotter/HEAD/app.py -------------------------------------------------------------------------------- /assets/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmc-data-storage/isotope-xs-plotter/HEAD/assets/android-chrome-192x192.png -------------------------------------------------------------------------------- /assets/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmc-data-storage/isotope-xs-plotter/HEAD/assets/android-chrome-512x512.png -------------------------------------------------------------------------------- /assets/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmc-data-storage/isotope-xs-plotter/HEAD/assets/apple-touch-icon.png -------------------------------------------------------------------------------- /assets/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmc-data-storage/isotope-xs-plotter/HEAD/assets/favicon-16x16.png -------------------------------------------------------------------------------- /assets/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmc-data-storage/isotope-xs-plotter/HEAD/assets/favicon-32x32.png -------------------------------------------------------------------------------- /assets/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmc-data-storage/isotope-xs-plotter/HEAD/assets/favicon.ico -------------------------------------------------------------------------------- /assets/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmc-data-storage/isotope-xs-plotter/HEAD/assets/site.webmanifest -------------------------------------------------------------------------------- /assets/typography.css: -------------------------------------------------------------------------------- 1 | body { 2 | font-family: Helvetica, sans-serif; 3 | } 4 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | pandas 2 | plotly 3 | dash 4 | tables 5 | --------------------------------------------------------------------------------