• Home
Name Date Size #Lines LOC

..--

.gitattributesD12-May-2024631 1615

.gitignoreD12-May-202418 32

CHANGES.rstD12-May-20242.1 KiB11366

LICENSE.rstD12-May-20241.4 KiB2923

MANIFEST.inD12-May-2024186 109

NOTICED12-May-20241.4 KiB2923

OAT.xmlD12-May-20244.4 KiB7217

PKG-INFOD12-May-20243.7 KiB9975

README.OpenSourceD12-May-2024687 1110

README.modificationD12-May-2024780 2216

README.rstD12-May-20241.9 KiB7047

__init__.pyD12-May-20248.7 KiB289210

_native.pyD12-May-20241.9 KiB7658

_speedups.cD12-May-20247.2 KiB340295

_speedups.pyiD12-May-2024229 107

bundle.jsonD12-May-20241.1 KiB3534

py.typedD12-May-20240

tox.iniD12-May-2024525 2520

README.OpenSource

1[
2    {
3        "Name"                  : "MarkupSafe",
4        "License"               : "BSD 3-clause License",
5        "License File"          : "LICENSE.rst",
6        "Version Number"        : "2.0.1",
7        "Upstream URL"          : "https://palletsprojects.com/p/markupsafe/",
8        "Description"           : "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. Escaping is implemented in C so it is as efficient as possible."
9    }
10]
11

README.modification

1Name: MarkupSafe
2Version: 2.0.1
3License: BSD 3-clause License
4
5Website: https://palletsprojects.com/p/markupsafe/
6
7Description:(from Website)
8MarkupSafe implements a text object that escapes characters so it is safe to
9use in HTML and XML. Characters that have special meanings are replaced so that
10they display as the actual characters. This mitigates injection attacks,
11meaning untrusted user input can safely be displayed on a page.
12Escaping is implemented in C so it is as efficient as possible
13
14
15Source:
16https://github.com/pallets/markupsafe/archive/refs/tags/2.0.1.zip
17MD5: 43fd756864fe42063068e092e220c57b
18
19Local Modifications:
20Only includes the markup directory from the tarball and the LICENSE and
21AUTHORS files, create soft link NOTICE to LICENSE, removing other stuff.
22

README.rst

1MarkupSafe
2==========
3
4MarkupSafe implements a text object that escapes characters so it is
5safe to use in HTML and XML. Characters that have special meanings are
6replaced so that they display as the actual characters. This mitigates
7injection attacks, meaning untrusted user input can safely be displayed
8on a page.
9
10
11Installing
12----------
13
14Install and update using `pip`_:
15
16.. code-block:: text
17
18    pip install -U MarkupSafe
19
20.. _pip: https://pip.pypa.io/en/stable/quickstart/
21
22
23Examples
24--------
25
26.. code-block:: pycon
27
28    >>> from markupsafe import Markup, escape
29
30    >>> # escape replaces special characters and wraps in Markup
31    >>> escape("<script>alert(document.cookie);</script>")
32    Markup('&lt;script&gt;alert(document.cookie);&lt;/script&gt;')
33
34    >>> # wrap in Markup to mark text "safe" and prevent escaping
35    >>> Markup("<strong>Hello</strong>")
36    Markup('<strong>hello</strong>')
37
38    >>> escape(Markup("<strong>Hello</strong>"))
39    Markup('<strong>hello</strong>')
40
41    >>> # Markup is a str subclass
42    >>> # methods and operators escape their arguments
43    >>> template = Markup("Hello <em>{name}</em>")
44    >>> template.format(name='"World"')
45    Markup('Hello <em>&#34;World&#34;</em>')
46
47
48Donate
49------
50
51The Pallets organization develops and supports MarkupSafe and other
52popular packages. In order to grow the community of contributors and
53users, and allow the maintainers to devote more time to the projects,
54`please donate today`_.
55
56.. _please donate today: https://palletsprojects.com/donate
57
58
59Links
60-----
61
62-   Documentation: https://markupsafe.palletsprojects.com/
63-   Changes: https://markupsafe.palletsprojects.com/changes/
64-   PyPI Releases: https://pypi.org/project/MarkupSafe/
65-   Source Code: https://github.com/pallets/markupsafe/
66-   Issue Tracker: https://github.com/pallets/markupsafe/issues/
67-   Website: https://palletsprojects.com/p/markupsafe/
68-   Twitter: https://twitter.com/PalletsTeam
69-   Chat: https://discord.gg/pallets
70