{"id":23684831,"url":"https://github.com/clauspruefer/python-xml-microparser","last_synced_at":"2025-10-18T01:35:58.206Z","repository":{"id":209513196,"uuid":"119281367","full_name":"clauspruefer/python-xml-microparser","owner":"clauspruefer","description":"Tiny Python XML Parser Module","archived":false,"fork":false,"pushed_at":"2025-08-17T15:19:20.000Z","size":161,"stargazers_count":4,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-09-21T22:29:53.777Z","etag":null,"topics":["json","parser","python","xml"],"latest_commit_sha":null,"homepage":"https://pypi.org/project/xmlmicroparser","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"agpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/clauspruefer.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null},"funding":{"github":"webcodex1"}},"created_at":"2018-01-28T17:31:31.000Z","updated_at":"2025-09-21T20:49:17.000Z","dependencies_parsed_at":"2024-11-10T11:20:52.205Z","dependency_job_id":"a1a1c124-5e91-489c-8812-e19317fbeb7d","html_url":"https://github.com/clauspruefer/python-xml-microparser","commit_stats":null,"previous_names":["clauspruefer/python-xml-microparser"],"tags_count":4,"template":false,"template_full_name":null,"purl":"pkg:github/clauspruefer/python-xml-microparser","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/clauspruefer%2Fpython-xml-microparser","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/clauspruefer%2Fpython-xml-microparser/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/clauspruefer%2Fpython-xml-microparser/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/clauspruefer%2Fpython-xml-microparser/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/clauspruefer","download_url":"https://codeload.github.com/clauspruefer/python-xml-microparser/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/clauspruefer%2Fpython-xml-microparser/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279447452,"owners_count":26171846,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-17T02:00:07.504Z","response_time":56,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["json","parser","python","xml"],"created_at":"2024-12-29T20:48:43.258Z","updated_at":"2025-10-18T01:35:58.163Z","avatar_url":"https://github.com/clauspruefer.png","language":"Python","funding_links":["https://github.com/sponsors/webcodex1"],"categories":[],"sub_categories":[],"readme":"# Python XML-Microparser Module\n\n![push main](https://github.com/clauspruefer/python-xml-microparser/actions/workflows/pylint.yaml/badge.svg)\n[![PyPI version](https://badge.fury.io/py/xmlmicroparser.svg)](https://badge.fury.io/py/xmlmicroparser)\n\nThe Python **xmlmicroparser** module is a small OOP based XML Parser without DTD / XSLT / SAX functionality.\n\n## 1. Documentation\n\nDocumentation including examples can be found at either ./doc or [https://pythondocs.webcodex.de/xml-microparser](https://pythondocs.webcodex.de/xml-microparser).\n\n## 2. Installation\n\n```bash\n# install via pip\npip install xmlmicroparser\n```\n\nOr download the current Release Zip / Tarball @ [Release 1.0rc1](https://github.com/clauspruefer/python-xml-microparser/releases/tag/1.0rc1) and continue with section **2.2**.\n\n\u003e[!NOTE]\n\u003e Since Python 3.3 (PEP 405) Virtual Environments are proposed.\n\n```bash\n# setup virtual-env\npython3 -m venv .xml-microparser\n\n# activate virtual-env\nsource .xml-microparser/bin/activate\n\n# upgrade pip\npython3 -m pip install --upgrade pip\n\n# install xmlmicroparser module\npip3 install xmlmicroparser\n\n# install dependencies\npip3 install pytest pytest-pep8\n```\n\n## 2.1. Dependencies\n\nYou need Python3 setuptools to build the package manually. Pytest / PEP-8 packages are required to run tests.\n\n```bash\n# install base dependencies\napt-get install python3-setuptools python3-pip python3-pytest python3-pytest-pep8\n```\n\n\u003e[!IMPORTANT]\n\u003e The following section describes how to install the XML-Microparser package globally. Newer PIP Package Manager Versions prohibit\n\u003e this by default. It is possible to override by providing the `--break-system-packages` flag.\n\n## 2.2. Non-Restrictive PIP Install\n\nDo this for a pip system where `--break-system-packages` is not needed.\n\n```bash\n# install local pip\nsudo pip3 install ./xmlmicroparser-1.0rc1.tar.gz\n```\n\n## 2.3. Restrictive PIP Install\n\nDo this for a pip system where `--break-system-packages` is needed.\n\n```bash\n# install local pip\nsudo pip3 install ./xmlmicroparser-1.0rc1.tar.gz --break-system-packages\n```\n\n## 3. Build Manually\n\nClone git repository and change dir inside.\n\n```bash\n# clone and cd into repo\ngit clone https://github.com/clauspruefer/python-xml-microparser.git\ncd python-xml-microparser\n```\n## 3.1. Build As Non-Root-User\n\nBuild python-package with setup-tools (as non root user). This will generate the installable tarball\ninto `./dist/xmlmicroparser-1.0rc1.tar.gz`.\n\n```bash\n# build source distribution\npython3 setup.py sdist\n```\n\n## 3.2. Install As Root-User\n\n```bash\n# install via pip\nsudo pip3 install ./dist/xmlmicroparser-1.0rc1.tar.gz --break-system-packages\n```\n\n## 4. Run Tests / Pytest\n\n```bash\n# run pytest\npytest\n```\n\n## 5. Example Usage / Boost::Python\n\nUsing the XML-Microparser Module with Boost Python C++ https://www.boost.org/doc/libs/1_86_0/libs/python/doc/html/index.html\nmakes XML configuration handling in C++ projects easy.\n\nSee @ https://github.com/WEBcodeX1/http-1.2.\n\n[![linting: pylint](https://img.shields.io/badge/linting-pylint-yellowgreen)](https://github.com/PyCQA/pylint)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fclauspruefer%2Fpython-xml-microparser","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fclauspruefer%2Fpython-xml-microparser","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fclauspruefer%2Fpython-xml-microparser/lists"}