Metadata-Version: 2.1
Name: lsdyna-parser
Version: 0.0.1
Summary: Simple parser for LS-Dyna decks
Author-email: Marwin Budniok <marwin.budniok@aol.com>
Project-URL: Homepage, https://github.com/marwin-budniok/lsdyna_parser
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE

The following code will return a dictionary containing all entities of the Ls-Dyna model. An entity consits of the Keyword and the corresponding cards as a list of parameter lines.
```python
from lsdyna_parser import parse_lsdyna_deck
parsed_dyna = parse_lsdyna_deck(path='example_lsdyna_deck.k')
```
The parser can be used as a starting point for model analysis and CAE process automation.
