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

Uploaded Source

Built Distributions

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

Uploaded CPython 3.13t Windows x86-64

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

Uploaded CPython 3.13t Windows x86

MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_x86_64.whl (24.1 kB view details)

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

MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_i686.whl (24.1 kB view details)

Uploaded CPython 3.13t musllinux: musl 1.2+ i686

MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_aarch64.whl (25.5 kB view details)

Uploaded CPython 3.13t musllinux: musl 1.2+ ARM64

MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (23.9 kB view details)

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

MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (25.5 kB view details)

Uploaded CPython 3.13t manylinux: glibc 2.17+ ARM64

MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (23.8 kB view details)

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

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

Uploaded CPython 3.13t macOS 11.0+ ARM64

MarkupSafe-3.0.2-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.2-cp313-cp313-win_amd64.whl (15.6 kB view details)

Uploaded CPython 3.13 Windows x86-64

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

Uploaded CPython 3.13 Windows x86

MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_x86_64.whl (23.3 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13 musllinux: musl 1.2+ i686

MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_aarch64.whl (24.2 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ ARM64

MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (23.1 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ x86-64

MarkupSafe-3.0.2-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.2-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.2-cp313-cp313-macosx_11_0_arm64.whl (12.4 kB view details)

Uploaded CPython 3.13 macOS 11.0+ ARM64

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

Uploaded CPython 3.12 Windows x86-64

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

Uploaded CPython 3.12 Windows x86

MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_x86_64.whl (23.4 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ x86-64

MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_i686.whl (23.3 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_aarch64.whl (24.2 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARM64

MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (23.1 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

MarkupSafe-3.0.2-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.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (23.0 kB view details)

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

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

Uploaded CPython 3.12 macOS 11.0+ ARM64

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

Uploaded CPython 3.11 Windows x86-64

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

Uploaded CPython 3.11 Windows x86

MarkupSafe-3.0.2-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.2-cp311-cp311-musllinux_1_2_i686.whl (23.4 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_aarch64.whl (24.1 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (23.1 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

MarkupSafe-3.0.2-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.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (23.0 kB view details)

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

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

Uploaded CPython 3.11 macOS 11.0+ ARM64

MarkupSafe-3.0.2-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.2-cp310-cp310-win_amd64.whl (15.5 kB view details)

Uploaded CPython 3.10 Windows x86-64

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

Uploaded CPython 3.10 Windows x86

MarkupSafe-3.0.2-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.2-cp310-cp310-musllinux_1_2_i686.whl (21.4 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_aarch64.whl (22.0 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARM64

MarkupSafe-3.0.2-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.2-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.2-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.2-cp310-cp310-macosx_11_0_arm64.whl (12.4 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

MarkupSafe-3.0.2-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.2-cp39-cp39-win_amd64.whl (15.5 kB view details)

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 Windows x86

MarkupSafe-3.0.2-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.2-cp39-cp39-musllinux_1_2_i686.whl (21.2 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_aarch64.whl (21.8 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARM64

MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (20.7 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

MarkupSafe-3.0.2-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.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (20.8 kB view details)

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

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

Uploaded CPython 3.9 macOS 11.0+ ARM64

MarkupSafe-3.0.2-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.2.tar.gz.

File metadata

  • Download URL: markupsafe-3.0.2.tar.gz
  • Upload date:
  • Size: 20.5 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.2.tar.gz
Algorithm Hash digest
SHA256 ee55d3edf80167e48ea11a923c7386f4669df67d7994554387f84e7d8b0a2bf0
MD5 cb0071711b573b155cc8f86e1de72167
BLAKE2b-256 b2975d42485e71dfc078108a86d6de8fa46db44a1a9295e89c5d6d4a06e23a62

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for MarkupSafe-3.0.2-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 e444a31f8db13eb18ada366ab3cf45fd4b31e4db1236a4448f68778c1d1a5a2f
MD5 de664f868ca863ce52ea5e9ef876a8cf
BLAKE2b-256 4f656079a46068dfceaeabb5dcad6d674f5f5c61a6fa5673746f42a9f4c233b3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: MarkupSafe-3.0.2-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.2-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 ba8062ed2cf21c07a9e295d5b8a2a5ce678b913b45fdf68c32d95d6c1291e0b6
MD5 f5d80fa2b81d4454448da140a62b07d3
BLAKE2b-256 8278fedb03c7d5380df2427038ec8d973587e90561b2d90cd472ce9254cf348b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 131a3c7689c85f5ad20f9f6fb1b866f402c445b220c19fe4308c0b147ccd2ad9
MD5 02413439ead82702a4a8aeb07b0bf12d
BLAKE2b-256 0d800985960e4b89922cb5a0bac0ed39c5b96cbc1a536a99f30e8c220a996ed9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3d79d162e7be8f996986c064d1c7c817f6df3a77fe3d6859f6f9e7be4b8c213a
MD5 c0649b95b68884447ff8050c3ef1c7ce
BLAKE2b-256 e6327621a4382488aa283cc05e8984a9c219abad3bca087be9ec77e89939ded9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6381026f158fdb7c72a168278597a5e3a5222e83ea18f543112b2662a9b699c5
MD5 149172c0e7d29bff57c7c401f251c76f
BLAKE2b-256 bb35cbe9238ec3f47ac9a7c8b3df7a808e7cb50fe149dc7039f5f454b3fba218

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c0ef13eaeee5b615fb07c9a7dadb38eac06a0608b41570d8ade51c56539e509d
MD5 f9af152a9d18a52b04f92f6341c123f8
BLAKE2b-256 0ce390e9651924c430b885468b56b3d597cabf6d72be4b24a0acd1fa0e12af67

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4aa4e5faecf353ed117801a068ebab7b7e09ffb6e1d5e412dc852e0da018126c
MD5 6629d68f5f880b923ecc787a83c2e73b
BLAKE2b-256 34cf65d4a571869a1a9078198ca28f39fba5fbb910f952f9dbc5220afff9f5e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d16a81a06776313e817c951135cf7340a3e91e8c1ff2fac444cfd75fffa04afe
MD5 967e18669da8dc2e87fb5b588243d854
BLAKE2b-256 668c6c7cf61f95d63bb866db39085150df1f2a5bd3335298f14a66b48e92659c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for MarkupSafe-3.0.2-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a904af0a6162c73e3edcb969eeeb53a63ceeb5d8cf642fade7d39e7963a22ddb
MD5 7ccad0fa3006cfd1ed4ab338eaf34657
BLAKE2b-256 7a06a10f955f70a2e5a9bf78d11a161029d278eeacbd35ef806c3fd17b13060d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for MarkupSafe-3.0.2-cp313-cp313t-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 b5a6b3ada725cea8a5e634536b1b01c30bcdcd7f9c6fff4151548d5bf6b3a36c
MD5 2c380212ebd8a00ef1d46f314bebffa6
BLAKE2b-256 626a8b89d24db2d32d433dffcd6a8779159da109842434f1dd2f6e71f32f738c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for MarkupSafe-3.0.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 e6a2a455bd412959b57a172ce6328d2dd1f01cb2135efda2e4576e8a23fa3b0f
MD5 9a8b63fed0c2dbb19a4e9c27dbfdc2cc
BLAKE2b-256 298807df22d2dd4df40aba9f3e402e6dc1b8ee86297dddbad4872bd5e7b0094f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: MarkupSafe-3.0.2-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.2-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 bcf3e58998965654fdaff38e58584d8937aa3096ab5354d493c77d1fdd66d7a1
MD5 e2a30bb65f0b961933335c1dc55a6e40
BLAKE2b-256 ee55c271b57db36f748f0e04a759ace9f8f759ccf22b4960c270c78a394f58be

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 444dcda765c8a838eaae23112db52f1efaf750daddb2d9ca300bcae1039adc5c
MD5 9b5fa718655c6ebe7b41d3187e97049e
BLAKE2b-256 ce4f9a02c1d335caabe5c4efb90e1b6e8ee944aa245c1aaaab8e8a618987d816

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 cabc348d87e913db6ab4aa100f01b08f481097838bdddf7c7a84b7575b7309ca
MD5 d46e2af7d2de2cb0772b44c2f83f6161
BLAKE2b-256 f9bf176950a1792b2cd2102b8ffeb5133e1ed984547b75db47c25a67d3359f77

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cdb82a876c47801bb54a690c5ae105a46b392ac6099881cdfb9f6e95e4014c6a
MD5 b2f28445dfa160e84167a7a6fc1f3423
BLAKE2b-256 2a9f8619835cd6a711d6272d62abb78c033bda638fdc54c4e7f4272cf1c0962b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 15ab75ef81add55874e7ab7055e9c397312385bd9ced94920f2802310c930396
MD5 95fb4949e76f6563b50b98754a4bfbcd
BLAKE2b-256 0c9196cf928db8236f1bfab6ce15ad070dfdd02ed88261c2afafd4b43575e9e9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 569511d3b58c8791ab4c2e1285575265991e6d8f8700c7be0e88f86cb0672094
MD5 fa088e4c9d2d961e95ead0ec49150fac
BLAKE2b-256 d2f56eadfcd3885ea85fe2a7c128315cc1bb7241e1987443d78c8fe712d03091

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for MarkupSafe-3.0.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f3818cb119498c0678015754eba762e0d61e5b52d34c8b13d770f0719f7b1d79
MD5 1bb6675f822a8f45dbe2428bd78f0764
BLAKE2b-256 c2cfc9d56af24d56ea04daae7ac0940232d31d5a8354f2b457c6d856b2057d69

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for MarkupSafe-3.0.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f8b3d067f2e40fe93e1ccdd6b2e1d16c43140e76f02fb1319a05cf2b79d99430
MD5 387145a7d04e0aff57ad3cfef3dc8e4c
BLAKE2b-256 2b6d9409f3684d3335375d04e5f05744dfe7e9f120062c9857df4ab490a1031a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for MarkupSafe-3.0.2-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 ba9527cdd4c926ed0760bc301f6728ef34d841f405abf9d4f959c478421e4efd
MD5 61b7f0ac7934ec5f77f618a118290aae
BLAKE2b-256 830e67eb10a7ecc77a0c2bbe2b0235765b98d164d81600746914bebada795e97

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for MarkupSafe-3.0.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 8e06879fc22a25ca47312fbe7c8264eb0b662f6db27cb2d3bbbc74b1df4b9b87
MD5 6346ccc3aec88bdfab81174f4fe0eef7
BLAKE2b-256 c180a61f99dc3a936413c3ee4e1eecac96c0da5ed07ad56fd975f1a9da5bc630

See more details on using hashes here.

File details

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

File metadata

  • Download URL: MarkupSafe-3.0.2-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.2-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 0f4ca02bea9a23221c0182836703cbf8930c5e9454bacce27e767509fa286a30
MD5 e88a1e5d1fce91bce1750effaf2ac4c5
BLAKE2b-256 51ae97827349d3fcffee7e184bdf7f41cd6b88d9919c80f0263ba7acd1bbcb18

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ad10d3ded218f1039f11a75f8091880239651b52e9bb592ca27de44eed242a48
MD5 81ba7857cc11782fa5f364f9ad224bda
BLAKE2b-256 a2828be4c96ffee03c5b4a034e60a31294daf481e12c7c43ab8e34a1453ee48b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 52305740fe773d09cffb16f8ed0427942901f00adedac82ec8b67752f58a1b22
MD5 47c4cae5ebeb503b605014bbef045180
BLAKE2b-256 c4f6bb3ca0532de8086cbff5f06d137064c8410d10779c4c127e0e47d17c0b71

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2181e67807fc2fa785d0592dc2d6206c019b9502410671cc905d132a92866557
MD5 0a628acd367fe52b31eb0e183743c456
BLAKE2b-256 da0e1f32af846df486dce7c227fe0f2398dc7e2e51d4a370508281f3c1c5cddc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e17c96c14e19278594aa4841ec148115f9c7615a47382ecb6b82bd8fea3ab0c8
MD5 e6e15617474820eb6c831aad72153806
BLAKE2b-256 f3f089e7aadfb3749d0f52234a0c8c7867877876e0a20b60e2188e9850794c17

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1c99d261bd2d5f6b59325c92c73df481e05e57f19837bdca8413b9eac4bd8028
MD5 495ed3d206e2c246fff1a84f3dfda9fb
BLAKE2b-256 e025dd5c0f6ac1311e9b40f4af06c78efde0f3b5cbf02502f8ef9501294c425b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for MarkupSafe-3.0.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 88416bd1e65dcea10bc7569faacb2c20ce071dd1f87539ca2ab364bf6231393c
MD5 6876e5ed8d90b8fb3a1af394c0fb6da0
BLAKE2b-256 d5daf2eeb64c723f5e3777bc081da884b414671982008c47dcc1873d81f625b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for MarkupSafe-3.0.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 846ade7b71e3536c4e56b386c2a47adf5741d2d8b94ec9dc3e92e5e1ee1e2225
MD5 39b6ac4ffbe6944275afb1527a8ca741
BLAKE2b-256 6bb018f76bba336fa5aecf79d45dcd6c806c280ec44538b3c13671d49099fdd0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for MarkupSafe-3.0.2-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 9778bd8ab0a994ebf6f84c2b949e65736d5575320a17ae8984a77fab08db94cf
MD5 255d47e02092c9bc1f73d7b2193a533a
BLAKE2b-256 2209d1f21434c97fc42f09d290cbb6350d44eb12f09cc62c9476effdb33a18aa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for MarkupSafe-3.0.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 70a87b411535ccad5ef2f1df5136506a10775d267e197e4cf531ced10537bd6b
MD5 b4432c76bd532a0914c51cdd8f27cc14
BLAKE2b-256 dab83a3bd761922d416f3dc5d00bfbed11f66b1ab89a0c2b6e887240a30b0f6b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: MarkupSafe-3.0.2-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.2-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 6c89876f41da747c8d3677a2b540fb32ef5715f97b66eeb0c6b66f5e3ef6f59d
MD5 dd3ed817afb1aeed95f4aacb0e7e26ad
BLAKE2b-256 9a34a15aa69f01e2181ed8d2b685c0d2f6655d5cca2c4db0ddea775e631918cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0bff5e0ae4ef2e1ae4fdf2dfd5b76c75e5c2fa4132d05fc1b0dabcd20c7e28c4
MD5 2c000d9a494ca66515b3c7054032ef7a
BLAKE2b-256 698483439e16197337b8b14b6a5b9c2105fff81d42c2a7c5b58ac7b62ee2c3b1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5b02fb34468b6aaa40dfc198d813a641e3a63b98c2b05a16b9f80b7ec314185e
MD5 15178a0de19c9b608255be515f80a654
BLAKE2b-256 f9ac46f960ca323037caa0a10662ef97d0a4728e890334fc156b9f9e52bcc4ca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d8213e09c917a951de9d09ecee036d5c7d36cb6cb7dbaece4c71a60d79fb9798
MD5 7f2ae731fb8d8f730922df02c760ed0c
BLAKE2b-256 007be92c64e079b2d0d7ddf69899c98842f3f9a60a1ae72657c89ce2655c999d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a123e330ef0853c6e822384873bef7507557d8e4a082961e1defa947aa59ba84
MD5 834201a4ff7b519261886ee7891201b5
BLAKE2b-256 f1a4aefb044a2cd8d7334c8a47d3fb2c9f328ac48cb349468cc31c20b539305f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2cb8438c3cbb25e220c2ab33bb226559e7afb3baec11c4f218ffa7308603c832
MD5 89839bdcd01be2d96dcfbf6b3e4a090d
BLAKE2b-256 f2969cdafba8445d3a53cae530aaf83c38ec64c4d5427d975c974084af5bc5d2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for MarkupSafe-3.0.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1e084f686b92e5b83186b07e8a17fc09e38fff551f3602b249881fec658d3eca
MD5 ba1e58c87f016ecbef1831165737ba0f
BLAKE2b-256 8d215e4851379f88f3fad1de30361db501300d4f07bcad047d3cb0449fc51f8c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for MarkupSafe-3.0.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 93335ca3812df2f366e80509ae119189886b0f3c2b81325d39efdb84a1e2ae93
MD5 91d4ec5e04707e939c48a0d7d489eb81
BLAKE2b-256 6c30316d194b093cde57d448a4c3209f22e3046c5bb2fb0820b118292b334be7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for MarkupSafe-3.0.2-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 9025b4018f3a1314059769c7bf15441064b2207cb3f065e6ea1e7359cb46db9d
MD5 8edcd7cb01153f62f78fd49212f8aeec
BLAKE2b-256 6b28bbf83e3f76936960b850435576dd5e67034e200469571be53f69174a2dfd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for MarkupSafe-3.0.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 6af100e168aa82a50e186c82875a5893c5597a0c1ccdb0d8b40240b1f28b969a
MD5 d67a05ba8ca927976427c5b170d0c155
BLAKE2b-256 4406e7175d06dd6e9172d4a69a72592cb3f7a996a9c396eee29082826449bbc3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: MarkupSafe-3.0.2-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.2-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 fcabf5ff6eea076f859677f5f0b6b5c1a51e70a376b0579e0eadef8db48c6b50
MD5 e7eae8cc67da929f75521e725831d1f7
BLAKE2b-256 1123ffbf53694e8c94ebd1e7e491de185124277964344733c45481f32ede2499

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b424c77b206d63d500bcb69fa55ed8d0e6a3774056bdc4839fc9298a7edca171
MD5 ef4de80fb119dfe436aa346068b6cbc8
BLAKE2b-256 bd6e61ebf08d8940553afff20d1fb1ba7294b6f8d279df9fd0c0db911b4bbcfd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e07c3764494e3776c602c1e78e298937c3315ccc9043ead7e685b7f2b8d47b3c
MD5 180438620592094a8219fade5cb95dbb
BLAKE2b-256 290184b57395b4cc062f9c4c55ce0df7d3108ca32397299d9df00fedd9117d3d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3809ede931876f5b2ec92eef964286840ed3540dadf803dd570c3b7e13141a3b
MD5 42c70ca4d43074d9d9a7930372909915
BLAKE2b-256 cccd07438f95f83e8bc028279909d9c9bd39e24149b0d60053a97b2bc4f8aa51

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bbcb445fa71794da8f178f0f6d66789a28d7319071af7a496d4d507ed566270d
MD5 6fb2985db3f3b1aec8d8615221fb91ea
BLAKE2b-256 2235137da042dfb4720b638d2937c38a9c2df83fe32d20e8c8f3185dbfef05f7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 38a9ef736c01fccdd6600705b09dc574584b89bea478200c5fbf112a6b0d5579
MD5 a5d18856c1e120d97416490cd61e804f
BLAKE2b-256 1d6935fa85a8ece0a437493dc61ce0bb6d459dcba482c34197e3efc829aa357f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for MarkupSafe-3.0.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 57cb5a3cf367aeb1d316576250f65edec5bb3be939e9247ae594b4bcbc317dfb
MD5 dd900969d96e0211baf660351e3589f5
BLAKE2b-256 29286d029a903727a1b62edb51863232152fd335d602def598dade38996887f0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for MarkupSafe-3.0.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9e2d922824181480953426608b81967de705c3cef4d1af983af849d7bd619158
MD5 1e27ea4f53f5c6c0d8f957df67c28ba6
BLAKE2b-256 04e16e2194baeae0bca1fae6629dc0cbbb968d4d941469cbab11a3872edff374

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for MarkupSafe-3.0.2-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 7e94c425039cde14257288fd61dcfb01963e658efbc0ff54f5306b06054700f8
MD5 775e84e7f93f162e55ab9f1c401ac2b3
BLAKE2b-256 0490d08277ce111dd22f77149fd1a5d4653eeb3b3eaacbdfcbae5afb2600eebd

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for MarkupSafe-3.0.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 6e296a513ca3d94054c2c881cc913116e90fd030ad1c656b3869762b754f5f8a
MD5 e6f7e19a7b800f17f0ca101bf6472932
BLAKE2b-256 b373085399401383ce949f727afec55ec3abd76648d04b9f22e1c0e99cb4bec3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: MarkupSafe-3.0.2-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.2-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 8c4e8c3ce11e1f92f6536ff07154f9d49677ebaaafc32db9db4620bc11ed480f
MD5 72340e013cc6110a9e407c6d7e86f24f
BLAKE2b-256 7c31bd635fb5989440d9365c5e3c47556cfea121c7803f5034ac843e8f37c2f2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 eb7972a85c54febfb25b5c4b4f3af4dcc731994c7da0d8a0b4a6eb0640e1d178
MD5 e67f6c7e803ae2f84211f5d602a80081
BLAKE2b-256 17d85811082f85bb88410ad7e452263af048d685669bbbfb7b595e8689152498

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3169b1eefae027567d1ce6ee7cae382c57fe26e82775f460f0b2778beaad66c0
MD5 9efa1ef426b71f89fe40341384731c25
BLAKE2b-256 19a334187a78613920dfd3cdf68ef6ce5e99c4f3417f035694074beb8848cd77

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1225beacc926f536dc82e45f8a4d68502949dc67eea90eab715dea3a21c1b5f0
MD5 c16650ee26933aedbaeecceb7ef87328
BLAKE2b-256 e6cf0a490a4bd363048c3022f2f475c8c05582179bb179defcee4766fb3dcc18

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 88b49a3b9ff31e19998750c38e030fc7bb937398b1f78cfa599aaef92d693144
MD5 fb9457f0f3fbe60aa052831808b69ea1
BLAKE2b-256 538ff339c98a178f3c1e545622206b40986a4c3307fe39f70ccd3d9df9a9e425

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1a9d3f5f0901fdec14d8d2f66ef7d035f2157240a433441719ac9a3fba440b13
MD5 6475cca4ffdebf06343d8783616d19ab
BLAKE2b-256 f0257a7c6e4dbd4f867d95d94ca15449e91e52856f6ed1905d58ef1de5e211d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for MarkupSafe-3.0.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 cfad01eed2c2e0c01fd0ecd2ef42c492f7f93902e39a42fc9ee1692961443a29
MD5 45659fd412a8adbbf6b611f9dc2d31b6
BLAKE2b-256 1a038496a1a78308456dbd50b23a385c69b41f2e9661c67ea1329849a598a8f9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for MarkupSafe-3.0.2-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 48032821bbdf20f5799ff537c7ac3d1fba0ba032cfc06194faffa8cda8b560ff
MD5 9bec71ce68654f8372e589fabc02eb8e
BLAKE2b-256 4bc2fbdbfe48848e7112ab05e627e718e854d20192b674952d9042ebd8c9e5de

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for MarkupSafe-3.0.2-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 eaa0a10b7f72326f1372a713e73c3f739b524b3af41feb43e4921cb529f5929a
MD5 ad582150474e4c48d93fb0647c571c7b
BLAKE2b-256 a7ea9b1530c3fdeeca613faeb0fb5cbcf2389d816072fab72a71b45749ef6062

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