Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/paulromano/endf-python
Python ENDF Parser
https://github.com/paulromano/endf-python
cross-sections endf-format nuclear-data
Last synced: 21 days ago
JSON representation
Python ENDF Parser
- Host: GitHub
- URL: https://github.com/paulromano/endf-python
- Owner: paulromano
- License: mit
- Created: 2023-04-28T04:07:20.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-07-31T19:54:59.000Z (5 months ago)
- Last Synced: 2024-11-05T09:44:46.577Z (about 2 months ago)
- Topics: cross-sections, endf-format, nuclear-data
- Language: Python
- Homepage: https://endf-python.readthedocs.io
- Size: 151 KB
- Stars: 26
- Watchers: 4
- Forks: 7
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
- awesome-nuclear - endf-python
README
# ENDF Python Interface
[![License](https://img.shields.io/badge/license-MIT-green)](https://opensource.org/licenses/MIT)
[![PyPI](https://img.shields.io/pypi/v/endf?label=PyPI)](https://pypi.org/project/endf)`endf` is a Python package for reading and interpreting
[ENDF-6](https://doi.org/10.2172/1425114) and
[ACE](https://github.com/NuclearData/ACEFormat) format nuclear data files.
Compared to other packages that provide functionality for working with ENDF and
ACE files, this package has numerous advantages:- Easily installable through `pip`
- Thoughtful API design targeting Python first
- Offers both a low-level interface for working with the raw data in an ENDF
file as well as a more intuitive high-level interface
- Fast file-loading performance thanks to optimized read routines
- Fully documented, tested, and type-hinted## Installation
The `endf` Python package can be installed from the [Python Package
Index](https://pypi.org/project/endf/) using `pip`:```sh
python -m pip install endf
```## Documentation
For information on how to use the `endf` package and a full API reference,
please see the [online documentation](https://endf-python.readthedocs.io).