You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A lightweight XML Parser written in Python for basic XML parsing and manipulation of XML documents.
1
+
# Python XML-Microparser Module
2
+
3
+
The **python-xml-microparser** module is a small OOP based XML Parser without DTD and SAX functionality.
4
+
5
+
## 1. Documentation
6
+
7
+
Documentation including examples can be found at either [./doc](./doc) or [https://pythondocs.webcodex.de/xml-microparser/](https://pythondocs.webcodex.de/xml-microparser/).
8
+
9
+
## 2. Installation
10
+
11
+
Most Linux Distributions come with already Python3 met dependencies (see **2.1**). Just download the Relase Tarball [link](link) and continue with section **2.2**.
12
+
13
+
## 2.1. Dependencies
14
+
15
+
You need the `pip3` Python3 Package Installer, Python3 Setuptools `python3-setuptools` and the downloaded XML-Microparser
16
+
Package found under Releases.
17
+
18
+
```bash
19
+
# apt-get install python3-setuptools python3-pip
20
+
```
21
+
22
+
>[!IMPORTANT]
23
+
> The following section describes how to install the XML-Microparser package globally. Newer PIP Package Manager Versions forbid this.
24
+
> It is possible to override by providing the `--break-system-packages` flag.
25
+
26
+
## 2.2. Non-Restrictive PIP Install
27
+
28
+
Do this for a pip system where `--break-system-packages` is not needed.
0 commit comments