Skip to main content

Safely add untrusted strings to HTML/XML markup.

Project description

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.

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>')

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.

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-3.0.0.tar.gz (20.1 kB view details)

Uploaded Source

Built Distributions

MarkupSafe-3.0.0-cp313-cp313t-win_amd64.whl (15.7 kB view details)

Uploaded CPython 3.13t Windows x86-64

MarkupSafe-3.0.0-cp313-cp313t-win32.whl (15.2 kB view details)

Uploaded CPython 3.13t Windows x86

MarkupSafe-3.0.0-cp313-cp313t-musllinux_1_2_x86_64.whl (24.0 kB view details)

Uploaded CPython 3.13t musllinux: musl 1.2+ x86-64

MarkupSafe-3.0.0-cp313-cp313t-musllinux_1_2_i686.whl (24.0 kB view details)

Uploaded CPython 3.13t musllinux: musl 1.2+ i686

MarkupSafe-3.0.0-cp313-cp313t-musllinux_1_2_aarch64.whl (25.0 kB view details)

Uploaded CPython 3.13t musllinux: musl 1.2+ ARM64

MarkupSafe-3.0.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (23.7 kB view details)

Uploaded CPython 3.13t manylinux: glibc 2.17+ x86-64

MarkupSafe-3.0.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (25.3 kB view details)

Uploaded CPython 3.13t manylinux: glibc 2.17+ ARM64

MarkupSafe-3.0.0-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (23.7 kB view details)

Uploaded CPython 3.13t manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

MarkupSafe-3.0.0-cp313-cp313t-macosx_11_0_arm64.whl (12.5 kB view details)

Uploaded CPython 3.13t macOS 11.0+ ARM64

MarkupSafe-3.0.0-cp313-cp313t-macosx_10_13_universal2.whl (14.5 kB view details)

Uploaded CPython 3.13t macOS 10.13+ universal2 (ARM64, x86-64)

MarkupSafe-3.0.0-cp313-cp313-win_amd64.whl (15.6 kB view details)

Uploaded CPython 3.13 Windows x86-64

MarkupSafe-3.0.0-cp313-cp313-win32.whl (15.1 kB view details)

Uploaded CPython 3.13 Windows x86

