├── .github └── workflows │ ├── anaconda-publish.yml │ ├── black.yml │ ├── conda-build-test.yml │ ├── docker_ci_main.yml │ └── python-publish.yml ├── .gitignore ├── CITATION.cff ├── LICENSE ├── README.md ├── conda ├── conda_build_config.yaml └── meta.yaml ├── pyproject.toml ├── requirements.txt ├── src └── openmc_data_downloader │ ├── __init__.py │ ├── cross_sections_directory.py │ ├── fendl_3.1d_cross_sections.xml │ ├── nndc_7.1_cross_sections.xml │ ├── nndc_8.0_cross_sections.xml │ ├── tendl_2019_cross_sections.xml │ ├── terminal_cmd.py │ └── utils.py └── tests ├── test_command_line_usage.py ├── test_cross_sections_directory.py ├── test_functions.py └── test_use_in_openmc.py /.github/workflows/anaconda-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmc-data-storage/openmc_data_downloader/HEAD/.github/workflows/anaconda-publish.yml -------------------------------------------------------------------------------- /.github/workflows/black.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmc-data-storage/openmc_data_downloader/HEAD/.github/workflows/black.yml -------------------------------------------------------------------------------- /.github/workflows/conda-build-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmc-data-storage/openmc_data_downloader/HEAD/.github/workflows/conda-build-test.yml -------------------------------------------------------------------------------- /.github/workflows/docker_ci_main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmc-data-storage/openmc_data_downloader/HEAD/.github/workflows/docker_ci_main.yml -------------------------------------------------------------------------------- /.github/workflows/python-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmc-data-storage/openmc_data_downloader/HEAD/.github/workflows/python-publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmc-data-storage/openmc_data_downloader/HEAD/.gitignore -------------------------------------------------------------------------------- /CITATION.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmc-data-storage/openmc_data_downloader/HEAD/CITATION.cff -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmc-data-storage/openmc_data_downloader/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmc-data-storage/openmc_data_downloader/HEAD/README.md -------------------------------------------------------------------------------- /conda/conda_build_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmc-data-storage/openmc_data_downloader/HEAD/conda/conda_build_config.yaml -------------------------------------------------------------------------------- /conda/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmc-data-storage/openmc_data_downloader/HEAD/conda/meta.yaml -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmc-data-storage/openmc_data_downloader/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmc-data-storage/openmc_data_downloader/HEAD/requirements.txt -------------------------------------------------------------------------------- /src/openmc_data_downloader/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmc-data-storage/openmc_data_downloader/HEAD/src/openmc_data_downloader/__init__.py -------------------------------------------------------------------------------- /src/openmc_data_downloader/cross_sections_directory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmc-data-storage/openmc_data_downloader/HEAD/src/openmc_data_downloader/cross_sections_directory.py -------------------------------------------------------------------------------- /src/openmc_data_downloader/fendl_3.1d_cross_sections.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmc-data-storage/openmc_data_downloader/HEAD/src/openmc_data_downloader/fendl_3.1d_cross_sections.xml -------------------------------------------------------------------------------- /src/openmc_data_downloader/nndc_7.1_cross_sections.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmc-data-storage/openmc_data_downloader/HEAD/src/openmc_data_downloader/nndc_7.1_cross_sections.xml -------------------------------------------------------------------------------- /src/openmc_data_downloader/nndc_8.0_cross_sections.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmc-data-storage/openmc_data_downloader/HEAD/src/openmc_data_downloader/nndc_8.0_cross_sections.xml -------------------------------------------------------------------------------- /src/openmc_data_downloader/tendl_2019_cross_sections.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmc-data-storage/openmc_data_downloader/HEAD/src/openmc_data_downloader/tendl_2019_cross_sections.xml -------------------------------------------------------------------------------- /src/openmc_data_downloader/terminal_cmd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmc-data-storage/openmc_data_downloader/HEAD/src/openmc_data_downloader/terminal_cmd.py -------------------------------------------------------------------------------- /src/openmc_data_downloader/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmc-data-storage/openmc_data_downloader/HEAD/src/openmc_data_downloader/utils.py -------------------------------------------------------------------------------- /tests/test_command_line_usage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmc-data-storage/openmc_data_downloader/HEAD/tests/test_command_line_usage.py -------------------------------------------------------------------------------- /tests/test_cross_sections_directory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmc-data-storage/openmc_data_downloader/HEAD/tests/test_cross_sections_directory.py -------------------------------------------------------------------------------- /tests/test_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmc-data-storage/openmc_data_downloader/HEAD/tests/test_functions.py -------------------------------------------------------------------------------- /tests/test_use_in_openmc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openmc-data-storage/openmc_data_downloader/HEAD/tests/test_use_in_openmc.py --------------------------------------------------------------------------------