Python bindings for the Uppsala XML library
Project description
pyuppsala
Python bindings for the Uppsala XML library -- a zero-dependency, pure-Rust implementation of XML 1.0, Namespaces, XPath 1.0, and XSD validation.
pyuppsala gives you a fast, correct, and memory-safe XML toolkit from Python with no C dependencies to compile and no transitive native libraries to audit.
This release is against 0.9 of Uppsala library.
Features
- XML 1.0 parsing with full well-formedness checking
- Namespace-aware DOM with tree mutation (create, append, insert, remove, detach)
- XPath 1.0 evaluation (all axes, functions, predicates)
- XSD validation (structures + datatypes, 40+ built-in types, facets, complex types)
- XSD regex pattern matching (Unicode categories, blocks, character class subtraction)
- XSLT 1.0 transforms with bounded template recursion
- Imperative XML builder (
XmlWriter) for constructing output without a DOM - Serialization with pretty-printing, compact output, and streaming to files
- Automatic encoding detection for UTF-8 and UTF-16 (LE/BE)
- lxml.etree-compatible API via
pyuppsala.etree, a near drop-in for much oflxml.etreebacked by Uppsala's secure parser - Native batch and fast etree paths for parsing many documents and running simple large-tree aggregates without one Python object per matched node
Read the full documentation
Security defaults
pyuppsala keeps the main XML attack classes bounded by default:
- Parser resource caps are enabled by default for element depth, entity expansion size, and entity-reference nesting.
- DTDs and entity declarations are accepted by default for compatibility, but
entity expansion is capped. Use
forbid_dtd=Trueorforbid_entities=Truewhen parsing untrusted XML that should not contain DTDs or entity declarations. - XPath evaluation is capped by expression depth and by a per-evaluation node
visit budget. Do not let untrusted callers choose
max_depthormax_node_visits. - XSD regex matching has group-depth and backtracking-step limits. Do not let
untrusted callers raise
max_steps. - XSLT template recursion is capped by default. Treat stylesheets as trusted application configuration; EXSLT compatibility is enabled by default.
Documentmutators rejectNodehandles from another document. UseDocument.import_subtree()for intentional cross-document copies.pyuppsala.etreekeeps parser caps on by default.huge_tree=Truelifts those caps for lxml compatibility and should only be used with trusted XML.- XInclude processing is explicit. Remote includes require
network_access=True; local includes are restricted to the including document's base directory and are size-limited. - Native fetch helpers (available only in builds with the default-on
netfeature; gate use onpyuppsala._HAS_NET) cap response bodies at 128 MiB by default, includingfile://reads, and keep TLS verification enabled by default. Apply your own URL allowlist before fetching attacker-controlled URLs.
See the resource limits and hardening guide and the API security notes for all knobs and default values.
Installation
python3 -m pip install pyuppsala
Or with uv:
uv add pyuppsala
Wheels are compiled from Rust via maturin. Python 3.10+ is required.
Quick start
Parse and query
from pyuppsala import Document, XPathEvaluator
doc = Document("<bookstore><book><title>Moby Dick</title></book></bookstore>")
doc.prepare_xpath()
xpath = XPathEvaluator()
title = xpath.evaluate(doc, "string(//title)")
print(title) # "Moby Dick"
Build XML
from pyuppsala import XmlWriter
w = XmlWriter()
w.write_declaration()
w.start_element("catalog", [("xmlns", "urn:example")])
w.start_element("item", [("id", "1")])
w.text("Widget")
w.end_element("item")
w.end_element("catalog")
print(w.to_string())
Validate against an XSD schema
from pyuppsala import XsdValidator
schema = """\
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="greeting" type="xs:string"/>
</xs:schema>
"""
validator = XsdValidator(schema)
print(validator.is_valid_str("<greeting>Hello!</greeting>")) # True
print(validator.is_valid_str("<greeting><bad/></greeting>")) # False
Mutate the DOM
from pyuppsala import Document
doc = Document("<root><a/></root>")
root = doc.document_element
b = doc.create_element("b")
doc.append_child(root, b)
print(doc.to_xml()) # <root><a/><b/></root>
XSD regex
from pyuppsala import XsdRegex
regex = XsdRegex(r"[0-9]{5}")
print(regex.is_match("12345")) # True
print(regex.is_match("abcde")) # False
lxml-compatible etree API
Code written for lxml.etree runs after swapping the import. Elements are live
views over the underlying document, with stable identity and the familiar
.text/.tail/.attrib model.
from pyuppsala import etree # instead of: from lxml import etree
root = etree.fromstring("<catalog><book id='1'>Dune</book></catalog>")
print(root.find("book").text) # Dune
print(root[0].get("id")) # 1
cat = etree.Element("catalog")
book = etree.SubElement(cat, "book", {"id": "2"})
book.text = "Neuromancer"
print(etree.tostring(cat, encoding="unicode"))
# <catalog><book id="2">Neuromancer</book></catalog>
See the etree documentation for the supported and unsupported feature matrix.
API overview
| Class / function | Purpose |
|---|---|
Document(xml) |
Parse XML string into a DOM |
Document.from_bytes(data) |
Parse XML bytes (auto-detects UTF-8/UTF-16) |
Document.empty() |
Create an empty document for building from scratch |
Node |
A handle to a node in the document tree |
QName |
A qualified XML name (local name + optional namespace + prefix) |
Attribute |
An XML attribute (name + value) |
XPathEvaluator |
Evaluate XPath 1.0 expressions |
XsdValidator(schema) |
Validate documents against an XSD schema |
XmlWriter |
Imperative XML builder (no DOM needed) |
XsdRegex(pattern) |
XSD regular expression pattern matcher |
Xslt(stylesheet_xml) |
Compile and apply XSLT 1.0 stylesheets |
parse(xml) |
Module-level shorthand for Document(xml) |
parse_bytes(data) |
Module-level shorthand for Document.from_bytes(data) |
parse_many(items) |
Parse many XML strings or byte strings in native worker threads |
fetch_many(urls) |
Fetch many HTTP(S) or file URLs with body limits and per-item results (requires pyuppsala._HAS_NET) |
fetch_and_parse_many(urls) |
Fetch many URLs and parse each response as XML (requires pyuppsala._HAS_NET) |
pyuppsala.etree |
lxml.etree-compatible API (Element, SubElement, fromstring, tostring, find/findall, XPath, XMLSchema, ...) |
etree.fromstring_many(items) |
Parse many documents into etree roots with per-item errors |
_Element.fast_*() |
Native count/existence/attribute/text-group scans for large etree subtrees |
Exceptions
| Exception | Raised when |
|---|---|
XmlParseError |
XML is syntactically malformed |
XmlWellFormednessError |
XML violates well-formedness constraints |
XmlNamespaceError |
Namespace prefix is undeclared or misused |
XPathError |
XPath expression is invalid |
XsdValidationError |
XSD schema itself is invalid |
All exceptions inherit from Exception.
Type stubs
Type stubs (pyuppsala/__init__.pyi and pyuppsala/etree.pyi, marked with
py.typed) ship with the package for full IDE auto-completion and type-checking
with mypy/pyright.
Development
# Clone the repository
git clone https://github.com/kushaldas/pyuppsala.git
cd pyuppsala
# Set up the environment with uv
uv sync
# Build the native extension in development mode
uv run maturin develop
# Run the test suite
uv run pytest
# Build a release wheel
uv run maturin build --release
License
BSD-2-Clause
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distributions
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file pyuppsala-0.9.1.tar.gz.
File metadata
- Download URL: pyuppsala-0.9.1.tar.gz
- Upload date:
- Size: 238.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
688218de33b24591ba4303c5c7c43c367c61e48ee7079c7af8e5f8b07a82fe1f
|
|
| MD5 |
bb9fea9dab49ed4dadeadd2ddb8843a1
|
|
| BLAKE2b-256 |
764417cb366257c44dea141af17d6448c2192d674a5851b6c55e67b066a6164d
|
Provenance
The following attestation bundles were made for pyuppsala-0.9.1.tar.gz:
Publisher:
release.yml on kushaldas/pyuppsala
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyuppsala-0.9.1.tar.gz -
Subject digest:
688218de33b24591ba4303c5c7c43c367c61e48ee7079c7af8e5f8b07a82fe1f - Sigstore transparency entry: 2194735644
- Sigstore integration time:
-
Permalink:
kushaldas/pyuppsala@099ff822a1199187f48d66d0fef7d65b28690ef7 -
Branch / Tag:
refs/tags/v0.9.1 - Owner: https://github.com/kushaldas
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@099ff822a1199187f48d66d0fef7d65b28690ef7 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pyuppsala-0.9.1-cp310-abi3-win_arm64.whl.
File metadata
- Download URL: pyuppsala-0.9.1-cp310-abi3-win_arm64.whl
- Upload date:
- Size: 1.8 MB
- Tags: CPython 3.10+, Windows ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d0bf188e7ad7ed18851363ac32490afad5022b61f96419c119fff58f4e3e375f
|
|
| MD5 |
e5412d392126b205142663b55368ab6a
|
|
| BLAKE2b-256 |
85c62162ed5530ee06697af8e2427b13d3a96358c684845ad9fbe906774df418
|
Provenance
The following attestation bundles were made for pyuppsala-0.9.1-cp310-abi3-win_arm64.whl:
Publisher:
release.yml on kushaldas/pyuppsala
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyuppsala-0.9.1-cp310-abi3-win_arm64.whl -
Subject digest:
d0bf188e7ad7ed18851363ac32490afad5022b61f96419c119fff58f4e3e375f - Sigstore transparency entry: 2194735651
- Sigstore integration time:
-
Permalink:
kushaldas/pyuppsala@099ff822a1199187f48d66d0fef7d65b28690ef7 -
Branch / Tag:
refs/tags/v0.9.1 - Owner: https://github.com/kushaldas
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@099ff822a1199187f48d66d0fef7d65b28690ef7 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pyuppsala-0.9.1-cp310-abi3-win_amd64.whl.
File metadata
- Download URL: pyuppsala-0.9.1-cp310-abi3-win_amd64.whl
- Upload date:
- Size: 1.9 MB
- Tags: CPython 3.10+, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ea55f5ff28a074850a9208f3d8deeabf148dc7c5ed62c144ccd29f06ffa32c71
|
|
| MD5 |
b8d7b176d2f1434cd97ced27d0ff5fcf
|
|
| BLAKE2b-256 |
2beddc12ff30d36cb2d86be06401baa7086d2ca8eb228298c350d165efe6f871
|
Provenance
The following attestation bundles were made for pyuppsala-0.9.1-cp310-abi3-win_amd64.whl:
Publisher:
release.yml on kushaldas/pyuppsala
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyuppsala-0.9.1-cp310-abi3-win_amd64.whl -
Subject digest:
ea55f5ff28a074850a9208f3d8deeabf148dc7c5ed62c144ccd29f06ffa32c71 - Sigstore transparency entry: 2194735666
- Sigstore integration time:
-
Permalink:
kushaldas/pyuppsala@099ff822a1199187f48d66d0fef7d65b28690ef7 -
Branch / Tag:
refs/tags/v0.9.1 - Owner: https://github.com/kushaldas
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@099ff822a1199187f48d66d0fef7d65b28690ef7 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pyuppsala-0.9.1-cp310-abi3-manylinux_2_28_x86_64.whl.
File metadata
- Download URL: pyuppsala-0.9.1-cp310-abi3-manylinux_2_28_x86_64.whl
- Upload date:
- Size: 1.9 MB
- Tags: CPython 3.10+, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
646f7a477d343a22b15bc506f66dfb14a8141866f2d83d2924f754f39bf9a8ba
|
|
| MD5 |
ff0ffe0b4db4a1901d5210d35a979edb
|
|
| BLAKE2b-256 |
61f474fd79b8ec2470ddc1f085791faa89ef2c26fac11a985f14ff1255263fda
|
Provenance
The following attestation bundles were made for pyuppsala-0.9.1-cp310-abi3-manylinux_2_28_x86_64.whl:
Publisher:
release.yml on kushaldas/pyuppsala
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyuppsala-0.9.1-cp310-abi3-manylinux_2_28_x86_64.whl -
Subject digest:
646f7a477d343a22b15bc506f66dfb14a8141866f2d83d2924f754f39bf9a8ba - Sigstore transparency entry: 2194735661
- Sigstore integration time:
-
Permalink:
kushaldas/pyuppsala@099ff822a1199187f48d66d0fef7d65b28690ef7 -
Branch / Tag:
refs/tags/v0.9.1 - Owner: https://github.com/kushaldas
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@099ff822a1199187f48d66d0fef7d65b28690ef7 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pyuppsala-0.9.1-cp310-abi3-macosx_11_0_arm64.whl.
File metadata
- Download URL: pyuppsala-0.9.1-cp310-abi3-macosx_11_0_arm64.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.10+, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c7ea0df29fd49382130b68c93f0cf2de84070d0c5ca603b82e654c37914fb87d
|
|
| MD5 |
83daa92c2c52e22010e2a83c9ebca8cf
|
|
| BLAKE2b-256 |
7d7643d218827b2db7b18f09a62deebc64d1a73c6e8b37d51ae2bc020aafc3d4
|
Provenance
The following attestation bundles were made for pyuppsala-0.9.1-cp310-abi3-macosx_11_0_arm64.whl:
Publisher:
release.yml on kushaldas/pyuppsala
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyuppsala-0.9.1-cp310-abi3-macosx_11_0_arm64.whl -
Subject digest:
c7ea0df29fd49382130b68c93f0cf2de84070d0c5ca603b82e654c37914fb87d - Sigstore transparency entry: 2194735657
- Sigstore integration time:
-
Permalink:
kushaldas/pyuppsala@099ff822a1199187f48d66d0fef7d65b28690ef7 -
Branch / Tag:
refs/tags/v0.9.1 - Owner: https://github.com/kushaldas
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@099ff822a1199187f48d66d0fef7d65b28690ef7 -
Trigger Event:
push
-
Statement type: