python-MarkupSafe
Port variant v11
Summary Jinja2.Markup string implementation module (3.11)
Package version 2.1.5
Homepage https://palletsprojects.com/p/markupsafe/
Keywords python
Maintainer Python Automaton
License Not yet specified
Other variants v12
Ravenports Buildsheet | History
Ravensource Port Directory | History
Last modified 03 FEB 2024, 15:41:37 UTC
Port created 21 APR 2017, 18:54:39 UTC
Subpackage Descriptions
single MarkupSafe ========== MarkupSafe implements a text object that escapes characters so it is safe to use in HTML and XML. Characters that have special meanings are replaced so that they display as the actual characters. This mitigates injection attacks, meaning untrusted user input can safely be displayed on a page. Installing ---------- Install and update using `pip`_: .. code-block:: text pip install -U MarkupSafe .. _pip: https://pip.pypa.io/en/stable/getting-started/ Examples -------- .. code-block:: pycon >>> from markupsafe import Markup, escape >>> # escape replaces special characters and wraps in Markup >>> escape("") Markup('<script>alert(document.cookie);</script>') >>> # wrap in Markup to mark text "safe" and prevent escaping >>> Markup("Hello") Markup('hello') >>> escape(Markup("Hello")) Markup('hello') >>> # Markup is a str subclass >>> # methods and operators escape their arguments >>> template = Markup("Hello {name}") >>> template.format(name='"World"') Markup('Hello "World"') Donate ------ The Pallets organization develops and supports MarkupSafe and other popular packages. In order to grow the community of contributors and users, and allow the maintainers to devote more time to the projects, `please donate today`_. .. _please donate today: https://palletsprojects.com/donate Links ----- - Documentation: https://markupsafe.palletsprojects.com/ - Changes: https://markupsafe.palletsprojects.com/changes/ - PyPI Releases: https://pypi.org/project/MarkupSafe/ - Source Code: https://github.com/pallets/markupsafe/ - Issue Tracker: https://github.com/pallets/markupsafe/issues/ - Chat: https://discord.gg/pallets
Configuration Switches (platform-specific settings discarded)
PY311 ON Build using Python 3.11 PY312 OFF Build using Python 3.12
Package Dependencies by Type
Build (only) python-setuptools:single:v11
autoselect-python:single:standard
Build and Runtime python311:single:standard
Download groups
main mirror://PYPI/M/MarkupSafe
Distribution File Information
d283d37a890ba4c1ae73ffadf8046435c76e7bc2247bbb63c00bd1a709c6544b 19384 MarkupSafe-2.1.5.tar.gz
Ports that require python-MarkupSafe:v11
python-Jinja2:v11 Fully featured template engine (3.11)
python-Mako:v11 Super-fast template library (3.11)
python-Werkzeug:v11 Comprehensive WSGI web application library (3.11)
python-gi-docgen:v11 Documentation tool for GObject-based libs (3.11)
python-mkdocs-autorefs:v11 Automatically link across pages in MkDocs (3.11)
python-mkdocs:v11 Project documentation with Markdown (3.11)
python-mkdocstrings:v11 Documentation from sources for MkDocs (3.11)
python-salt:v11 Remote execution and config mgmt system (3.11)