Skip to main content

Safely add untrusted strings to HTML/XML markup.

Project 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.

Installing

Install and update using pip:

pip install -U MarkupSafe

Examples

>>> from markupsafe import Markup, escape

>>> # escape replaces special characters and wraps in Markup
>>> escape("<script>alert(document.cookie);</script>")
Markup('&lt;script&gt;alert(document.cookie);&lt;/script&gt;')

>>> # wrap in Markup to mark text "safe" and prevent escaping
>>> Markup("<strong>Hello</strong>")
Markup('<strong>hello</strong>')

>>> escape(Markup("<strong>Hello</strong>"))
Markup('<strong>hello</strong>')

>>> # Markup is a str subclass
>>> # methods and operators escape their arguments
>>> template = Markup("Hello <em>{name}</em>")
>>> template.format(name='"World"')
Markup('Hello <em>&#34;World&#34;</em>')

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

MarkupSafe-2.1.1.tar.gz (18.7 kB view details)

Uploaded Source

Built Distributions

MarkupSafe-2.1.1-cp310-cp310-win_amd64.whl (17.1 kB view details)

Uploaded CPython 3.10 Windows x86-64

MarkupSafe-2.1.1-cp310-cp310-win32.whl (16.5 kB view details)

Uploaded CPython 3.10 Windows x86

