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

Uploaded Source

Built Distributions

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

Uploaded CPython 3.13t Windows x86-64

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

Uploaded CPython 3.13t Windows x86

MarkupSafe-3.0.1-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.1-cp313-cp313t-musllinux_1_2_i686.whl (24.0 kB view details)

Uploaded CPython 3.13t musllinux: musl 1.2+ i686

MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_aarch64.whl (25.1 kB view details)

Uploaded CPython 3.13t musllinux: musl 1.2+ ARM64

MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (23.8 kB view details)

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

MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (25.4 kB view details)

Uploaded CPython 3.13t manylinux: glibc 2.17+ ARM64

MarkupSafe-3.0.1-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.1-cp313-cp313t-macosx_11_0_arm64.whl (12.5 kB view details)

Uploaded CPython 3.13t macOS 11.0+ ARM64

MarkupSafe-3.0.1-cp313-cp313t-macosx_10_13_universal2.whl (14.6 kB view details)

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

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

Uploaded CPython 3.13 Windows x86-64

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

Uploaded CPython 3.13 Windows x86

MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_x86_64.whl (23.6 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ x86-64

MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_i686.whl (23.5 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ i686

MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_aarch64.whl (23.9 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ ARM64

MarkupSafe-3.0.1-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.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (24.1 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARM64

MarkupSafe-3.0.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (23.1 kB view details)

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

MarkupSafe-3.0.1-cp313-cp313-macosx_11_0_arm64.whl (12.4 kB view details)

Uploaded CPython 3.13 macOS 11.0+ ARM64

MarkupSafe-3.0.1-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.1-cp312-cp312-win_amd64.whl (15.6 kB view details)

Uploaded CPython 3.12 Windows x86-64

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

Uploaded CPython 3.12 Windows x86

MarkupSafe-3.0.1-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.1-cp312-cp312-musllinux_1_2_i686.whl (23.4 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_aarch64.whl (23.9 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARM64

MarkupSafe-3.0.1-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.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (24.1 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

MarkupSafe-3.0.1-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.1-cp312-cp312-macosx_11_0_arm64.whl (12.4 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

MarkupSafe-3.0.1-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.1-cp311-cp311-win_amd64.whl (15.5 kB view details)

Uploaded CPython 3.11 Windows x86-64

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

Uploaded CPython 3.11 Windows x86

MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_x86_64.whl (23.4 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ x86-64

MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_i686.whl (23.5 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_aarch64.whl (23.7 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

MarkupSafe-3.0.1-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.1-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.1-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.1-cp311-cp311-macosx_11_0_arm64.whl (12.4 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

MarkupSafe-3.0.1-cp311-cp311-macosx_10_9_universal2.whl (14.4 kB view details)

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

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

Uploaded CPython 3.10 Windows x86-64

MarkupSafe-3.0.1-cp310-cp310-win32.whl (15.1 kB view details)

Uploaded CPython 3.10 Windows x86

MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_x86_64.whl (21.1 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_aarch64.whl (21.7 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARM64

MarkupSafe-3.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (21.0 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

MarkupSafe-3.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (21.8 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

MarkupSafe-3.0.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (21.1 kB view details)

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

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

Uploaded CPython 3.10 macOS 11.0+ ARM64

MarkupSafe-3.0.1-cp310-cp310-macosx_10_9_universal2.whl (14.4 kB view details)

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

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

Uploaded CPython 3.9 Windows x86-64

MarkupSafe-3.0.1-cp39-cp39-win32.whl (15.1 kB view details)

Uploaded CPython 3.9 Windows x86

MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_x86_64.whl (21.0 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9 musllinux: musl 1.2+ ARM64

MarkupSafe-3.0.1-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.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (21.7 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

MarkupSafe-3.0.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (21.0 kB view details)

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

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

Uploaded CPython 3.9 macOS 11.0+ ARM64

MarkupSafe-3.0.1-cp39-cp39-macosx_10_9_universal2.whl (14.4 kB view details)

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

File details

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

File metadata

  • Download URL: markupsafe-3.0.1.tar.gz
  • Upload date:
  • Size: 20.2 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.1.tar.gz
Algorithm Hash digest
SHA256 3e683ee4f5d0fa2dde4db77ed8dd8a876686e3fc417655c2ece9a90576905344
MD5 202a35d8c8309cd6e70f8b03c5eb7b61
BLAKE2b-256 b4d238ff920762f2247c3af5cbbbbc40756f575d9692d381d7c520f45deb9b8f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for MarkupSafe-3.0.1-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 730d86af59e0e43ce277bb83970530dd223bf7f2a838e086b50affa6ec5f9295
MD5 a54751e29d3aa7ca82597fcdeb37b5e6
BLAKE2b-256 0d874c364e0f109eea2402079abecbe33fef4f347b551a11423d1f4e187ea497

See more details on using hashes here.

File details

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

File metadata

  • Download URL: MarkupSafe-3.0.1-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.1-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 82b5dba6eb1bcc29cc305a18a3c5365d2af06ee71b123216416f7e20d2a84e5b
MD5 d3265fdb9d13024c2e29efaae5b8d04a
BLAKE2b-256 5f078e8dcecd53216c5e01a51e84c32a2bce166690ed19c184774b38cd41921d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bbde71a705f8e9e4c3e9e33db69341d040c827c7afa6789b14c6e16776074f5a
MD5 df033005e5c3b4f2c0cefc1d0ae051a9
BLAKE2b-256 c8814b3f5537d9f6cc4f5c80d6c4b78af9a5247fd37b5aba95807b2cbc336b9a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 beeebf760a9c1f4c07ef6a53465e8cfa776ea6a2021eda0d0417ec41043fe984
MD5 5d28dfbfbd3d1ad150b99552ada765da
BLAKE2b-256 b5fa10b24fb3b0e15fe5389dc88ecc6226ede08297e0ba7130610efbe0cdfb27

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for MarkupSafe-3.0.1-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 33d1c36b90e570ba7785dacd1faaf091203d9942bc036118fab8110a401eb1a8
MD5 c6ca996af4338b08a65ffe42afe98a12
BLAKE2b-256 cdc626f576cd58d6c2decd9045e4e3f3c5dbc01ea6cb710916e7bbb6ebd95b6b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 800100d45176652ded796134277ecb13640c1a537cad3b8b53da45aa96330453
MD5 1ef7ee0104b3c6b77fd7530f181810f9
BLAKE2b-256 fd7826e209abc8f0a379f031f0acc151231974e5b153d7eda5759d17d8f329f2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0778de17cff1acaeccc3ff30cd99a3fd5c50fc58ad3d6c0e0c4c58092b859396
MD5 8c1f8ee7977440aa27d1d77f38949a10
BLAKE2b-256 72bf800b4d1580298ca91ccd6c95915bbd147142dad1b8cf91d57b93b28670dd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for MarkupSafe-3.0.1-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d06b24c686a34c86c8c1fba923181eae6b10565e4d80bdd7bc1c8e2f11247aa4
MD5 c601357d5bae3cbdbb2d3a01c7621a94
BLAKE2b-256 09e1918496a9390891756efee818880e71c1bbaf587f4dc8ede3f3852357310a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for MarkupSafe-3.0.1-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 852dc840f6d7c985603e60b5deaae1d89c56cb038b577f6b5b8c808c97580f1d
MD5 45a1edc5e30167dfadd550a29df859bc
BLAKE2b-256 4a37f813c3835747dec08fe19ac9b9eced01fdf93a4b3e626521675dc7f423a9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for MarkupSafe-3.0.1-cp313-cp313t-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 17b2aea42a7280db02ac644db1d634ad47dcc96faf38ab304fe26ba2680d359a
MD5 049fd098173066d81ad855dcd69b6011
BLAKE2b-256 9e93d6367ffbcd0c5c371370767f768eaa32af60bc411245b8517e383c6a2b12

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for MarkupSafe-3.0.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 fe32482b37b4b00c7a52a07211b479653b7fe4f22b2e481b9a9b099d8a430f2f
MD5 6a8e47a9a6911a4be2bb12693a6c757b
BLAKE2b-256 328fd8961d633f26a011b4fe054f3bfff52f673423b8c431553268741dfb089e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: MarkupSafe-3.0.1-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.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 c91b394f7601438ff79a4b93d16be92f216adb57d813a78be4446fe0f6bc2d8c
MD5 6c749991b0f1b1ee1d82b268735c5950
BLAKE2b-256 cf24587dea40304046ace60f846cedaebc0d33d967a3ce46c11395a10e7a78ba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6a54c43d3ec4cf2a39f4387ad044221c66a376e58c0d0e971d47c475ba79c6b5
MD5 fb2fbce12c51d333f927e318504356dc
BLAKE2b-256 0dfe657efdfe385d2a3a701f2c4fcc9577c63c438aeefdd642d0d956c4ecd225

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4c8817557d0de9349109acb38b9dd570b03cc5014e8aabf1cbddc6e81005becd
MD5 17442edcff3f16d6778e5b8e22f8e084
BLAKE2b-256 11921e5a33aa0a1190161238628fb68eb1bc5e67b56a5c89f0636328704b463a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for MarkupSafe-3.0.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 45d42d132cff577c92bfba536aefcfea7e26efb975bd455db4e6602f5c9f45e7
MD5 5aed35aed3f239c531adf5581d45772e
BLAKE2b-256 af93f770bc70953d32de0c6ce4bcb76271512123a1ead91aaef625a020c5bfaf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for MarkupSafe-3.0.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c97ff7fedf56d86bae92fa0a646ce1a0ec7509a7578e1ed238731ba13aabcd1c
MD5 8a471d819344cc0065cea38150495b15
BLAKE2b-256 20156b319be2f79fcfa3173f479d69f4e950b5c9b642db4f22cf73ae5ade745f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for MarkupSafe-3.0.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2ae99f31f47d849758a687102afdd05bd3d3ff7dbab0a8f1587981b58a76152a
MD5 0d849570290b96cfe857a483855962a5
BLAKE2b-256 ef824caaebd963c6d60b28e4445f38841d24f8b49bc10594a09956c9d73bfc08

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for MarkupSafe-3.0.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a7420ceda262dbb4b8d839a4ec63d61c261e4e77677ed7c66c99f4e7cb5030dd
MD5 34675e22a2a57b8c46bca4bd498db4ae
BLAKE2b-256 9d3f8963bdf4962feb2154475acb7dc350f04217b5e0be7763a39b432291e229

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for MarkupSafe-3.0.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 312387403cd40699ab91d50735ea7a507b788091c416dd007eac54434aee51da
MD5 0e6e3ae3983521066b73a24825f43fb0
BLAKE2b-256 3842849915b99a765ec104bfd07ee933de5fc9c58fa9570efa7db81717f495d8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for MarkupSafe-3.0.1-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 e81c52638315ff4ac1b533d427f50bc0afc746deb949210bc85f05d4f15fd772
MD5 b8f8dd7fc4855879053395e42a48f136
BLAKE2b-256 b1604572a8aa1beccbc24b133aa0670781a5d2697f4fa3fecf0a87b46383174b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for MarkupSafe-3.0.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 a10860e00ded1dd0a65b83e717af28845bb7bd16d8ace40fe5531491de76b79f
MD5 8a91f7cf7cb1eb65479ee1a5b8a0cbe9
BLAKE2b-256 eb24a36dc37365bdd358b1e583cc40475593e36ab02cb7da6b3d0b9c05b0da7a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: MarkupSafe-3.0.1-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.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 cbf445eb5628981a80f54087f9acdbf84f9b7d862756110d172993b9a5ae81aa
MD5 9f08cb0999a5d2fd0fad2faebf11e6a9
BLAKE2b-256 51041f8da0810c39cb9fcff96b6baed62272c97065e9cf11471965a161439e20

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0f84af7e813784feb4d5e4ff7db633aba6c8ca64a833f61d8e4eade234ef0c38
MD5 754df648ac346006cc710d619b617766
BLAKE2b-256 fb3ed26623ac7f16709823b4c80e0b4a1c9196eeb46182a6c1d47b5e0c8434f4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 fb532dd9900381d2e8f48172ddc5a59db4c445a11b9fab40b3b786da40d3b56b
MD5 41141f9ae6864de31ef36c74c77805a1
BLAKE2b-256 f3f1700ee6655561cfda986e03f7afc309e3738918551afa7dedd99225586227

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for MarkupSafe-3.0.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4c2d64fdba74ad16138300815cfdc6ab2f4647e23ced81f59e940d7d4a1469d9
MD5 9786f13a5cf0eed482ccd4ad203e9137
BLAKE2b-256 16025dddff5366fde47133186efb847fa88bddef85914bbe623e25cfeccb3517

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for MarkupSafe-3.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ee3941769bd2522fe39222206f6dd97ae83c442a94c90f2b7a25d847d40f4729
MD5 d9c92a39b32e77663c2f432b39322e24
BLAKE2b-256 106e1b8070bbfc467429c7983cd5ffd4ec57e1d501763d974c7caaa0a9a79f4c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for MarkupSafe-3.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5a4cb365cb49b750bdb60b846b0c0bc49ed62e59a76635095a179d440540c346
MD5 a708f8d084eb899ce6afa282354eb156
BLAKE2b-256 279479751928bca5841416d8ca02e22198672e021d5c7120338e2a6e3771f8fc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for MarkupSafe-3.0.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 62fada2c942702ef8952754abfc1a9f7658a4d5460fabe95ac7ec2cbe0d02abc
MD5 b41cebfdc0a38d915c7c548c5a56c4c5
BLAKE2b-256 66509389ae6cdff78d7481a2a2641830b5eb1d1f62177550e73355a810a889c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for MarkupSafe-3.0.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 40f1e10d51c92859765522cbd79c5c8989f40f0419614bcdc5015e7b6bf97fc5
MD5 d0c365e05f10c91afd627d2c8dd3f316
BLAKE2b-256 86f5241238f89cdd6461ac9f521af8389f9a48fab97e4f315c69e9e0d52bc919

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for MarkupSafe-3.0.1-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 8ae369e84466aa70f3154ee23c1451fda10a8ee1b63923ce76667e3077f2b0c4
MD5 5340a005915f50bc63c33c5a8887b3a8
BLAKE2b-256 456d72ed58d42a12bd9fc288dbff6dd8d03ea973a232ac0538d7f88d105b5251

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for MarkupSafe-3.0.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 9ba25a71ebf05b9bb0e2ae99f8bc08a07ee8e98c612175087112656ca0f5c8bf
MD5 dfebc0a93484a2db61685e5adf481610
BLAKE2b-256 fcb520cb1d714596acb553c810009c8004c809823947da63e13c19a7decfcb6c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: MarkupSafe-3.0.1-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.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 fa7d686ed9883f3d664d39d5a8e74d3c5f63e603c2e3ff0abcba23eac6542635
MD5 b58f7c4b19c54975d0b3240323691390
BLAKE2b-256 5a57b6b7aa23b2e26d68d601718f8ce3161fbdaf967b31752c7dec52bef828c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a4792d3b3a6dfafefdf8e937f14906a51bd27025a36f4b188728a73382231d91
MD5 ad9add047521e56e6eb02b3f3c9fd1f9
BLAKE2b-256 d40b998b17b9e06ea45ad1646fea586f1b83d02dfdb14d47dd2fd81fba5a08c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7044312a928a66a4c2a22644147bc61a199c1709712069a344a3fb5cfcf16915
MD5 677874a73d701ce667dfdca6b1833be5
BLAKE2b-256 6df88fd52a66e8f62a9add62b4a0b5a3ab4092027437f2ef027f812d94ae91cf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for MarkupSafe-3.0.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ad91738f14eb8da0ff82f2acd0098b6257621410dcbd4df20aaa5b4233d75a50
MD5 2e31722f84ee2d2116197fcbdf757bec
BLAKE2b-256 886040be0493decabc2344b12d3a709fd6ccdd15a5ebaee1e8d878315d107ad3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for MarkupSafe-3.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 244dbe463d5fb6d7ce161301a03a6fe744dac9072328ba9fc82289238582697b
MD5 b35f6f008e74784cd4965e6b340a25a9
BLAKE2b-256 ae1d7d5ec8bcfd9c2db235d720fa51d818b7e2abc45250ce5f53dd6cb60409ca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for MarkupSafe-3.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 973a371a55ce9ed333a3a0f8e0bcfae9e0d637711534bcb11e130af2ab9334e7
MD5 73216c953a4bc62739b34ede0b01e397
BLAKE2b-256 582678f161d602fb03804118905e5faacafc0ec592bbad71aaee62537529813a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for MarkupSafe-3.0.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d98e66a24497637dd31ccab090b34392dddb1f2f811c4b4cd80c230205c074a3
MD5 e3879b984f0d49f27f738cd8b999ebf2
BLAKE2b-256 26ce703ca3b03a709e3bd1fbffa407789e56b9fa664456538092617dd665fc1d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for MarkupSafe-3.0.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b954093679d5750495725ea6f88409946d69cfb25ea7b4c846eef5044194f583
MD5 8b9337805c6a2b272ce19bb53b6ebf83
BLAKE2b-256 8d43fd588ef5d192308c5e05974bac659bf6ae29c202b7ea2c4194bcf01eacee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for MarkupSafe-3.0.1-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 26627785a54a947f6d7336ce5963569b5d75614619e75193bdb4e06e21d447ad
MD5 898feb511bfcbaf79587a5f089cc5e77
BLAKE2b-256 ceaf2f5d88a7fc7226bd34c6e15f6061246ad8cff979da9f19d11bdd0addd8e2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for MarkupSafe-3.0.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 4ffaaac913c3f7345579db4f33b0020db693f302ca5137f106060316761beea9
MD5 98e68db3cf50b80870c42b96dab3eed7
BLAKE2b-256 2341decb99ab07793656821a86f827a394700ce28402ebb02dc6d003210d9859

See more details on using hashes here.

File details

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

File metadata

  • Download URL: MarkupSafe-3.0.1-cp310-cp310-win32.whl
  • Upload date:
  • Size: 15.1 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.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 db15ce28e1e127a0013dfb8ac243a8e392db8c61eae113337536edb28bdc1f97
MD5 5c785f996f09ba8513073be8c216e7d4
BLAKE2b-256 3095ca809c01624428d427e9b3a4500f9068eca941e0c520328954ce84ad966a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cb53e2a99df28eee3b5f4fea166020d3ef9116fdc5764bc5117486e6d1211b25
MD5 9cd0747774ccae976127574a52f8114a
BLAKE2b-256 8e70e19c4f39d68a52406012ee118667b57efb0bbe6e950be21187cd7a1b4b80

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3341c043c37d78cc5ae6e3e305e988532b072329639007fd408a476642a89fd6
MD5 218e9029c9a60fe3dd50e32e732e4b0f
BLAKE2b-256 3dcbcbad5f093e12cd79ceea3e2957ba5bd4c2706810f333d0a3422ab2aef358

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for MarkupSafe-3.0.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 80fcbf3add8790caddfab6764bde258b5d09aefbe9169c183f88a7410f0f6dea
MD5 de733dd8ae781f84445861d3676aca32
BLAKE2b-256 965559389babc6e8ed206849a9958de9da7c23f3a75d294f46e99624fa38fb79

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for MarkupSafe-3.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 48488d999ed50ba8d38c581d67e496f955821dc183883550a6fbc7f1aefdc170
MD5 401b8c4bd23b82db4ed571f98a61f4bc
BLAKE2b-256 2e0d5d91ef2b4f30afa87483a3a7c108c777d144b1c42d7113459296a8a2bfa0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for MarkupSafe-3.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 67c519635a4f64e495c50e3107d9b4075aec33634272b5db1cde839e07367589
MD5 2c55d3f5f63f825751b4cf6c896f024f
BLAKE2b-256 9241cf5397dd6bb18895d148aa402cafa71018f2ffc5f6e9d6e90d85b523c741

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for MarkupSafe-3.0.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f31ae06f1328595d762c9a2bf29dafd8621c7d3adc130cbb46278079758779ca
MD5 b7c85856e6cdffb3d6171c8d7cd59cd6
BLAKE2b-256 f6de12a4110c2c7c7b502fe0e6f911367726dbb7a37e03e207495135d064bb48

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for MarkupSafe-3.0.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3ffb4a8e7d46ed96ae48805746755fadd0909fea2306f93d5d8233ba23dda12a
MD5 9e23b16ddfd4196cb9465316a1b52b0e
BLAKE2b-256 3b255ea6500d200fd2dc3ea25c765f69dea0a1a8d42ec80a38cd896ad47cb85d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for MarkupSafe-3.0.1-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 db842712984e91707437461930e6011e60b39136c7331e971952bb30465bc1a1
MD5 05cdcfe9ef7388f1bb1d38190b000b03
BLAKE2b-256 43a20482d1a157f5f10f72fc4fe8c3be9ffa3651c1f7a12b60a3ab71b2635e13

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for MarkupSafe-3.0.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 93e8248d650e7e9d49e8251f883eed60ecbc0e8ffd6349e18550925e31bd029b
MD5 d5a4459531980e848ba0a1e6ecc86901
BLAKE2b-256 e3c4262fac0328552da9a75a7786d7c0f43adaba4afb5f295979d33fa0f324c7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: MarkupSafe-3.0.1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 15.1 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.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 242d6860f1fd9191aef5fae22b51c5c19767f93fb9ead4d21924e0bcb17619d8
MD5 21cfbdb7f9abfbeba5f27b68ff30842b
BLAKE2b-256 fd70b937a12df7bbff14e1ca3385929f464c7af2ca72c8183c95dad26c3bf754

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2a4b34a8d14649315c4bc26bbfa352663eb51d146e35eef231dd739d54a5430a
MD5 221c83b2115767625cbf65715ec9c09d
BLAKE2b-256 e9961ecb2bb5ee7298e628cff95833beba7da6a774df7fe890a6d2f0ec460590

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e24bfe89c6ac4c31792793ad9f861b8f6dc4546ac6dc8f1c9083c7c4f2b335cd
MD5 ee65d4f6091660ae8dfc819ad23177ee
BLAKE2b-256 838704806f7096ba1d4f1b8c61f35c1d7c0b507c6a3cf7ed495393bf97eb5af7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for MarkupSafe-3.0.1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8ad4ad1429cd4f315f32ef263c1342166695fad76c100c5d979c45d5570ed58b
MD5 7ba5dc55a1c9cfca9e05c505ff07859b
BLAKE2b-256 a88bb4d57bafca01c8b1e1fbb037660869fa4f6725983c4105a02bd1242f0066

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for MarkupSafe-3.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f94190df587738280d544971500b9cafc9b950d32efcb1fba9ac10d84e6aa4e6
MD5 98819eb3126fe438febbe3f6ce040a25
BLAKE2b-256 0b28229e797b8727427845b79cbd58019f598e478f974730fa705fa23904b18e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for MarkupSafe-3.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 40621d60d0e58aa573b68ac5e2d6b20d44392878e0bfc159012a5787c4e35bc8
MD5 ead9ac378685205c8bffce6ed85425d9
BLAKE2b-256 3e3ccbf30bf7ac1da2e013e3d338e1582db85fc3b27bf9f8863137423ad4b0b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for MarkupSafe-3.0.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b6a387d61fe41cdf7ea95b38e9af11cfb1a63499af2759444b99185c4ab33f5b
MD5 82b245656a56d204e4c94898a2e60196
BLAKE2b-256 e8b41121f3b2614de93cbb3deec7f44df283df44c2258ea9368bb1302b4a0b45

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for MarkupSafe-3.0.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e9393357f19954248b00bed7c56f29a25c930593a77630c719653d51e7669c2a
MD5 fe02de6b2808c0d75799a68b29c70fd8
BLAKE2b-256 91710c4782b9ce7fb68b140b94e1eb9d2b6292990bda91dc3d3b5a34e8bd41f3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for MarkupSafe-3.0.1-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 4935dd7883f1d50e2ffecca0aa33dc1946a94c8f3fdafb8df5c330e48f71b132
MD5 2dc4a1f5fb2dad7639ca89d18a9337af
BLAKE2b-256 6f4f420741fb39fa3d40396fb1731a1ca78e6f9fbb225dcf15e5185b1fa954bc

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