python-MarkupSafe
Port variant py310
Summary Jinja2.Markup string implementation module (3.10)
Package version 2.1.3
Homepage https://palletsprojects.com/p/markupsafe/
Keywords python
Maintainer Python Automaton
License Not yet specified
Other variants v11
Ravenports Buildsheet | History
Ravensource Port Directory | History
Last modified 13 JUN 2023, 11:42:56 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)
PY310 ON Build using Python 3.10 PY311 OFF Build using Python 3.11
Package Dependencies by Type
Build (only) python-setuptools:single:py310
autoselect-python:single:standard
Build and Runtime python310:single:standard
Download groups
main mirror://PYPI/M/MarkupSafe
Distribution File Information
af598ed32d6ae86f1b747b82783958b1a4ab8f617b06fe68795c7f026abbdcad 19132 MarkupSafe-2.1.3.tar.gz
Ports that require python-MarkupSafe:py310
python-Jinja2:py310 Fully featured template engine (3.10)
python-Mako:py310 Super-fast template library (3.10)
python-Werkzeug:py310 Comprehensive WSGI web application library (3.10)
python-gi-docgen:py310 Documentation tool for GObject-based libs (3.10)
python-mkdocs:py310 Project documentation with Markdown (3.10)
python-mkdocstrings:py310 Documentation from sources for MkDocs (3.10)
python-salt:py310 Remote execution and config mgmt system (3.10)