https://github.com/llukas22/st4-python-parser
Parse Schema ST4 XML Files into simple, flat python objects.
https://github.com/llukas22/st4-python-parser
Last synced: 25 days ago
JSON representation
Parse Schema ST4 XML Files into simple, flat python objects.
- Host: GitHub
- URL: https://github.com/llukas22/st4-python-parser
- Owner: LLukas22
- License: mit
- Created: 2023-03-31T12:39:16.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2023-04-01T19:15:25.000Z (about 2 years ago)
- Last Synced: 2025-02-16T19:48:40.553Z (4 months ago)
- Language: Python
- Homepage:
- Size: 8.79 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Schema ST4 Python Parser
Parse [Schema ST4](https://www.quanos-content-solutions.com/en/software/schema-st4) XML Files into simple,flat python objects.
## Installation
via pip: `pip install schema-st4-parser`
## Usage
Simply pass the xml file into the parse methode. A list of St4Entry objects will be returned.```pytohn
from schema_st4_parser import parse, St4Entryentries = parse("MyFile.xml")
print(entries[0])
```