cmeel-tinyxml

2.6.2.3 · deprecated · verified Fri Apr 17

cmeel-tinyxml is a `cmeel` distribution for the TinyXML C++ library. As indicated by its PyPI summary, TinyXML is considered "an obsolete thing". This package primarily serves to provide pre-built wheels for the TinyXML C++ library, making it available as a build dependency for other Python packages that wrap C++ code. The current version is 2.6.2.3, with frequent releases driven by `cmeel`'s build process.

Common errors

Warnings

Install

Quickstart

This package is designed to provide the TinyXML C++ library as a build dependency. It does not offer a direct, user-facing Python API for XML parsing. The quickstart code reflects that direct Python usage is not common or intended for this library.

# cmeel-tinyxml is primarily a cmeel distribution of the TinyXML C++ library.
# It is intended as a build dependency for other Python packages that wrap C++ code.
# This package does not provide a direct, user-facing Python API for XML parsing.
# Attempting to import or use 'tinyxml' directly is not the intended use case.
#
# If you need to parse XML in Python, consider standard libraries like `xml.etree.ElementTree`
# or third-party libraries like `lxml`.
pass

view raw JSON →