MarkupSafe-3.0.0-cp313-cp313-musllinux_1_2_x86_64.whl (23.5 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ x86-64

MarkupSafe-3.0.0-cp313-cp313-musllinux_1_2_i686.whl (23.4 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ i686

MarkupSafe-3.0.0-cp313-cp313-musllinux_1_2_aarch64.whl (23.8 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ ARM64

MarkupSafe-3.0.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (23.2 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ x86-64

MarkupSafe-3.0.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (24.0 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARM64

MarkupSafe-3.0.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (23.0 kB view details)

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

MarkupSafe-3.0.0-cp313-cp313-macosx_11_0_arm64.whl (12.3 kB view details)

Uploaded CPython 3.13 macOS 11.0+ ARM64

MarkupSafe-3.0.0-cp313-cp313-macosx_10_13_universal2.whl (14.3 kB view details)

Uploaded CPython 3.13 macOS 10.13+ universal2 (ARM64, x86-64)

MarkupSafe-3.0.0-cp312-cp312-win_amd64.whl (15.6 kB view details)

Uploaded CPython 3.12 Windows x86-64

MarkupSafe-3.0.0-cp312-cp312-win32.whl (15.1 kB view details)

Uploaded CPython 3.12 Windows x86

MarkupSafe-3.0.0-cp312-cp312-musllinux_1_2_x86_64.whl (23.6 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ x86-64

MarkupSafe-3.0.0-cp312-cp312-musllinux_1_2_i686.whl (23.4 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

MarkupSafe-3.0.0-cp312-cp312-musllinux_1_2_aarch64.whl (23.8 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARM64

MarkupSafe-3.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (23.2 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

MarkupSafe-3.0.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (24.0 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

MarkupSafe-3.0.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (23.1 kB view details)

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

MarkupSafe-3.0.0-cp312-cp312-macosx_11_0_arm64.whl (12.3 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

MarkupSafe-3.0.0-cp312-cp312-macosx_10_13_universal2.whl (14.3 kB view details)

Uploaded CPython 3.12 macOS 10.13+ universal2 (ARM64, x86-64)

MarkupSafe-3.0.0-cp311-cp311-win_amd64.whl (15.5 kB view details)

Uploaded CPython 3.11 Windows x86-64

MarkupSafe-3.0.0-cp311-cp311-win32.whl (15.1 kB view details)

Uploaded CPython 3.11 Windows x86

MarkupSafe-3.0.0-cp311-cp311-musllinux_1_2_x86_64.whl (23.3 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ x86-64

MarkupSafe-3.0.0-cp311-cp311-musllinux_1_2_i686.whl (23.4 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

MarkupSafe-3.0.0-cp311-cp311-musllinux_1_2_aarch64.whl (23.6 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

MarkupSafe-3.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (23.3 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

MarkupSafe-3.0.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (24.0 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

MarkupSafe-3.0.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (23.2 kB view details)

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

MarkupSafe-3.0.0-cp311-cp311-macosx_11_0_arm64.whl (12.4 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

MarkupSafe-3.0.0-cp311-cp311-macosx_10_9_universal2.whl (14.3 kB view details)

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

MarkupSafe-3.0.0-cp310-cp310-win_amd64.whl (15.5 kB view details)

Uploaded CPython 3.10 Windows x86-64

MarkupSafe-3.0.0-cp310-cp310-win32.whl (15.0 kB view details)

Uploaded CPython 3.10 Windows x86

MarkupSafe-3.0.0-cp310-cp310-musllinux_1_2_x86_64.whl (21.0 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ x86-64

MarkupSafe-3.0.0-cp310-cp310-musllinux_1_2_i686.whl (21.3 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

MarkupSafe-3.0.0-cp310-cp310-musllinux_1_2_aarch64.whl (21.6 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARM64

MarkupSafe-3.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (20.9 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

MarkupSafe-3.0.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (21.7 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

MarkupSafe-3.0.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (21.0 kB view details)

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

MarkupSafe-3.0.0-cp310-cp310-macosx_11_0_arm64.whl (12.4 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

MarkupSafe-3.0.0-cp310-cp310-macosx_10_9_universal2.whl (14.3 kB view details)

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

MarkupSafe-3.0.0-cp39-cp39-win_amd64.whl (15.5 kB view details)

Uploaded CPython 3.9 Windows x86-64

MarkupSafe-3.0.0-cp39-cp39-win32.whl (15.0 kB view details)

Uploaded CPython 3.9 Windows x86

MarkupSafe-3.0.0-cp39-cp39-musllinux_1_2_x86_64.whl (20.9 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ x86-64

MarkupSafe-3.0.0-cp39-cp39-musllinux_1_2_i686.whl (21.2 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

MarkupSafe-3.0.0-cp39-cp39-musllinux_1_2_aarch64.whl (21.5 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARM64

MarkupSafe-3.0.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (20.8 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

MarkupSafe-3.0.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (21.6 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

MarkupSafe-3.0.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (20.9 kB view details)

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

MarkupSafe-3.0.0-cp39-cp39-macosx_11_0_arm64.whl (12.4 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

MarkupSafe-3.0.0-cp39-cp39-macosx_10_9_universal2.whl (14.3 kB view details)

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

File details

Details for the file markupsafe-3.0.0.tar.gz.

File metadata

  • Download URL: markupsafe-3.0.0.tar.gz
  • Upload date:
  • Size: 20.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for markupsafe-3.0.0.tar.gz
Algorithm Hash digest
SHA256 03ff62dea2fef3eadf2f1853bc6332bcb0458d9608b11dfb1cd5aeda1c178ea6
MD5 37bad5a5801c029d2f15f3810fc0823f
BLAKE2b-256 5c843f683b24fcffa08c5b7ef3fb8a845661057dd39c321c1ae16fa37a3eb35b

See more details on using hashes here.

File details

Details for the file MarkupSafe-3.0.0-cp313-cp313t-win_amd64.whl.

File metadata

File hashes

Hashes for MarkupSafe-3.0.0-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 1d151b9cf3307e259b749125a5a08c030ba15a8f1d567ca5bfb0e92f35e761f5
MD5 3a2c2e67498f008c496cd613dbe79a1f
BLAKE2b-256 8f864b87d92b35f9818d52bfda94abec26ef1b50441982c57d20566ec6b46ada

See more details on using hashes here.

File details

Details for the file MarkupSafe-3.0.0-cp313-cp313t-win32.whl.

File metadata

  • Download URL: MarkupSafe-3.0.0-cp313-cp313t-win32.whl
  • Upload date:
  • Size: 15.2 kB
  • Tags: CPython 3.13t, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for MarkupSafe-3.0.0-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 96e3ed550600185d34429477f1176cedea8293fa40e47fe37a05751bcb64c997
MD5 616873614cd3de241b637ca0101d79bc
BLAKE2b-256 31b5d4a9ecb9785d0d5cad3fac326488dc99eb85270dea989d460cbebd603626

See more details on using hashes here.

File details

Details for the file MarkupSafe-3.0.0-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for MarkupSafe-3.0.0-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cb244adf2499aa37d5dc43431990c7f0b632d841af66a51d22bd89c437b60264
MD5 9b670d40ceccb54630383e003e1c2f04
BLAKE2b-256 d827bffd73c503bfe6f00fa3de64703e00768f65f74a37b6fb2342ef771cacfd

See more details on using hashes here.

File details

Details for the file MarkupSafe-3.0.0-cp313-cp313t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for MarkupSafe-3.0.0-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a7171d2b869e9be238ea318c196baf58fbf272704e9c1cd4be8c380eea963342
MD5 ae6a0a20dd074a71ec3a347f3a191c1e
BLAKE2b-256 f577f3787b456331c94458aef7629c197a70b1c5279e0d04ad0646a13484a20c

See more details on using hashes here.

File details

Details for the file MarkupSafe-3.0.0-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for MarkupSafe-3.0.0-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9f91c90f8f3bf436f81c12eeb4d79f9ddd263c71125e6ad71341906832a34386
MD5 d6b628066cc8d96d3d99a39eb85ac488
BLAKE2b-256 5c663227765a7215b205847d71af5def5693027df2538bdd33775eef1ee8151f

See more details on using hashes here.

File details

Details for the file MarkupSafe-3.0.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for MarkupSafe-3.0.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3b231255770723f1e125d63c14269bcd8b8136ecfb620b9a18c0297e046d0736
MD5 757cda05c047142836710fe44e7a1ed9
BLAKE2b-256 7a0484e439fd573000d85c2394e690dfbf2f322bf09b010689bcac4bafee8834

See more details on using hashes here.

File details

Details for the file MarkupSafe-3.0.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for MarkupSafe-3.0.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b43ac1eb9f91e0c14aac1d2ef0f76bc7b9ceea51de47536f61268191adf52ad7
MD5 6d41cfb6757dccb66f2a5eea848fee68
BLAKE2b-256 e46390a907e327e640462ccc671fd55c140e609d09312fa6db62822b2066bf5b

See more details on using hashes here.

File details

Details for the file MarkupSafe-3.0.0-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for MarkupSafe-3.0.0-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c182d45600556917f811aa019d834a89fe4b6f6255da2fd0bdcf80e970f95918
MD5 bdcacc25e5ca4022015fb08b86612ede
BLAKE2b-256 5f7d2bb2663db79eb702d168ab6728741f64e431cd78f55b22c868e95d9805ef

See more details on using hashes here.

File details

Details for the file MarkupSafe-3.0.0-cp313-cp313t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for MarkupSafe-3.0.0-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 81be2c0084d8c69e97e3c5d73ce9e2a6e523556f2a19c4e195c09d499be2f808
MD5 62adbedc97bb371632878d78fe48a50a
BLAKE2b-256 bfbf0ee8f270b82fab05b763cfbacc2c33a62f571f59968abc37d4793b3c1623

See more details on using hashes here.

File details

Details for the file MarkupSafe-3.0.0-cp313-cp313t-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for MarkupSafe-3.0.0-cp313-cp313t-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 509c424069dd037d078925b6815fc56b7271f3aaec471e55e6fa513b0a80d2aa
MD5 d9baf1f0e4b161112d19ad3282abc974
BLAKE2b-256 472d6ea2c34833582fb04447e2a91ae8f49540a57757add92cb5095e49d12c61

See more details on using hashes here.

File details

Details for the file MarkupSafe-3.0.0-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for MarkupSafe-3.0.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 b94bec9eda10111ec7102ef909eca4f3c2df979643924bfe58375f560713a7d1
MD5 279c8a28b21c3f6dc214c78e22525cde
BLAKE2b-256 53c4b3d9f84a093244602e6081e35cf1166cd2f6e3d65746da12d4c13511e2cb

See more details on using hashes here.

File details

Details for the file MarkupSafe-3.0.0-cp313-cp313-win32.whl.

File metadata

  • Download URL: MarkupSafe-3.0.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 15.1 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for MarkupSafe-3.0.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 1fd02f47596e00a372f5b4af2b4c45f528bade65c66dfcbc6e1ea1bfda758e98
MD5 5ebc59ed28ec180f5588b479016a426a
BLAKE2b-256 81ac1ab4e1f47f1778bd2c407b7be543b3c08bff555c8444c742e3c53958d114

See more details on using hashes here.

File details

Details for the file MarkupSafe-3.0.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for MarkupSafe-3.0.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bd9b8e458e2bab52f9ad3ab5dc8b689a3c84b12b2a2f64cd9a0dfe209fb6b42f
MD5 26d21fc3b760ac7f3f5d7c31dd4bf5d8
BLAKE2b-256 7a8f2e9a4653c78744b8a65cab56382148073c96893efc4c75eef2fa0a96f608

See more details on using hashes here.

File details

Details for the file MarkupSafe-3.0.0-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for MarkupSafe-3.0.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 678fbceb202382aae42c1f0cd9f56b776bc20a58ae5b553ee1fe6b802983a1d6
MD5 618f8b6c5c5551b92f03ce7f7a6d6642
BLAKE2b-256 87aefd72c59177ae148aee41eed67f5dcb73e96590f439fd0149c88deab207c0

See more details on using hashes here.

File details

Details for the file MarkupSafe-3.0.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for MarkupSafe-3.0.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f846fd7c241e5bd4161e2a483663eb66e4d8e12130fcdc052f310f388f1d61c6
MD5 5ed51bd6a08c92e3f4ec90ecce5187bc
BLAKE2b-256 eb899c47f58e3e75adbaa9387f3db84ca6a7d3a3abd93e7541cfaadad073e5d6

See more details on using hashes here.

File details

Details for the file MarkupSafe-3.0.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for MarkupSafe-3.0.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 63dae84964a9a3d2610808cee038f435d9a111620c37ccf872c2fcaeca6865b3
MD5 71ae557787e66965da565fff1d407253
BLAKE2b-256 451480f6553deba7a6beeae455f2c1e450f55f0f17241f06ed065571445e2bf0

See more details on using hashes here.

File details

Details for the file MarkupSafe-3.0.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for MarkupSafe-3.0.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c5243044a927e8a6bb28517838662a019cd7f73d7f106bbb37ab5e7fa8451a92
MD5 bf28536bab94db5616c0646b036a6540
BLAKE2b-256 9c849f82de5f77f61c64fec414f4ae7e1e7871b82da0d52414f8810410de752a

See more details on using hashes here.

File details

Details for the file MarkupSafe-3.0.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for MarkupSafe-3.0.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 dcbee57fedc9b2182c54ffc1c5eed316c3da8bbfeda8009e1b5d7220199d15da
MD5 f3911b53744d3f4367e76416b5346e15
BLAKE2b-256 3403e64f36452db4eabf3b89cfbbebf46736afa82eda0c95f3f4bf11c4cf3c85

See more details on using hashes here.

File details

Details for the file MarkupSafe-3.0.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for MarkupSafe-3.0.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 494a64efc535e147fcc713dba58eecfce3a79f1e93ebe81995b387f5cd9bc2e1
MD5 edb81c85d675fe6b0587c1f84adac46c
BLAKE2b-256 8ac5b6cda6248f83c59148540b6d815b4c59b1222e059fe759eb3c446748b744

See more details on using hashes here.

File details

Details for the file MarkupSafe-3.0.0-cp313-cp313-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for MarkupSafe-3.0.0-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 27d6a73682b99568916c54a4bfced40e7d871ba685b580ea04bbd2e405dfd4c5
MD5 35342fc161b12c675e1e764e452fd57c
BLAKE2b-256 14dd7149242a730e218b6dd7ffa6817c951f51f4204e7afb8e8bbf688d8ae4c3

See more details on using hashes here.

File details

Details for the file MarkupSafe-3.0.0-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for MarkupSafe-3.0.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 7ed789d0f7f11fcf118cf0acb378743dfdd4215d7f7d18837c88171405c9a452
MD5 687bcafb94ab20f3fcd660e5076a4fef
BLAKE2b-256 55e24e0c49629d1d8f0642ecc772577cdf870048401280d421321bbb55d8b251

See more details on using hashes here.

File details

Details for the file MarkupSafe-3.0.0-cp312-cp312-win32.whl.

File metadata

  • Download URL: MarkupSafe-3.0.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 15.1 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for MarkupSafe-3.0.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 59420b5a9a5d3fee483a32adb56d7369ae0d630798da056001be1e9f674f3aa6
MD5 045dc40510c5499d5812cefbb5a1930c
BLAKE2b-256 b9771e21ea23aeeaa0760d0ab03976b38f6551ad803cffccdec2db9dcb85ac7c

See more details on using hashes here.

File details

Details for the file MarkupSafe-3.0.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for MarkupSafe-3.0.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8219e2207f6c188d15614ea043636c2b36d2d79bf853639c124a179412325a13
MD5 3da8afb26e9278675bbb9e16da4ab65a
BLAKE2b-256 55a594b07a3fe33d52c93476b0970ab9ab011790c04d10d5c110ed3de01863f5

See more details on using hashes here.

File details

Details for the file MarkupSafe-3.0.0-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for MarkupSafe-3.0.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c8ab7efeff1884c5da8e18f743b667215300e09043820d11723718de0b7db934
MD5 4b9cdceb886fb790a5fdfb876179737a
BLAKE2b-256 ddf6518225e5cd027828cb26bbe0b99c9b110512960e60718c66df9823ba5e8f

See more details on using hashes here.

File details

Details for the file MarkupSafe-3.0.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for MarkupSafe-3.0.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b2a7afd24d408b907672015555bc10be2382e6c5f62a488e2d452da670bbd389
MD5 55141eca1c27e3ddf0d10c995e48a204
BLAKE2b-256 7f47c15288e10d0f3c9ac0d997891f581d910a593a74c1e9789046b9cb4e4c53

See more details on using hashes here.

File details

Details for the file MarkupSafe-3.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for MarkupSafe-3.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b6cc46a27d904c9be5732029769acf4b0af69345172ed1ef6d4db0c023ff603b
MD5 7ab318e7578306029890e36a284b6b00
BLAKE2b-256 c0c95c84edd744fe981c1c37e8303799e4d90bc2b146997b60dc158c20791b24

See more details on using hashes here.

File details

Details for the file MarkupSafe-3.0.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for MarkupSafe-3.0.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7835de4c56066e096407a1852e5561f6033786dd987fa90dc384e45b9bd21295
MD5 2046511a327299b6590833e8f449d60e
BLAKE2b-256 6147f972faff9134053fc083e591b7415ce7a2f4c51fb1dba17757822d0ebb5d

See more details on using hashes here.

File details

Details for the file MarkupSafe-3.0.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for MarkupSafe-3.0.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f0411641d31aa6f7f0cc13f0f18b63b8dc08da5f3a7505972a42ab059f479ba3
MD5 4779fdcb0680d0fc2c0784f3ec68f262
BLAKE2b-256 706f70ca971e19d0cd905f58cd53358b0dfe30fa393bd9d5a1f372667f7b97b0

See more details on using hashes here.

File details

Details for the file MarkupSafe-3.0.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for MarkupSafe-3.0.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e363440c8534bf2f2ef1b8fdc02037eb5fff8fce2a558519b22d6a3a38b3ec5e
MD5 8af52295e1659cf321b3ae37b3c96480
BLAKE2b-256 6c4692fd7ef12daa1b1e5fe4e38cc251e01c51ea288ecda950a30b2e8d66a051

See more details on using hashes here.

File details

Details for the file MarkupSafe-3.0.0-cp312-cp312-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for MarkupSafe-3.0.0-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 d261ec38b8a99a39b62e0119ed47fe3b62f7691c500bc1e815265adc016438c1
MD5 16d07e997ba3f0f996d22f7b10a92b7d
BLAKE2b-256 2ad24cda4f2c9a21b426c5f5b80a70991dc26b78bcecd7b03a8e8a22cc1cddc1

See more details on using hashes here.

File details

Details for the file MarkupSafe-3.0.0-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for MarkupSafe-3.0.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 658fdf6022740896c403d45148bf0c36978c6b48c9ef8b1f8d0c7a11b6cdea86
MD5 bad8c28dc0b97df1e2974a57f76b8f24
BLAKE2b-256 964a6ea3f7265e17226bc9b1896d16ed5b230fe06cf4530a40a4f47e7d311a62

See more details on using hashes here.

File details

Details for the file MarkupSafe-3.0.0-cp311-cp311-win32.whl.

File metadata

  • Download URL: MarkupSafe-3.0.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 15.1 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for MarkupSafe-3.0.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 12ddac720b8965332d36196f6f83477c6351ba6a25d4aff91e30708c729350d7
MD5 c5aa588f399e1a08a96629770388d4bb
BLAKE2b-256 0c70973f228b3017d9fffb11567a2a02f092be41cae8ca1a9c97ec571801ab50

See more details on using hashes here.

File details

Details for the file MarkupSafe-3.0.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for MarkupSafe-3.0.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3efde9a8c56c3b6e5f3fa4baea828f8184970c7c78480fedb620d804b1c31e5c
MD5 3327e11f62be707ef05cda8630750cba
BLAKE2b-256 e756825d2218c93dbf5f0c8b3cb5e86a02a9b1bb95aaa850765026a7fed7aaa1

See more details on using hashes here.

File details

Details for the file MarkupSafe-3.0.0-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for MarkupSafe-3.0.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 25396abd52b16900932e05b7104bcdc640a4d96c914f39c3b984e5a17b01fba0
MD5 aa753dec340ad7f7ffcf0fda562e3907
BLAKE2b-256 36c72fca924654032c27055706ad6647cf5535be8cf641d2148fc693b0e04407

See more details on using hashes here.

File details

Details for the file MarkupSafe-3.0.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for MarkupSafe-3.0.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a5fd5500d4e4f7cc88d8c0f2e45126c4307ed31e08f8ec521474f2fd99d35ac3
MD5 a2d7f3ad2da2c44178ece67c0fbe1c28
BLAKE2b-256 24fccea6e038c6f911aeeda66a41b96b8885153026867422e1f37f9b018b427f

See more details on using hashes here.

File details

Details for the file MarkupSafe-3.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for MarkupSafe-3.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 64f7d04410be600aa5ec0626d73d43e68a51c86500ce12917e10fd013e258df5
MD5 6767d13341c83d16821e1c563301a62a
BLAKE2b-256 dd4fddab3f0ab045ae34cf40e8ac1d8bf2933c50cda9c626441353c25d048556

See more details on using hashes here.

File details

Details for the file MarkupSafe-3.0.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for MarkupSafe-3.0.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c409691696bec2b5e5c9efd9593c99025bf2f317380bf0d993ee0213516d908a
MD5 a6ca3ca5d92ea95b4579c2feaa4b8d7d
BLAKE2b-256 81ec8804186f64b9c15844fa0e5079264e22325ac93573eef9eb4ab41e3929fc

See more details on using hashes here.

File details

Details for the file MarkupSafe-3.0.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for MarkupSafe-3.0.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 105ada43a61af22acb8774514c51900dc820c481cc5ba53f17c09d294d9c07ca
MD5 a1859c96e95d60e758902678e11d5129
BLAKE2b-256 59a2c68e6167a057d78e19b8e30338c33e3d917c8cd5d6ba574991202291b6b0

See more details on using hashes here.

File details

Details for the file MarkupSafe-3.0.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for MarkupSafe-3.0.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7c524203207f5b569df06c96dafdc337228921ee8c3cc5f6e891d024c6595352
MD5 1d6c221e1cce2d6c43e490520336d223
BLAKE2b-256 600fe33b03aeaecd8d90ba869e7c93b9f1aeeb0ab2820e338745200c9a2c8acb

See more details on using hashes here.

File details

Details for the file MarkupSafe-3.0.0-cp311-cp311-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for MarkupSafe-3.0.0-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 e64b390a306f9e849ee809f92af6a52cda41741c914358e0e9f8499d03741526
MD5 82322273e9b2bd3595ed2cd393d65345
BLAKE2b-256 d2af5d89e9d6fbba5024a047aa004942578fee3396d9991119d4b9f73f027daf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for MarkupSafe-3.0.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 4ca04c60006867610a06575b46941ae616b19da0adc85b9f8f3d9cbd7a3da385
MD5 d2524d08ed5d2cf7e77184f876432ab2
BLAKE2b-256 078dd0f52b26efb87733551f78a3a009eaa5fdb529a5af3712947fda1c93b82e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: MarkupSafe-3.0.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 15.0 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for MarkupSafe-3.0.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 3cd0bba31d484fe9b9d77698ddb67c978704603dc10cdc905512af308cfcca6b
MD5 e7f0e5b939092b62a6ab7aa4d0326bdb
BLAKE2b-256 c0c5dfb13194dcfdcd3e08e4fd29719bfb472d711cf66d86330542daa9e2565f

See more details on using hashes here.

File details

Details for the file MarkupSafe-3.0.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for MarkupSafe-3.0.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4deea1d9169578917d1f35cdb581bc7bab56a7e8c5be2633bd1b9549c3c22a01
MD5 9981083fcac0d772c0095dbbf773bdb4
BLAKE2b-256 f38f8e3249fdd5bdd9344ace890f0fc7277882d75659449beb28635029cb5684

See more details on using hashes here.

File details

Details for the file MarkupSafe-3.0.0-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for MarkupSafe-3.0.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 64a7c7856c3a409011139b17d137c2924df4318dab91ee0530800819617c4381
MD5 608c15e55f98a46311582db7e67f3e11
BLAKE2b-256 49b4667b4f33303b5c085a0cb3dc3764b0240b9a4f79321de1d9fc04301f30a0

See more details on using hashes here.

File details

Details for the file MarkupSafe-3.0.0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for MarkupSafe-3.0.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 409535e0521c4630d5b5a1bf284e9d3c76d2fc2f153ebb12cf3827797798cc99
MD5 7614a3fc0926721d0ddc83093821d227
BLAKE2b-256 b64270e0c73827995ad731812cc018048d9e65bb5fc54c21ee8d693609c4b7fc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for MarkupSafe-3.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9b36473a2d3e882d1873ea906ce54408b9588dc2c65989664e6e7f5a2de353d7
MD5 2717e05921321053ee1be54549a087d8
BLAKE2b-256 109f7984e6dc0f62ff8f18fb129954f393869571cfca95bf0e53030cf4bf6936

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for MarkupSafe-3.0.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5ddf5cb8e9c00d9bf8b0c75949fb3ff9ea2096ba531693e2e87336d197fdb908
MD5 c79320c305f9bab345e888a68a8557e6
BLAKE2b-256 2a0f351109b1403c1061732e2bb76900e15e9387177ba4b8f5d60783c16c8225

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for MarkupSafe-3.0.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 dba0f83119b9514bc37272ad012f0cc03f0805cc6a2bea7244e19250ac8ff29f
MD5 cfb926925d352b601f39194d5a3d4871
BLAKE2b-256 303fbe451779aa18f4c5c5e290433fa35aec8474e88099017ece53b304391971

See more details on using hashes here.

File details

Details for the file MarkupSafe-3.0.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for MarkupSafe-3.0.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1ee9790be6f62121c4c58bbced387b0965ab7bffeecb4e17cc42ef290784e363
MD5 7f946910f6f1018df851b7961d268de9
BLAKE2b-256 7ccfc78c4c5f33492290cddd2469389c86e6e2a7b5ef64dd014b021bf64a5e08

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for MarkupSafe-3.0.0-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 380faf314c3c84c1682ca672e6280c6c59e92d0bc13dc71758ffa2de3cd4e252
MD5 89fc2342f93f57aa90481b28738a2eca
BLAKE2b-256 66a6f705e503cdcd944f8bb50cf615f2d436f671a60f1d5cb1c5a1a9c7d57028

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for MarkupSafe-3.0.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 5d207ff5cceef77796f8aacd44263266248cf1fbc601441524d7835613f8abec
MD5 203955a23922f03bdb17b97c5ef619b6
BLAKE2b-256 a10d39a8acf44dd8cfe60c93f589b1c553a4d5865f05e6b752481604147b72e5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: MarkupSafe-3.0.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 15.0 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for MarkupSafe-3.0.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 a80c6740e1bfbe50cea7cbf74f48823bb57bd59d914ee22ff8a81963b08e62d2
MD5 686474d4b41ddec08ebe4a95e6f3d087
BLAKE2b-256 738c7087be0d8e090ee424d59307da837f6401bf6465b03bf6dd0e36bfc40b9a

See more details on using hashes here.

File details

Details for the file MarkupSafe-3.0.0-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for MarkupSafe-3.0.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 98fb3a2bf525ad66db96745707b93ba0f78928b7a1cb2f1cb4b143bc7e2ba3b3
MD5 a1aaa1df15894cea4f38b750c6ffd652
BLAKE2b-256 202d474d27577ba12d5bb465133096424d037f7f272466f4e81e6c37c9cfe07a

See more details on using hashes here.

File details

Details for the file MarkupSafe-3.0.0-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for MarkupSafe-3.0.0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e042ccf8fe5bf8b6a4b38b3f7d618eb10ea20402b0c9f4add9293408de447974
MD5 30e5a36a869feaa1f0f688633d62df23
BLAKE2b-256 a7f2eea3125b43826fe88c9b1cb7d8fa007a283d7c4b79577a3712db6e61e3b1

See more details on using hashes here.

File details

Details for the file MarkupSafe-3.0.0-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for MarkupSafe-3.0.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d2c099be5274847d606574234e494f23a359e829ba337ea9037c3a72b0851942
MD5 48521f4c8b886b98ab77058ba170d2b4
BLAKE2b-256 8e137819a2261f0ca26474121512def4d8a354869f3f1d28c38fef4226a9936d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for MarkupSafe-3.0.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f1c13c6c908811f867a8e9e66efb2d6c03d1cdd83e92788fe97f693c457dc44f
MD5 7c31b2d3692fc2cf046b80a01b7fcd4c
BLAKE2b-256 6eaca02e6dadef6f778ec98569721e8e71152f9ad1ac7438c99cb70684e0f453

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for MarkupSafe-3.0.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5509a8373fed30b978557890a226c3d30569746c565b9daba69df80c160365a5
MD5 e2d28ec7e53fbea79c8a7c5d4ef1a1c8
BLAKE2b-256 ff080a5cad23cad2dcd13aa68ad7d8c56b4b10f4c86484e24008aced445ab3e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for MarkupSafe-3.0.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d7e63d1977d3806ce0a1a3e0099b089f61abdede5238ca6a3f3bf8877b46d095
MD5 adab68edc9cab71fcd4361b20a259fc2
BLAKE2b-256 6363377ecc7aea0fae9b5aed793cc65b586a4ab4b52bc0f0198622f722f6e4aa

See more details on using hashes here.

File details

Details for the file MarkupSafe-3.0.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for MarkupSafe-3.0.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 81ee9c967956b9ea39b3a5270b7cb1740928d205b0dc72629164ce621b4debf9
MD5 0a1c2e554d72f9e25f2b8475e6babaed
BLAKE2b-256 9d86afe05136029d09541a7ef6daab922f01739f67e1f086634a1149109a5a78

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for MarkupSafe-3.0.0-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 23efb2be7221105c8eb0e905433414d2439cb0a8c5d5ca081c1c72acef0f5613
MD5 25579901e8cf06613f55cfabeefc2f46
BLAKE2b-256 9951ef4f8d801aff0e01bd80260dfa85cb64800866927aff6f834c3d6f7ebe7c

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