Name | pugixml JSON |
Version |
0.7.0
JSON |
| download |
home_page | None |
Summary | Light-weight, simple and fast XML parser with XPath support |
upload_time | 2025-01-14 15:13:12 |
maintainer | None |
docs_url | None |
author | None |
requires_python | >=3.9 |
license | MIT License Copyright (c) 2022 Tetsuya Miura Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
keywords |
dom
xml
xpath
xml-parser
|
VCS |
|
bugtrack_url |
|
requirements |
No requirements were recorded.
|
Travis-CI |
No Travis.
|
coveralls test coverage |
No coveralls.
|
# Python bindings for pugixml
[![PyPI](https://img.shields.io/pypi/v/pugixml)](https://pypi.org/project/pugixml/)
[![PyPI - Python Version](https://img.shields.io/pypi/pyversions/pugixml)](https://pypi.org/project/pugixml/)
[![PyPI - License](https://img.shields.io/pypi/l/pugixml)](https://pypi.org/project/pugixml/)
[![pre-commit.ci status](https://results.pre-commit.ci/badge/github/miute/pugixml-python/main.svg)](https://results.pre-commit.ci/latest/github/miute/pugixml-python/main)
[![tests](https://github.com/miute/pugixml-python/actions/workflows/tests.yml/badge.svg)](https://github.com/miute/pugixml-python/actions/workflows/tests.yml)
[![build](https://github.com/miute/pugixml-python/actions/workflows/build.yml/badge.svg)](https://github.com/miute/pugixml-python/actions/workflows/build.yml)
[pugixml](http://pugixml.org/) is a light-weight C++ XML processing library. It features:
- DOM-like interface with rich traversal/modification capabilities
- [Extremely fast](https://pugixml.org/benchmark.html) non-validating XML parser which constructs the DOM tree from an XML file/buffer
- XPath 1.0 implementation for complex data-driven tree queries
- Full Unicode support with Unicode interface variants and automatic encoding conversions
## Documentation
- pugixml-python
- [API Reference](https://miute.github.io/pugixml-python/)
- pugixml
- [Quick-start guide](https://pugixml.org/docs/quickstart.html)
- [Reference manual](https://pugixml.org/docs/manual.html)
## Example
Loading XML document from file:
```python
from pugixml import pugi
doc = pugi.XMLDocument()
result = doc.load_file('xgconsole.xml')
if not result:
print('parse error: status=%r description=%r' % (result.status, result.description()))
```
Searching for nodes/attributes with predicates:
```python
tools = doc.child('Profile').child('Tools')
# Find child via predicate (looks for direct children only)
node = tools.find_child(lambda x: x.attribute('AllowRemote').as_bool())
print(node.attribute('Filename').value())
# Find node via predicate (looks for all descendants in depth-first order)
node = doc.find_node(lambda x: x.attribute('AllowRemote').as_bool())
print(node.attribute('Filename').value())
# Find attribute via predicate
attr = tools.last_child().find_attribute(lambda x: x.name() == 'AllowRemote')
print(attr.value())
```
Selecting nodes via XPath expression:
```python
tools = doc.select_nodes('/Profile/Tools/Tool[@AllowRemote="true" and @DeriveCaptionFrom="lastparam"]')
for tool in tools:
print(tool.node().attribute('Filename').value())
```
Using query objects and variables:
```python
varset = pugi.XPathVariableSet()
var = varset.add('remote', pugi.XPATH_TYPE_BOOLEAN)
query_remote_tools = pugi.XPathQuery('/Profile/Tools/Tool[@AllowRemote = string($remote)]', varset)
var.set(True)
tools_remote = query_remote_tools.evaluate_node_set(doc)
for tool in tools_remote:
tool.node().print(pugi.PrintWriter())
var.set(False)
tools_local = query_remote_tools.evaluate_node_set(doc)
for tool in tools_local:
tool.node().print(pugi.PrintWriter())
```
## Installation
### Installing a package from PyPI
```bash
pip install pugixml
```
### Building a package from source
- Requirements:
- C++17 compatible compiler (see [supported compilers](https://github.com/pybind/pybind11#supported-compilers))
- [CMake](https://cmake.org/) ≥ 3.12
- Installing a package from PyPI:
```bash
pip install --no-binary=:all: pugixml
```
- Installing the development version from the git repository:
```bash
pip install git+https://github.com/miute/pugixml-python.git
```
## License
- **pugixml-python** is licensed under the [MIT License](https://github.com/miute/pugixml-python/blob/main/LICENSE).
- **pugixml** is licensed under the [MIT License](https://github.com/zeux/pugixml/blob/master/LICENSE.md).
Raw data
{
"_id": null,
"home_page": null,
"name": "pugixml",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.9",
"maintainer_email": null,
"keywords": "dom, xml, xpath, xml-parser",
"author": null,
"author_email": "Tetsuya Miura <miute.dev@gmail.com>",
"download_url": "https://files.pythonhosted.org/packages/ef/06/4e692989c0490cd6b786024225cc3cfe2feb54c59a62b6e390065163131d/pugixml-0.7.0.tar.gz",
"platform": null,
"description": "# Python bindings for pugixml\n\n[![PyPI](https://img.shields.io/pypi/v/pugixml)](https://pypi.org/project/pugixml/)\n[![PyPI - Python Version](https://img.shields.io/pypi/pyversions/pugixml)](https://pypi.org/project/pugixml/)\n[![PyPI - License](https://img.shields.io/pypi/l/pugixml)](https://pypi.org/project/pugixml/)\n[![pre-commit.ci status](https://results.pre-commit.ci/badge/github/miute/pugixml-python/main.svg)](https://results.pre-commit.ci/latest/github/miute/pugixml-python/main)\n[![tests](https://github.com/miute/pugixml-python/actions/workflows/tests.yml/badge.svg)](https://github.com/miute/pugixml-python/actions/workflows/tests.yml)\n[![build](https://github.com/miute/pugixml-python/actions/workflows/build.yml/badge.svg)](https://github.com/miute/pugixml-python/actions/workflows/build.yml)\n\n[pugixml](http://pugixml.org/) is a light-weight C++ XML processing library. It features:\n\n- DOM-like interface with rich traversal/modification capabilities\n- [Extremely fast](https://pugixml.org/benchmark.html) non-validating XML parser which constructs the DOM tree from an XML file/buffer\n- XPath 1.0 implementation for complex data-driven tree queries\n- Full Unicode support with Unicode interface variants and automatic encoding conversions\n\n## Documentation\n\n- pugixml-python\n - [API Reference](https://miute.github.io/pugixml-python/)\n- pugixml\n - [Quick-start guide](https://pugixml.org/docs/quickstart.html)\n - [Reference manual](https://pugixml.org/docs/manual.html)\n\n## Example\n\nLoading XML document from file:\n\n```python\nfrom pugixml import pugi\ndoc = pugi.XMLDocument()\nresult = doc.load_file('xgconsole.xml')\nif not result:\n print('parse error: status=%r description=%r' % (result.status, result.description()))\n```\n\nSearching for nodes/attributes with predicates:\n\n```python\ntools = doc.child('Profile').child('Tools')\n\n# Find child via predicate (looks for direct children only)\nnode = tools.find_child(lambda x: x.attribute('AllowRemote').as_bool())\nprint(node.attribute('Filename').value())\n\n# Find node via predicate (looks for all descendants in depth-first order)\nnode = doc.find_node(lambda x: x.attribute('AllowRemote').as_bool())\nprint(node.attribute('Filename').value())\n\n# Find attribute via predicate\nattr = tools.last_child().find_attribute(lambda x: x.name() == 'AllowRemote')\nprint(attr.value())\n```\n\nSelecting nodes via XPath expression:\n\n```python\ntools = doc.select_nodes('/Profile/Tools/Tool[@AllowRemote=\"true\" and @DeriveCaptionFrom=\"lastparam\"]')\nfor tool in tools:\n print(tool.node().attribute('Filename').value())\n```\n\nUsing query objects and variables:\n\n```python\nvarset = pugi.XPathVariableSet()\nvar = varset.add('remote', pugi.XPATH_TYPE_BOOLEAN)\nquery_remote_tools = pugi.XPathQuery('/Profile/Tools/Tool[@AllowRemote = string($remote)]', varset)\n\nvar.set(True)\ntools_remote = query_remote_tools.evaluate_node_set(doc)\nfor tool in tools_remote:\n tool.node().print(pugi.PrintWriter())\n\nvar.set(False)\ntools_local = query_remote_tools.evaluate_node_set(doc)\nfor tool in tools_local:\n tool.node().print(pugi.PrintWriter())\n```\n\n## Installation\n\n### Installing a package from PyPI\n\n```bash\npip install pugixml\n```\n\n### Building a package from source\n\n- Requirements:\n - C++17 compatible compiler (see [supported compilers](https://github.com/pybind/pybind11#supported-compilers))\n - [CMake](https://cmake.org/) \u2265 3.12\n\n- Installing a package from PyPI:\n\n ```bash\n pip install --no-binary=:all: pugixml\n ```\n\n- Installing the development version from the git repository:\n\n ```bash\n pip install git+https://github.com/miute/pugixml-python.git\n ```\n\n## License\n\n- **pugixml-python** is licensed under the [MIT License](https://github.com/miute/pugixml-python/blob/main/LICENSE).\n- **pugixml** is licensed under the [MIT License](https://github.com/zeux/pugixml/blob/master/LICENSE.md).\n",
"bugtrack_url": null,
"license": "MIT License Copyright (c) 2022 Tetsuya Miura Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ",
"summary": "Light-weight, simple and fast XML parser with XPath support",
"version": "0.7.0",
"project_urls": {
"Changelog": "https://miute.github.io/pugixml-python/changelog.html",
"Documentation": "https://miute.github.io/pugixml-python/",
"Repository": "https://github.com/miute/pugixml-python",
"pugixml": "https://pugixml.org/docs/quickstart.html"
},
"split_keywords": [
"dom",
" xml",
" xpath",
" xml-parser"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "e7a17d1e1ed517f8978c3bf071481d00bf439cfcb1a058eba061b960e6513faf",
"md5": "1123466231c17c6e428c6f66a43c8636",
"sha256": "bcd105c20ef073f8154bf173f3e745e9e19bf63b18a5202f07e19679edc16591"
},
"downloads": -1,
"filename": "pugixml-0.7.0-cp310-cp310-macosx_12_0_arm64.whl",
"has_sig": false,
"md5_digest": "1123466231c17c6e428c6f66a43c8636",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 245863,
"upload_time": "2025-01-14T15:12:29",
"upload_time_iso_8601": "2025-01-14T15:12:29.326065Z",
"url": "https://files.pythonhosted.org/packages/e7/a1/7d1e1ed517f8978c3bf071481d00bf439cfcb1a058eba061b960e6513faf/pugixml-0.7.0-cp310-cp310-macosx_12_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6a0829b648652a06b6311307770bc713b01dbcbc2598435c4828dbf95e8b1524",
"md5": "5f7c41e50022b02047791209d9c7c4a2",
"sha256": "089b0fb5e84c6dc35d042d689d75e793d71525a32ca4df133dd6332b7194e064"
},
"downloads": -1,
"filename": "pugixml-0.7.0-cp310-cp310-macosx_12_0_x86_64.whl",
"has_sig": false,
"md5_digest": "5f7c41e50022b02047791209d9c7c4a2",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 268804,
"upload_time": "2025-01-14T15:12:32",
"upload_time_iso_8601": "2025-01-14T15:12:32.125124Z",
"url": "https://files.pythonhosted.org/packages/6a/08/29b648652a06b6311307770bc713b01dbcbc2598435c4828dbf95e8b1524/pugixml-0.7.0-cp310-cp310-macosx_12_0_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "186ea5b7bd0f13f64761e25f619b264d49fd2856fc8bd8b5eb60774fa26876d3",
"md5": "7882ee5d2121573c74155c04077c11fb",
"sha256": "c80472b7b9aceacc8e862aff5efa50ddb411d75bbf7d4c56a37f88d56b614707"
},
"downloads": -1,
"filename": "pugixml-0.7.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "7882ee5d2121573c74155c04077c11fb",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 382345,
"upload_time": "2025-01-14T15:12:35",
"upload_time_iso_8601": "2025-01-14T15:12:35.119852Z",
"url": "https://files.pythonhosted.org/packages/18/6e/a5b7bd0f13f64761e25f619b264d49fd2856fc8bd8b5eb60774fa26876d3/pugixml-0.7.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "0160c1ff15eb2ee67f2245df4c16bdaefb4183219b5b32fdf5cedb4fc211d837",
"md5": "f8f746113866659e17dd27a98ab9f3f1",
"sha256": "f09266bc7d7d0a99e8177b7e154313e4786b95bb0c4946a713b484da55971b2f"
},
"downloads": -1,
"filename": "pugixml-0.7.0-cp310-cp310-win_amd64.whl",
"has_sig": false,
"md5_digest": "f8f746113866659e17dd27a98ab9f3f1",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 271024,
"upload_time": "2025-01-14T15:12:37",
"upload_time_iso_8601": "2025-01-14T15:12:37.571296Z",
"url": "https://files.pythonhosted.org/packages/01/60/c1ff15eb2ee67f2245df4c16bdaefb4183219b5b32fdf5cedb4fc211d837/pugixml-0.7.0-cp310-cp310-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "90c8d46416de37b9e5db92132207d82d6fd2c0c41effd09c3bf35013c8ea4cfe",
"md5": "c7c6af16ffa9b0e9c169b63266e07a27",
"sha256": "781434f9011367e556ab900085eee2c9201e30b524c168e20404fb9e163d13cc"
},
"downloads": -1,
"filename": "pugixml-0.7.0-cp311-cp311-macosx_12_0_arm64.whl",
"has_sig": false,
"md5_digest": "c7c6af16ffa9b0e9c169b63266e07a27",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 247215,
"upload_time": "2025-01-14T15:12:40",
"upload_time_iso_8601": "2025-01-14T15:12:40.768176Z",
"url": "https://files.pythonhosted.org/packages/90/c8/d46416de37b9e5db92132207d82d6fd2c0c41effd09c3bf35013c8ea4cfe/pugixml-0.7.0-cp311-cp311-macosx_12_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "496d0094ff75fc33ff1884676cca45a8bbe9eb85c24e1535622fb00d93d813d9",
"md5": "370454d0fc97491801edb57542201868",
"sha256": "c072138919bc25ff1705231303975994cc6d4922f9c40c5aba060da3d895fd0c"
},
"downloads": -1,
"filename": "pugixml-0.7.0-cp311-cp311-macosx_12_0_x86_64.whl",
"has_sig": false,
"md5_digest": "370454d0fc97491801edb57542201868",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 270055,
"upload_time": "2025-01-14T15:12:45",
"upload_time_iso_8601": "2025-01-14T15:12:45.026716Z",
"url": "https://files.pythonhosted.org/packages/49/6d/0094ff75fc33ff1884676cca45a8bbe9eb85c24e1535622fb00d93d813d9/pugixml-0.7.0-cp311-cp311-macosx_12_0_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "875fde6f94078ce9e5c2515a3742445f68d6618950af5b0899a7a8e4294a931d",
"md5": "f518cb1814af98c15f3fc9d996b8af51",
"sha256": "b3669d4b2cab6c7c559dffefbad3163fc38304f60e65a0868904c26f79323d1a"
},
"downloads": -1,
"filename": "pugixml-0.7.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "f518cb1814af98c15f3fc9d996b8af51",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 384061,
"upload_time": "2025-01-14T15:12:46",
"upload_time_iso_8601": "2025-01-14T15:12:46.889037Z",
"url": "https://files.pythonhosted.org/packages/87/5f/de6f94078ce9e5c2515a3742445f68d6618950af5b0899a7a8e4294a931d/pugixml-0.7.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8f6a70f37d4114d989ae359c405e30c74d42ee73207ba2411b32a89338395802",
"md5": "82bfe53729b5e5c41ecdc2accf22da18",
"sha256": "7e317b4d5e4424f828e3ccdfe14f7d1facd6c2744f57b661ec8a701ac2243685"
},
"downloads": -1,
"filename": "pugixml-0.7.0-cp311-cp311-win_amd64.whl",
"has_sig": false,
"md5_digest": "82bfe53729b5e5c41ecdc2accf22da18",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 272464,
"upload_time": "2025-01-14T15:12:50",
"upload_time_iso_8601": "2025-01-14T15:12:50.679729Z",
"url": "https://files.pythonhosted.org/packages/8f/6a/70f37d4114d989ae359c405e30c74d42ee73207ba2411b32a89338395802/pugixml-0.7.0-cp311-cp311-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f10e0d67149a38bdc23ef85c40252e622009cda3dd62ed45a87471041d7f421d",
"md5": "917ec3c383634411cd0ed22ae1956394",
"sha256": "b20e3aab6f3808eed3e83d886abd2e5a37b8a2a49039679781c798c95af02a6f"
},
"downloads": -1,
"filename": "pugixml-0.7.0-cp312-cp312-macosx_12_0_arm64.whl",
"has_sig": false,
"md5_digest": "917ec3c383634411cd0ed22ae1956394",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 249256,
"upload_time": "2025-01-14T15:12:52",
"upload_time_iso_8601": "2025-01-14T15:12:52.872059Z",
"url": "https://files.pythonhosted.org/packages/f1/0e/0d67149a38bdc23ef85c40252e622009cda3dd62ed45a87471041d7f421d/pugixml-0.7.0-cp312-cp312-macosx_12_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "39100f61f4a51a683e75b4ad517d3dbbc1667e305c2347972c814276d5399632",
"md5": "0a2382c46330af1fb789b4f76cca1586",
"sha256": "928d5ba9c72b401befa7062d3f68bee17f1cf82e75aa12d16ea1801a37b59419"
},
"downloads": -1,
"filename": "pugixml-0.7.0-cp312-cp312-macosx_12_0_x86_64.whl",
"has_sig": false,
"md5_digest": "0a2382c46330af1fb789b4f76cca1586",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 277913,
"upload_time": "2025-01-14T15:12:54",
"upload_time_iso_8601": "2025-01-14T15:12:54.084116Z",
"url": "https://files.pythonhosted.org/packages/39/10/0f61f4a51a683e75b4ad517d3dbbc1667e305c2347972c814276d5399632/pugixml-0.7.0-cp312-cp312-macosx_12_0_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "046f0ec3ab57535a4fb6a06c654b4bbc7645b5472da9847e893710564f8db88a",
"md5": "55f19310fe2ce4b4a4fec755c46a82c1",
"sha256": "b47bc94bf093ff67989a8aa25bff29e9cb907c2cb4fec3183a9b27e937cae538"
},
"downloads": -1,
"filename": "pugixml-0.7.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "55f19310fe2ce4b4a4fec755c46a82c1",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 382868,
"upload_time": "2025-01-14T15:12:55",
"upload_time_iso_8601": "2025-01-14T15:12:55.652447Z",
"url": "https://files.pythonhosted.org/packages/04/6f/0ec3ab57535a4fb6a06c654b4bbc7645b5472da9847e893710564f8db88a/pugixml-0.7.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "22567711a99dedb36fddc9528874975f76a27699dc5aced1eff00a73fa780946",
"md5": "bc8ebba2c5f000184ebd262b1572b00b",
"sha256": "5c5649956ab9a36ca3a1284f92a9606d6f74dfeb6b58c8f0d0935492e61c83a8"
},
"downloads": -1,
"filename": "pugixml-0.7.0-cp312-cp312-win_amd64.whl",
"has_sig": false,
"md5_digest": "bc8ebba2c5f000184ebd262b1572b00b",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 274898,
"upload_time": "2025-01-14T15:12:56",
"upload_time_iso_8601": "2025-01-14T15:12:56.991389Z",
"url": "https://files.pythonhosted.org/packages/22/56/7711a99dedb36fddc9528874975f76a27699dc5aced1eff00a73fa780946/pugixml-0.7.0-cp312-cp312-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3f37ea0dc6d8f6add70f745e4976b574644b02c71c29b40358ddcb538830ef95",
"md5": "ba5231f48dcfc80c3c5e3b81aafe52c1",
"sha256": "90182e6e7b759c7822b0041a557036e617b4e678d9c11b05931b5c43bf4f7422"
},
"downloads": -1,
"filename": "pugixml-0.7.0-cp313-cp313-macosx_12_0_arm64.whl",
"has_sig": false,
"md5_digest": "ba5231f48dcfc80c3c5e3b81aafe52c1",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 249251,
"upload_time": "2025-01-14T15:12:58",
"upload_time_iso_8601": "2025-01-14T15:12:58.292249Z",
"url": "https://files.pythonhosted.org/packages/3f/37/ea0dc6d8f6add70f745e4976b574644b02c71c29b40358ddcb538830ef95/pugixml-0.7.0-cp313-cp313-macosx_12_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3cde8248ac4f220fbaf4e86fd6a24f3d712e729da11793863b64c229a8cb1c50",
"md5": "7bfbaa1d9c59611a445eea3d0ec7c588",
"sha256": "db13262664b7492541128b630730cecb7ca16b36bf0873c7fd5082b12a986c8d"
},
"downloads": -1,
"filename": "pugixml-0.7.0-cp313-cp313-macosx_12_0_x86_64.whl",
"has_sig": false,
"md5_digest": "7bfbaa1d9c59611a445eea3d0ec7c588",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 277958,
"upload_time": "2025-01-14T15:13:00",
"upload_time_iso_8601": "2025-01-14T15:13:00.002607Z",
"url": "https://files.pythonhosted.org/packages/3c/de/8248ac4f220fbaf4e86fd6a24f3d712e729da11793863b64c229a8cb1c50/pugixml-0.7.0-cp313-cp313-macosx_12_0_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6e442c69fbe6774b5349ba25f144509a333140244abbd003aa15e9ef0f774e15",
"md5": "45bba20ce8ff70e5e0ba5b42bdcab4c6",
"sha256": "d6385d4b1a172148205b42400fd7bcb890c25743bad59967dd73603a84204273"
},
"downloads": -1,
"filename": "pugixml-0.7.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "45bba20ce8ff70e5e0ba5b42bdcab4c6",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 382795,
"upload_time": "2025-01-14T15:13:01",
"upload_time_iso_8601": "2025-01-14T15:13:01.244196Z",
"url": "https://files.pythonhosted.org/packages/6e/44/2c69fbe6774b5349ba25f144509a333140244abbd003aa15e9ef0f774e15/pugixml-0.7.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "bd6717fd0f922bd42824ec5450a46135a77d56986175a2f63b48b96040a5eb24",
"md5": "dfeefb11a8e3a58d98a9aade3fef550f",
"sha256": "fd4e15089dcf339a3fa30c646bd5937bb31743d8d801643b7910a45c0da0887e"
},
"downloads": -1,
"filename": "pugixml-0.7.0-cp313-cp313-win_amd64.whl",
"has_sig": false,
"md5_digest": "dfeefb11a8e3a58d98a9aade3fef550f",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 274932,
"upload_time": "2025-01-14T15:13:04",
"upload_time_iso_8601": "2025-01-14T15:13:04.404572Z",
"url": "https://files.pythonhosted.org/packages/bd/67/17fd0f922bd42824ec5450a46135a77d56986175a2f63b48b96040a5eb24/pugixml-0.7.0-cp313-cp313-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6faf6c0ddf156d618355c4fa1b8ee38fad46db4a4f750afbae7048e1cf7e0838",
"md5": "55ed68a7d468d87cc95c85bd8b99084e",
"sha256": "930cc124d38e409506ff8bb1356cc4db140651e0090f0d19a793b3e76ffe9191"
},
"downloads": -1,
"filename": "pugixml-0.7.0-cp39-cp39-macosx_12_0_arm64.whl",
"has_sig": false,
"md5_digest": "55ed68a7d468d87cc95c85bd8b99084e",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 246013,
"upload_time": "2025-01-14T15:13:06",
"upload_time_iso_8601": "2025-01-14T15:13:06.352399Z",
"url": "https://files.pythonhosted.org/packages/6f/af/6c0ddf156d618355c4fa1b8ee38fad46db4a4f750afbae7048e1cf7e0838/pugixml-0.7.0-cp39-cp39-macosx_12_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "82aac366a0cfb03bdc376a86905e9dd14b61e4d7a17ed5ac2018db829d47d0e1",
"md5": "b1dcc53db1d70b54b508e8554f4191d3",
"sha256": "9e4b1597b15ae9047900bd08972961b60a26f57ebee3dcedb7a40036feb4f363"
},
"downloads": -1,
"filename": "pugixml-0.7.0-cp39-cp39-macosx_12_0_x86_64.whl",
"has_sig": false,
"md5_digest": "b1dcc53db1d70b54b508e8554f4191d3",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 268937,
"upload_time": "2025-01-14T15:13:07",
"upload_time_iso_8601": "2025-01-14T15:13:07.790306Z",
"url": "https://files.pythonhosted.org/packages/82/aa/c366a0cfb03bdc376a86905e9dd14b61e4d7a17ed5ac2018db829d47d0e1/pugixml-0.7.0-cp39-cp39-macosx_12_0_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "9573cab2e71fb130c3bc174ef17a8a561edc6befe05657cf007f53e3e1a409e2",
"md5": "7bb4a0ca14c6ff9b9fbad0eb4e6da844",
"sha256": "5963069049f52c773c07165b6024400ec00d0e85e852ee971944ef72fa65c69f"
},
"downloads": -1,
"filename": "pugixml-0.7.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "7bb4a0ca14c6ff9b9fbad0eb4e6da844",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 382871,
"upload_time": "2025-01-14T15:13:09",
"upload_time_iso_8601": "2025-01-14T15:13:09.204704Z",
"url": "https://files.pythonhosted.org/packages/95/73/cab2e71fb130c3bc174ef17a8a561edc6befe05657cf007f53e3e1a409e2/pugixml-0.7.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "31adee63333cf4ed315cee33ef5518d08fb4a092c0d90de656e7f42b97c702cc",
"md5": "5a07222d427cba93622d96a1cfc02f4f",
"sha256": "db42151f615e37aa48cbf7b2c70591a26ccf5fb56c3ab19438d7a36c95aaedac"
},
"downloads": -1,
"filename": "pugixml-0.7.0-cp39-cp39-win_amd64.whl",
"has_sig": false,
"md5_digest": "5a07222d427cba93622d96a1cfc02f4f",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 255301,
"upload_time": "2025-01-14T15:13:11",
"upload_time_iso_8601": "2025-01-14T15:13:11.508239Z",
"url": "https://files.pythonhosted.org/packages/31/ad/ee63333cf4ed315cee33ef5518d08fb4a092c0d90de656e7f42b97c702cc/pugixml-0.7.0-cp39-cp39-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ef064e692989c0490cd6b786024225cc3cfe2feb54c59a62b6e390065163131d",
"md5": "31ce77fddabd4547b15ae17295187156",
"sha256": "561011765e0fafb949bb6794e2506f19c9741917c3cd306c2192a931af9ff2ff"
},
"downloads": -1,
"filename": "pugixml-0.7.0.tar.gz",
"has_sig": false,
"md5_digest": "31ce77fddabd4547b15ae17295187156",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.9",
"size": 359403,
"upload_time": "2025-01-14T15:13:12",
"upload_time_iso_8601": "2025-01-14T15:13:12.828029Z",
"url": "https://files.pythonhosted.org/packages/ef/06/4e692989c0490cd6b786024225cc3cfe2feb54c59a62b6e390065163131d/pugixml-0.7.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2025-01-14 15:13:12",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "miute",
"github_project": "pugixml-python",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"tox": true,
"lcname": "pugixml"
}