An open API service indexing awesome lists of open source software.

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.

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, St4Entry

entries = parse("MyFile.xml")
print(entries[0])
```