MarkupSafe-2.1.1-cp310-cp310-musllinux_1_1_x86_64.whl (29.8 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

MarkupSafe-2.1.1-cp310-cp310-musllinux_1_1_i686.whl (29.5 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ i686

MarkupSafe-2.1.1-cp310-cp310-musllinux_1_1_aarch64.whl (30.4 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ ARM64

MarkupSafe-2.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (25.6 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

MarkupSafe-2.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (26.4 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

MarkupSafe-2.1.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (25.3 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

MarkupSafe-2.1.1-cp310-cp310-macosx_10_9_x86_64.whl (13.6 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

MarkupSafe-2.1.1-cp310-cp310-macosx_10_9_universal2.whl (17.7 kB view details)

Uploaded CPython 3.10 macOS 10.9+ universal2 (ARM64, x86-64)

MarkupSafe-2.1.1-cp39-cp39-win_amd64.whl (17.1 kB view details)

Uploaded CPython 3.9 Windows x86-64

MarkupSafe-2.1.1-cp39-cp39-win32.whl (16.5 kB view details)

Uploaded CPython 3.9 Windows x86

MarkupSafe-2.1.1-cp39-cp39-musllinux_1_1_x86_64.whl (29.6 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

MarkupSafe-2.1.1-cp39-cp39-musllinux_1_1_i686.whl (29.3 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ i686

MarkupSafe-2.1.1-cp39-cp39-musllinux_1_1_aarch64.whl (30.2 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ ARM64

MarkupSafe-2.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (25.5 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

MarkupSafe-2.1.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (26.3 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

MarkupSafe-2.1.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (25.1 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

MarkupSafe-2.1.1-cp39-cp39-macosx_10_9_x86_64.whl (13.6 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

MarkupSafe-2.1.1-cp39-cp39-macosx_10_9_universal2.whl (17.7 kB view details)

Uploaded CPython 3.9 macOS 10.9+ universal2 (ARM64, x86-64)

MarkupSafe-2.1.1-cp38-cp38-win_amd64.whl (17.1 kB view details)

Uploaded CPython 3.8 Windows x86-64

MarkupSafe-2.1.1-cp38-cp38-win32.whl (16.4 kB view details)

Uploaded CPython 3.8 Windows x86

MarkupSafe-2.1.1-cp38-cp38-musllinux_1_1_x86_64.whl (29.7 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

MarkupSafe-2.1.1-cp38-cp38-musllinux_1_1_i686.whl (29.4 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ i686

MarkupSafe-2.1.1-cp38-cp38-musllinux_1_1_aarch64.whl (30.3 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ ARM64

MarkupSafe-2.1.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (25.9 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

MarkupSafe-2.1.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (26.7 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

MarkupSafe-2.1.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (25.6 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

MarkupSafe-2.1.1-cp38-cp38-macosx_10_9_x86_64.whl (13.6 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

MarkupSafe-2.1.1-cp38-cp38-macosx_10_9_universal2.whl (17.7 kB view details)

Uploaded CPython 3.8 macOS 10.9+ universal2 (ARM64, x86-64)

MarkupSafe-2.1.1-cp37-cp37m-win_amd64.whl (17.0 kB view details)

Uploaded CPython 3.7m Windows x86-64

MarkupSafe-2.1.1-cp37-cp37m-win32.whl (14.2 kB view details)

Uploaded CPython 3.7m Windows x86

MarkupSafe-2.1.1-cp37-cp37m-musllinux_1_1_x86_64.whl (30.2 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ x86-64

MarkupSafe-2.1.1-cp37-cp37m-musllinux_1_1_i686.whl (30.0 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ i686

MarkupSafe-2.1.1-cp37-cp37m-musllinux_1_1_aarch64.whl (30.8 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ ARM64

MarkupSafe-2.1.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (25.3 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ x86-64

MarkupSafe-2.1.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (26.1 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

MarkupSafe-2.1.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (25.0 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

MarkupSafe-2.1.1-cp37-cp37m-macosx_10_9_x86_64.whl (13.5 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

File details

Details for the file MarkupSafe-2.1.1.tar.gz.

File metadata

  • Download URL: MarkupSafe-2.1.1.tar.gz
  • Upload date:
  • Size: 18.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.10.0 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for MarkupSafe-2.1.1.tar.gz
Algorithm Hash digest
SHA256 7f91197cc9e48f989d12e4e6fbc46495c446636dfc81b9ccf50bb0ec74b91d4b
MD5 9809f9fdd98bc835b0c21aa8f79cbf30
BLAKE2b-256 1d972288fe498044284f39ab8950703e88abbac2abbdf65524d576157af70556

See more details on using hashes here.

File details

Details for the file MarkupSafe-2.1.1-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: MarkupSafe-2.1.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 17.1 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.10.0 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for MarkupSafe-2.1.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 dda30ba7e87fbbb7eab1ec9f58678558fd9a6b8b853530e176eabd064da81417
MD5 f82d0a2fd80c674cab64335db45132a4
BLAKE2b-256 3d4b15e5b9d40c4b58e97ebcb8ed5845a215fa5b7cf49a7f1cc7908f8db9cf46

See more details on using hashes here.

File details

Details for the file MarkupSafe-2.1.1-cp310-cp310-win32.whl.

File metadata

  • Download URL: MarkupSafe-2.1.1-cp310-cp310-win32.whl
  • Upload date:
  • Size: 16.5 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.10.0 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for MarkupSafe-2.1.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 4a33dea2b688b3190ee12bd7cfa29d39c9ed176bda40bfa11099a3ce5d3a7ac6
MD5 9cc5215643853631f96c06e0720e1297
BLAKE2b-256 5e3d0a7df21deca52e20de81f8a895ac29df68944588c0030be9aa1e6c07877c

See more details on using hashes here.

File details

Details for the file MarkupSafe-2.1.1-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: MarkupSafe-2.1.1-cp310-cp310-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 29.8 kB
  • Tags: CPython 3.10, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.10.0 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for MarkupSafe-2.1.1-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 efc1913fd2ca4f334418481c7e595c00aad186563bbc1ec76067848c7ca0a933
MD5 41e905b8fbfb2088a56ef21c60e698a8
BLAKE2b-256 fce478c7607352dd574d524daad079f855757d406d36b919b1864a5a07978390

See more details on using hashes here.

File details

Details for the file MarkupSafe-2.1.1-cp310-cp310-musllinux_1_1_i686.whl.

File metadata

  • Download URL: MarkupSafe-2.1.1-cp310-cp310-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 29.5 kB
  • Tags: CPython 3.10, musllinux: musl 1.1+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.10.0 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for MarkupSafe-2.1.1-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 694deca8d702d5db21ec83983ce0bb4b26a578e71fbdbd4fdcd387daa90e4d5e
MD5 72c8efafd79cdba07031fe8edd636bf3
BLAKE2b-256 5c1aac3a2b2a4ef1196c15dd8a143fc28eddeb6e6871d6d1de64dc44ef7f59b6

See more details on using hashes here.

File details

Details for the file MarkupSafe-2.1.1-cp310-cp310-musllinux_1_1_aarch64.whl.

File metadata

  • Download URL: MarkupSafe-2.1.1-cp310-cp310-musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 30.4 kB
  • Tags: CPython 3.10, musllinux: musl 1.1+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.10.0 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for MarkupSafe-2.1.1-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 b09bf97215625a311f669476f44b8b318b075847b49316d3e28c08e41a7a573f
MD5 9e4b04391f91320407d9d6fd47deadfc
BLAKE2b-256 adfa292a72cddad41e3c06227b446a0af53ff642a40755fc5bd695f439c35ba8

See more details on using hashes here.

File details

Details for the file MarkupSafe-2.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: MarkupSafe-2.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 25.6 kB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.10.0 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for MarkupSafe-2.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 10c1bfff05d95783da83491be968e8fe789263689c02724e0c691933c52994f5
MD5 b4b01daec17d204372a2ff5be052bfe5
BLAKE2b-256 9e822e089c6f34e77c073aa5a67040d368aac0dfb9b8ccbb46d381452c26fc33

See more details on using hashes here.

File details

Details for the file MarkupSafe-2.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: MarkupSafe-2.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 26.4 kB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.10.0 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for MarkupSafe-2.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a49907dd8420c5685cfa064a1335b6754b74541bbb3706c259c02ed65b644b3e
MD5 a1fb96fb5af7b6f417887e1a46c6b961
BLAKE2b-256 ff3a42262a3aa6415befee33b275b31afbcef4f7f8d2f4380061b226c692ee2a

See more details on using hashes here.

File details

Details for the file MarkupSafe-2.1.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for MarkupSafe-2.1.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b7bd98b796e2b6553da7225aeb61f447f80a1ca64f41d83612e6139ca5213aa4
MD5 98794cd8dd10c68c48cfee2cf9163584
BLAKE2b-256 a3479dcc08eff8ab94f1e50f59f9cd322b710ef5db7e8590fdd8df924406fc9c

See more details on using hashes here.

File details

Details for the file MarkupSafe-2.1.1-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: MarkupSafe-2.1.1-cp310-cp310-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 13.6 kB
  • Tags: CPython 3.10, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.10.0 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for MarkupSafe-2.1.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f121a1420d4e173a5d96e47e9a0c0dcff965afdf1626d28de1460815f7c4ee7a
MD5 cc4baf8e1881a03a88eb34a733d94d17
BLAKE2b-256 8c967e608e1a942232cb8c81ca24093e71e07e2bacbeb2dad62a0f82da28ed54

See more details on using hashes here.

File details

Details for the file MarkupSafe-2.1.1-cp310-cp310-macosx_10_9_universal2.whl.

File metadata

  • Download URL: MarkupSafe-2.1.1-cp310-cp310-macosx_10_9_universal2.whl
  • Upload date:
  • Size: 17.7 kB
  • Tags: CPython 3.10, macOS 10.9+ universal2 (ARM64, x86-64)
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.10.0 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for MarkupSafe-2.1.1-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 86b1f75c4e7c2ac2ccdaec2b9022845dbb81880ca318bb7a0a01fbf7813e3812
MD5 edd92cc0efdc919430f86fac719864d7
BLAKE2b-256 d96094e9de017674f88a514804e2924bdede9a642aba179d2045214719d6ec76

See more details on using hashes here.

File details

Details for the file MarkupSafe-2.1.1-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: MarkupSafe-2.1.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 17.1 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.10.0 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for MarkupSafe-2.1.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 46d00d6cfecdde84d40e572d63735ef81423ad31184100411e6e3388d405e247
MD5 720ca6a3fdf37eccb755720ffcf3864a
BLAKE2b-256 71dc41cbfe0d9aefdf14226dbf4eccfd0079a0e297809a17c5b902c9a7a3cc9a

See more details on using hashes here.

File details

Details for the file MarkupSafe-2.1.1-cp39-cp39-win32.whl.

File metadata

  • Download URL: MarkupSafe-2.1.1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 16.5 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.10.0 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for MarkupSafe-2.1.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 d4306c36ca495956b6d568d276ac11fdd9c30a36f1b6eb928070dc5360b22e1c
MD5 2226a69094a6a080051431c0ddfbbcb4
BLAKE2b-256 25c4a75659da6d6b03d2d8ef296b2a8bc73e8c5b1533ee31569a958a292f0929

See more details on using hashes here.

File details

Details for the file MarkupSafe-2.1.1-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: MarkupSafe-2.1.1-cp39-cp39-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 29.6 kB
  • Tags: CPython 3.9, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.10.0 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for MarkupSafe-2.1.1-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 8e3dcf21f367459434c18e71b2a9532d96547aef8a871872a5bd69a715c15f96
MD5 732c933b55dbebbc80be1cdfca8df51c
BLAKE2b-256 0f53b14de4ede9c2bd76d28e7911033b065ac42896f1cfb258d3ff65cf0332d2

See more details on using hashes here.

File details

Details for the file MarkupSafe-2.1.1-cp39-cp39-musllinux_1_1_i686.whl.

File metadata

  • Download URL: MarkupSafe-2.1.1-cp39-cp39-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 29.3 kB
  • Tags: CPython 3.9, musllinux: musl 1.1+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.10.0 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for MarkupSafe-2.1.1-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 43093fb83d8343aac0b1baa75516da6092f58f41200907ef92448ecab8825135
MD5 3de85d932f6c12e726984b4cd9fd2d2b
BLAKE2b-256 ba163627f852d8a846c0fc52ad1beac6e27894a8344cc2c26036db51acb82c3e

See more details on using hashes here.

File details

Details for the file MarkupSafe-2.1.1-cp39-cp39-musllinux_1_1_aarch64.whl.

File metadata

  • Download URL: MarkupSafe-2.1.1-cp39-cp39-musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 30.2 kB
  • Tags: CPython 3.9, musllinux: musl 1.1+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.10.0 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for MarkupSafe-2.1.1-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 33b74d289bd2f5e527beadcaa3f401e0df0a89927c1559c8566c066fa4248ab7
MD5 de543591c0eb7a619297d1ba89ab5488
BLAKE2b-256 3afcdccc18170917f2cc2a5b77aad97f5f27d992ef0f2b9fb9e334ee71bf5301

See more details on using hashes here.

File details

Details for the file MarkupSafe-2.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: MarkupSafe-2.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 25.5 kB
  • Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.10.0 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for MarkupSafe-2.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 56442863ed2b06d19c37f94d999035e15ee982988920e12a5b4ba29b62ad1f77
MD5 68a29c49e695e11d59af9e33d7e4cfd4
BLAKE2b-256 df06c515c5bc43b90462e753bc768e6798193c6520c9c7eb2054c7466779a9db

See more details on using hashes here.

File details

Details for the file MarkupSafe-2.1.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: MarkupSafe-2.1.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 26.3 kB
  • Tags: CPython 3.9, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.10.0 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for MarkupSafe-2.1.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 99a2a507ed3ac881b975a2976d59f38c19386d128e7a9a18b7df6fff1fd4c1d6
MD5 f6894895ca5e08e6e0896b63c0b4f4b4
BLAKE2b-256 823d523e40c45dc1f53b35e60c6e8563dec523f7b6c113f823d5e123dd431631

See more details on using hashes here.

File details

Details for the file MarkupSafe-2.1.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for MarkupSafe-2.1.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3ce11ee3f23f79dbd06fb3d63e2f6af7b12db1d46932fe7bd8afa259a5996603
MD5 8be34152784d62426109ccff304f0d6b
BLAKE2b-256 7368628f6dbbf5088723a2b939d97c0a2e059d0cc654ce92a6fac5c7959edaff

See more details on using hashes here.

File details

Details for the file MarkupSafe-2.1.1-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: MarkupSafe-2.1.1-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 13.6 kB
  • Tags: CPython 3.9, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.10.0 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for MarkupSafe-2.1.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b87db4360013327109564f0e591bd2a3b318547bcef31b468a92ee504d07ae4f
MD5 86471ad964f3832bcef7211ace067f71
BLAKE2b-256 26032c11ba1a8b2327adea3f59f1c9c9ee9c59e86023925f929e63c4f028b10a

See more details on using hashes here.

File details

Details for the file MarkupSafe-2.1.1-cp39-cp39-macosx_10_9_universal2.whl.

File metadata

  • Download URL: MarkupSafe-2.1.1-cp39-cp39-macosx_10_9_universal2.whl
  • Upload date:
  • Size: 17.7 kB
  • Tags: CPython 3.9, macOS 10.9+ universal2 (ARM64, x86-64)
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.10.0 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for MarkupSafe-2.1.1-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 e04e26803c9c3851c931eac40c695602c6295b8d432cbe78609649ad9bd2da8a
MD5 32d75863c0ab89815d0875df41337a0a
BLAKE2b-256 067fd5e46d7464360b6ac39c5b0b604770dba937e3d7cab485d2f3298454717b

See more details on using hashes here.

File details

Details for the file MarkupSafe-2.1.1-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: MarkupSafe-2.1.1-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 17.1 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.10.0 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for MarkupSafe-2.1.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 fc7b548b17d238737688817ab67deebb30e8073c95749d55538ed473130ec0c7
MD5 4203ee7dcdfc777f91b2b06691c3595f
BLAKE2b-256 2c8191062a81ac8a18f557f12e2618475b53878755c016c9914c8aa207155c4e

See more details on using hashes here.

File details

Details for the file MarkupSafe-2.1.1-cp38-cp38-win32.whl.

File metadata

  • Download URL: MarkupSafe-2.1.1-cp38-cp38-win32.whl
  • Upload date:
  • Size: 16.4 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.10.0 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for MarkupSafe-2.1.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 421be9fbf0ffe9ffd7a378aafebbf6f4602d564d34be190fc19a193232fd12b1
MD5 c28b4b8e9ef0defbb9482056f2ed293b
BLAKE2b-256 6c44cd459988fe29cb82f0482fe6b6c47ec17ae700a500634edd876075d5e1ee

See more details on using hashes here.

File details

Details for the file MarkupSafe-2.1.1-cp38-cp38-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: MarkupSafe-2.1.1-cp38-cp38-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 29.7 kB
  • Tags: CPython 3.8, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.10.0 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for MarkupSafe-2.1.1-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 6a074d34ee7a5ce3effbc526b7083ec9731bb3cbf921bbe1d3005d4d2bdb3a63
MD5 9525c248a17f98707bfdedfe7663e172
BLAKE2b-256 bed85ab7f07d8f60155c4f12b4b2dca785355b8ee7e16b2d3f00c3830add5f10

See more details on using hashes here.

File details

Details for the file MarkupSafe-2.1.1-cp38-cp38-musllinux_1_1_i686.whl.

File metadata

  • Download URL: MarkupSafe-2.1.1-cp38-cp38-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 29.4 kB
  • Tags: CPython 3.8, musllinux: musl 1.1+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.10.0 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for MarkupSafe-2.1.1-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 089cf3dbf0cd6c100f02945abeb18484bd1ee57a079aefd52cffd17fba910b88
MD5 c266314bb501f568b953d11e0d538ed7
BLAKE2b-256 68b5b3aafabe7e1f71aa64ffe32fd8c767fd7db1bb304d339d8df6f2fdd2543c

See more details on using hashes here.

File details

Details for the file MarkupSafe-2.1.1-cp38-cp38-musllinux_1_1_aarch64.whl.

File metadata

  • Download URL: MarkupSafe-2.1.1-cp38-cp38-musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 30.3 kB
  • Tags: CPython 3.8, musllinux: musl 1.1+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.10.0 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for MarkupSafe-2.1.1-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 6d0072fea50feec76a4c418096652f2c3238eaa014b2f94aeb1d56a66b41403f
MD5 dc80799635ce01f5c6284b89d271df7a
BLAKE2b-256 d34f9ea1c0a7796f7f81371b40d32aa31766b76fbdba316abf888897042e6e0f

See more details on using hashes here.

File details

Details for the file MarkupSafe-2.1.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: MarkupSafe-2.1.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 25.9 kB
  • Tags: CPython 3.8, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.10.0 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for MarkupSafe-2.1.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4b9fe39a2ccc108a4accc2676e77da025ce383c108593d65cc909add5c3bd601
MD5 e39aa307fb183aacd8bcdb81f5a1ca69
BLAKE2b-256 fdf4524d2e8f5a3727cf309c2b7df7c732038375322df1376c9e9ef3aa92fcaf

See more details on using hashes here.

File details

Details for the file MarkupSafe-2.1.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: MarkupSafe-2.1.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 26.7 kB
  • Tags: CPython 3.8, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.10.0 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for MarkupSafe-2.1.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8e576a51ad59e4bfaac456023a78f6b5e6e7651dcd383bcc3e18d06f9b55d6d1
MD5 c0e29c0c81b4e8f0045fee62f88258e4
BLAKE2b-256 18a6913b1d80fe93f7c3aa79206544b98841616c3eaa7790f37bdfb9fc13311e

See more details on using hashes here.

File details

Details for the file MarkupSafe-2.1.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for MarkupSafe-2.1.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 96e37a3dc86e80bf81758c152fe66dbf60ed5eca3d26305edf01892257049925
MD5 75c70ab4fb75045e52e797b02893dcd0
BLAKE2b-256 696008791e4a971ea976f0fd58fb916d76de7c962dc8e26430564258820ac21f

See more details on using hashes here.

File details

Details for the file MarkupSafe-2.1.1-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: MarkupSafe-2.1.1-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 13.6 kB
  • Tags: CPython 3.8, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.10.0 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for MarkupSafe-2.1.1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0212a68688482dc52b2d45013df70d169f542b7394fc744c02a57374a4207003
MD5 4692e987fafadc1ebc4ed7ff40496082
BLAKE2b-256 3cd3c7ab031b14ae4e83214949acee957a8fcf6a992698edff039ee1e77eb4e1

See more details on using hashes here.

File details

Details for the file MarkupSafe-2.1.1-cp38-cp38-macosx_10_9_universal2.whl.

File metadata

  • Download URL: MarkupSafe-2.1.1-cp38-cp38-macosx_10_9_universal2.whl
  • Upload date:
  • Size: 17.7 kB
  • Tags: CPython 3.8, macOS 10.9+ universal2 (ARM64, x86-64)
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.10.0 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for MarkupSafe-2.1.1-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 e8c843bbcda3a2f1e3c2ab25913c80a3c5376cd00c6e8c4a86a89a28c8dc5452
MD5 c590509e4e80c005520f8aeeaccbe72b
BLAKE2b-256 927c3c33294e506eafa7f1c40dd283089a45652ea0f073fc0ce24419d46bfe4b

See more details on using hashes here.

File details

Details for the file MarkupSafe-2.1.1-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: MarkupSafe-2.1.1-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 17.0 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.10.0 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for MarkupSafe-2.1.1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 97a68e6ada378df82bc9f16b800ab77cbf4b2fada0081794318520138c088e4a
MD5 583765fd62c46d45d11005881b98669e
BLAKE2b-256 3f38f422a81b41bdac48f1d19c45f6e203c04bc45d2c35505873fdecdddee1ec

See more details on using hashes here.

File details

Details for the file MarkupSafe-2.1.1-cp37-cp37m-win32.whl.

File metadata

  • Download URL: MarkupSafe-2.1.1-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 14.2 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.10.0 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for MarkupSafe-2.1.1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 8dc1c72a69aa7e082593c4a203dcf94ddb74bb5c8a731e4e1eb68d031e8498ff
MD5 9a0ab795229f1126629e859fb705f069
BLAKE2b-256 7fd7a0ee1e3a608ca2f80c66c43c699ab063b4b8979c51f8299229b1960f6860

See more details on using hashes here.

File details

Details for the file MarkupSafe-2.1.1-cp37-cp37m-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: MarkupSafe-2.1.1-cp37-cp37m-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 30.2 kB
  • Tags: CPython 3.7m, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.10.0 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for MarkupSafe-2.1.1-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 e1c0b87e09fa55a220f058d1d49d3fb8df88fbfab58558f1198e08c1e1de842a
MD5 34d1f42a35dcec9ac03e1ab283bb4c44
BLAKE2b-256 baa96291d3fdaf0ecac5fbafe462258c5174f11fd752076ba05c2c022ee64f77

See more details on using hashes here.

File details

Details for the file MarkupSafe-2.1.1-cp37-cp37m-musllinux_1_1_i686.whl.

File metadata

  • Download URL: MarkupSafe-2.1.1-cp37-cp37m-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 30.0 kB
  • Tags: CPython 3.7m, musllinux: musl 1.1+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.10.0 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for MarkupSafe-2.1.1-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 bcb3ed405ed3222f9904899563d6fc492ff75cce56cba05e32eff40e6acbeaa3
MD5 0548ebfbfa3230819b2b9183b445e33a
BLAKE2b-256 d01f9677deb5b2768ca503e5ed8464a28f47a854d415b9d1b84445efa8363ca6

See more details on using hashes here.

File details

Details for the file MarkupSafe-2.1.1-cp37-cp37m-musllinux_1_1_aarch64.whl.

File metadata

  • Download URL: MarkupSafe-2.1.1-cp37-cp37m-musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 30.8 kB
  • Tags: CPython 3.7m, musllinux: musl 1.1+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.10.0 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for MarkupSafe-2.1.1-cp37-cp37m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 d5ee4f386140395a2c818d149221149c54849dfcfcb9f1debfe07a8b8bd63f9a
MD5 66d60189d1153a616a9bc578fa6ca225
BLAKE2b-256 1bb393411f10caaccc6fc9c53bbdae4f6d26997248ae574e2f0c90e912b67f73

See more details on using hashes here.

File details

Details for the file MarkupSafe-2.1.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: MarkupSafe-2.1.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 25.3 kB
  • Tags: CPython 3.7m, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.10.0 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for MarkupSafe-2.1.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e72591e9ecd94d7feb70c1cbd7be7b3ebea3f548870aa91e2732960fa4d57a37
MD5 b40da943d965b84f1edc260d5b87962b
BLAKE2b-256 9f83b221ce5a0224f409b9f02b0dc6cb0b921c46033f4870d64fa3e8a96af701

See more details on using hashes here.

File details

Details for the file MarkupSafe-2.1.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: MarkupSafe-2.1.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 26.1 kB
  • Tags: CPython 3.7m, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.10.0 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for MarkupSafe-2.1.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3799351e2336dc91ea70b034983ee71cf2f9533cdff7c14c90ea126bfd95d65a
MD5 421b14404f6481a162346f59d2c5eb5a
BLAKE2b-256 48a9cf226ea201542a724b113bac70dd0dfb72106da3621120c525c8eafadac2

See more details on using hashes here.

File details

Details for the file MarkupSafe-2.1.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for MarkupSafe-2.1.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6fbf47b5d3728c6aea2abb0589b5d30459e369baa772e0f37a0320185e87c980
MD5 c75db8b8df8b37e75e1736b13174d7cb
BLAKE2b-256 8731ab37f60fde001c02ac115da6f66a2d934d37407f257ad8e15ed69093c7fb

See more details on using hashes here.

File details

Details for the file MarkupSafe-2.1.1-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: MarkupSafe-2.1.1-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 13.5 kB
  • Tags: CPython 3.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.10.0 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for MarkupSafe-2.1.1-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 671cd1187ed5e62818414afe79ed29da836dde67166a9fac6d435873c44fdd02
MD5 451e593ef54f92e050b97f3ffd315328
BLAKE2b-256 f9f813ffc95bf8a8c98d611b9f9fa5aa88625b9a82fce528e58f1aafba14946b

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page