Skip to main content

Safely add untrusted strings to HTML/XML markup.

Project description

MarkupSafe implements a text object that escapes characters so it is safe to use in HTML and XML. Characters that have special meanings are replaced so that they display as the actual characters. This mitigates injection attacks, meaning untrusted user input can safely be displayed on a page.

Installing

Install and update using pip:

pip install -U MarkupSafe

Examples

>>> from markupsafe import Markup, escape
>>> # escape replaces special characters and wraps in Markup
>>> escape('<script>alert(document.cookie);</script>')
Markup(u'&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 text subclass (str on Python 3, unicode on Python 2)
>>> # methods and operators escape their arguments
>>> template = Markup("Hello <em>%s</em>")
>>> template % '"World"'
Markup('Hello <em>&#34;World&#34;</em>')

Project details


Download files

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

Source Distribution

MarkupSafe-1.1.1.tar.gz (19.2 kB view details)

Uploaded Source

Built Distributions

MarkupSafe-1.1.1-cp39-cp39-win_amd64.whl (16.8 kB view details)

Uploaded CPython 3.9Windows x86-64

MarkupSafe-1.1.1-cp39-cp39-win32.whl (16.2 kB view details)

Uploaded CPython 3.9Windows x86

MarkupSafe-1.1.1-cp39-cp39-manylinux2014_aarch64.whl (33.8 kB view details)

Uploaded CPython 3.9

MarkupSafe-1.1.1-cp39-cp39-manylinux2010_x86_64.whl (32.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.12+ x86-64

MarkupSafe-1.1.1-cp39-cp39-manylinux2010_i686.whl (32.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.12+ i686

MarkupSafe-1.1.1-cp39-cp39-manylinux1_x86_64.whl (32.5 kB view details)

Uploaded CPython 3.9

MarkupSafe-1.1.1-cp39-cp39-manylinux1_i686.whl (32.2 kB view details)

Uploaded CPython 3.9

MarkupSafe-1.1.1-cp39-cp39-macosx_10_9_x86_64.whl (16.4 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

MarkupSafe-1.1.1-cp38-cp38-win_amd64.whl (16.8 kB view details)

Uploaded CPython 3.8Windows x86-64

MarkupSafe-1.1.1-cp38-cp38-win32.whl (16.2 kB view details)

Uploaded CPython 3.8Windows x86

MarkupSafe-1.1.1-cp38-cp38-manylinux2014_aarch64.whl (33.9 kB view details)

Uploaded CPython 3.8

MarkupSafe-1.1.1-cp38-cp38-manylinux2010_x86_64.whl (32.6 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.12+ x86-64

MarkupSafe-1.1.1-cp38-cp38-manylinux2010_i686.whl (32.3 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.12+ i686

MarkupSafe-1.1.1-cp38-cp38-manylinux1_x86_64.whl (32.7 kB view details)

Uploaded CPython 3.8

MarkupSafe-1.1.1-cp38-cp38-manylinux1_i686.whl (31.4 kB view details)

Uploaded CPython 3.8

MarkupSafe-1.1.1-cp38-cp38-macosx_10_9_x86_64.whl (16.4 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

MarkupSafe-1.1.1-cp37-cp37m-win_amd64.whl (16.6 kB view details)

Uploaded CPython 3.7mWindows x86-64

MarkupSafe-1.1.1-cp37-cp37m-win32.whl (15.8 kB view details)

Uploaded CPython 3.7mWindows x86

MarkupSafe-1.1.1-cp37-cp37m-manylinux2014_aarch64.whl (34.4 kB view details)

Uploaded CPython 3.7m

MarkupSafe-1.1.1-cp37-cp37m-manylinux2010_x86_64.whl (33.2 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.12+ x86-64

MarkupSafe-1.1.1-cp37-cp37m-manylinux2010_i686.whl (32.9 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.12+ i686

MarkupSafe-1.1.1-cp37-cp37m-manylinux1_x86_64.whl (27.5 kB view details)

Uploaded CPython 3.7m

MarkupSafe-1.1.1-cp37-cp37m-manylinux1_i686.whl (27.0 kB view details)

Uploaded CPython 3.7m

MarkupSafe-1.1.1-cp37-cp37m-macosx_10_9_x86_64.whl (16.3 kB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

MarkupSafe-1.1.1-cp37-cp37m-macosx_10_6_intel.whl (18.9 kB view details)

Uploaded CPython 3.7mmacOS 10.6+ Intel (x86-64, i386)

MarkupSafe-1.1.1-cp36-cp36m-win_amd64.whl (16.6 kB view details)

Uploaded CPython 3.6mWindows x86-64

MarkupSafe-1.1.1-cp36-cp36m-win32.whl (15.8 kB view details)

Uploaded CPython 3.6mWindows x86

MarkupSafe-1.1.1-cp36-cp36m-manylinux2014_aarch64.whl (33.5 kB view details)

Uploaded CPython 3.6m

MarkupSafe-1.1.1-cp36-cp36m-manylinux2010_x86_64.whl (32.2 kB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.12+ x86-64

MarkupSafe-1.1.1-cp36-cp36m-manylinux2010_i686.whl (32.0 kB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.12+ i686

MarkupSafe-1.1.1-cp36-cp36m-manylinux1_x86_64.whl (27.5 kB view details)

Uploaded CPython 3.6m

MarkupSafe-1.1.1-cp36-cp36m-manylinux1_i686.whl (27.0 kB view details)

Uploaded CPython 3.6m

MarkupSafe-1.1.1-cp36-cp36m-macosx_10_9_x86_64.whl (16.3 kB view details)

Uploaded CPython 3.6mmacOS 10.9+ x86-64

MarkupSafe-1.1.1-cp36-cp36m-macosx_10_6_intel.whl (18.8 kB view details)

Uploaded CPython 3.6mmacOS 10.6+ Intel (x86-64, i386)

MarkupSafe-1.1.1-cp35-cp35m-win_amd64.whl (16.6 kB view details)

Uploaded CPython 3.5mWindows x86-64

MarkupSafe-1.1.1-cp35-cp35m-win32.whl (15.8 kB view details)

Uploaded CPython 3.5mWindows x86

MarkupSafe-1.1.1-cp35-cp35m-manylinux1_x86_64.whl (27.5 kB view details)

Uploaded CPython 3.5m

MarkupSafe-1.1.1-cp35-cp35m-manylinux1_i686.whl (26.9 kB view details)

Uploaded CPython 3.5m

MarkupSafe-1.1.1-cp35-cp35m-macosx_10_6_intel.whl (18.9 kB view details)

Uploaded CPython 3.5mmacOS 10.6+ Intel (x86-64, i386)

MarkupSafe-1.1.1-cp34-cp34m-win_amd64.whl (14.4 kB view details)

Uploaded CPython 3.4mWindows x86-64

MarkupSafe-1.1.1-cp34-cp34m-win32.whl (14.6 kB view details)

Uploaded CPython 3.4mWindows x86

MarkupSafe-1.1.1-cp34-cp34m-manylinux1_x86_64.whl (27.3 kB view details)

Uploaded CPython 3.4m

MarkupSafe-1.1.1-cp34-cp34m-manylinux1_i686.whl (26.8 kB view details)

Uploaded CPython 3.4m

MarkupSafe-1.1.1-cp34-cp34m-macosx_10_6_intel.whl (18.8 kB view details)

Uploaded CPython 3.4mmacOS 10.6+ Intel (x86-64, i386)

MarkupSafe-1.1.1-cp27-cp27mu-manylinux1_x86_64.whl (24.3 kB view details)

Uploaded CPython 2.7mu

MarkupSafe-1.1.1-cp27-cp27mu-manylinux1_i686.whl (23.9 kB view details)

Uploaded CPython 2.7mu

MarkupSafe-1.1.1-cp27-cp27m-win_amd64.whl (14.0 kB view details)

Uploaded CPython 2.7mWindows x86-64

MarkupSafe-1.1.1-cp27-cp27m-win32.whl (14.2 kB view details)

Uploaded CPython 2.7mWindows x86

MarkupSafe-1.1.1-cp27-cp27m-manylinux1_x86_64.whl (24.3 kB view details)

Uploaded CPython 2.7m

MarkupSafe-1.1.1-cp27-cp27m-manylinux1_i686.whl (23.9 kB view details)

Uploaded CPython 2.7m

MarkupSafe-1.1.1-cp27-cp27m-macosx_10_6_intel.whl (17.4 kB view details)

Uploaded CPython 2.7mmacOS 10.6+ Intel (x86-64, i386)

File details

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

File metadata

  • Download URL: MarkupSafe-1.1.1.tar.gz
  • Upload date:
  • Size: 19.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.7.2

File hashes

Hashes for MarkupSafe-1.1.1.tar.gz
Algorithm Hash digest
SHA256 29872e92839765e546828bb7754a68c418d927cd064fd4708fab9fe9c8bb116b
MD5 43fd756864fe42063068e092e220c57b
BLAKE2b-256 b92e64db92e53b86efccfaea71321f597fa2e1b2bd3853d8ce658568f7a13094

See more details on using hashes here.

File details

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

File metadata

  • Download URL: MarkupSafe-1.1.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 16.8 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.9.1

File hashes

Hashes for MarkupSafe-1.1.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 b7d644ddb4dbd407d31ffb699f1d140bc35478da613b441c582aeb7c43838dd8
MD5 bd858ff978ecd9437229a655ebfb33af
BLAKE2b-256 fb39de6ecf2652dc1b0fb374888a398f326d6c61f12e8004ed3dccb093e33e00

See more details on using hashes here.

File details

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

File metadata

  • Download URL: MarkupSafe-1.1.1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 16.2 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.9.1

File hashes

Hashes for MarkupSafe-1.1.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 22c178a091fc6630d0d045bdb5992d2dfe14e3259760e713c490da5323866c39
MD5 3cb496fca3845db4df77ffe9a1d416b0
BLAKE2b-256 dcd7e3478fb2c3f2cc446ae4c6dedba1805f04b329bf30237cfe9f484f3d0a0e

See more details on using hashes here.

File details

Details for the file MarkupSafe-1.1.1-cp39-cp39-manylinux2014_aarch64.whl.

File metadata

  • Download URL: MarkupSafe-1.1.1-cp39-cp39-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 33.8 kB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.9.1

File hashes

Hashes for MarkupSafe-1.1.1-cp39-cp39-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 feb7b34d6325451ef96bc0e36e1a6c0c1c64bc1fbec4b854f4529e51887b1621
MD5 6b127778299f1afb70543cbc724cf227
BLAKE2b-256 0d980fd0f0baf8a59facb65cee37a26c775ee5a114f86e8b0cfe01dad1b8022a

See more details on using hashes here.

File details

Details for the file MarkupSafe-1.1.1-cp39-cp39-manylinux2010_x86_64.whl.

File metadata

  • Download URL: MarkupSafe-1.1.1-cp39-cp39-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 32.5 kB
  • Tags: CPython 3.9, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.9.1

File hashes

Hashes for MarkupSafe-1.1.1-cp39-cp39-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 6f1e273a344928347c1290119b493a1f0303c52f5a5eae5f16d74f48c15d4a85
MD5 696e384220882b1e2dec43721c29967a
BLAKE2b-256 be2ead118ca191e44dc6f87182310e5be51da71d4b81ac659e5f8d5f18251806

See more details on using hashes here.

File details

Details for the file MarkupSafe-1.1.1-cp39-cp39-manylinux2010_i686.whl.

File metadata

  • Download URL: MarkupSafe-1.1.1-cp39-cp39-manylinux2010_i686.whl
  • Upload date:
  • Size: 32.2 kB
  • Tags: CPython 3.9, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.9.1

File hashes

Hashes for MarkupSafe-1.1.1-cp39-cp39-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 7fed13866cf14bba33e7176717346713881f56d9d2bcebab207f7a036f41b850
MD5 75dcfe25e5d1064dfc71a2c066350441
BLAKE2b-256 8c9b85abd4ff6f9b6d03ce504e6d84589e13d5fd6bc4d63647a57acf1b4abc03

See more details on using hashes here.

File details

Details for the file MarkupSafe-1.1.1-cp39-cp39-manylinux1_x86_64.whl.

File metadata

  • Download URL: MarkupSafe-1.1.1-cp39-cp39-manylinux1_x86_64.whl
  • Upload date:
  • Size: 32.5 kB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.9.1

File hashes

Hashes for MarkupSafe-1.1.1-cp39-cp39-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 2beec1e0de6924ea551859edb9e7679da6e4870d32cb766240ce17e0a0ba2014
MD5 493378ad7808695f121c527f910f03c7
BLAKE2b-256 b9bdc5183b3416a14c221de4208a52665f7038cc8b159e8ad89bd9ccc23de08a

See more details on using hashes here.

File details

Details for the file MarkupSafe-1.1.1-cp39-cp39-manylinux1_i686.whl.

File metadata

  • Download URL: MarkupSafe-1.1.1-cp39-cp39-manylinux1_i686.whl
  • Upload date:
  • Size: 32.2 kB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.9.1

File hashes

Hashes for MarkupSafe-1.1.1-cp39-cp39-manylinux1_i686.whl
Algorithm Hash digest
SHA256 98bae9582248d6cf62321dcb52aaf5d9adf0bad3b40582925ef7c7f0ed85fceb
MD5 bda84753d0286192058387bddcd2fce0
BLAKE2b-256 f00385efaa82ea0c7655b99db9252347623626048b35c03b046fcfde1af43b61

See more details on using hashes here.

File details

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

File metadata

  • Download URL: MarkupSafe-1.1.1-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 16.4 kB
  • Tags: CPython 3.9, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.9.1

File hashes

Hashes for MarkupSafe-1.1.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d73a845f227b0bfe8a7455ee623525ee656a9e2e749e4742706d80a6065d5e2c
MD5 e29f91494c8ed2bd5a57a0e8b962ed49
BLAKE2b-256 858543579939ae1ec6a493c0e68528cd4e26a29fbd4109f5553d4966f6273801

See more details on using hashes here.

File details

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

File metadata

  • Download URL: MarkupSafe-1.1.1-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 16.8 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/45.1.0 requests-toolbelt/0.9.1 tqdm/4.41.1 CPython/3.8.1

File hashes

Hashes for MarkupSafe-1.1.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 e8313f01ba26fbbe36c7be1966a7b7424942f670f38e666995b88d012765b9be
MD5 be41cd12e1611fc1a33d499c47c9e218
BLAKE2b-256 4f8bda8a2ae5780d38271ac6e691756fc938cf4df8f225eb8aaced0204304932

See more details on using hashes here.

File details

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

File metadata

  • Download URL: MarkupSafe-1.1.1-cp38-cp38-win32.whl
  • Upload date:
  • Size: 16.2 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/45.1.0 requests-toolbelt/0.9.1 tqdm/4.41.1 CPython/3.8.1

File hashes

Hashes for MarkupSafe-1.1.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 596510de112c685489095da617b5bcbbac7dd6384aeebeda4df6025d0256a81b
MD5 d01dec7d631941e49ba078d7e6ab75f7
BLAKE2b-256 93b895b1c38f5b00ed2c0d16cf65f2b07a5ae73eeacf66d2010c0e934737d1d9

See more details on using hashes here.

File details

Details for the file MarkupSafe-1.1.1-cp38-cp38-manylinux2014_aarch64.whl.

File metadata

  • Download URL: MarkupSafe-1.1.1-cp38-cp38-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 33.9 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.9.1

File hashes

Hashes for MarkupSafe-1.1.1-cp38-cp38-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 caabedc8323f1e93231b52fc32bdcde6db817623d33e100708d9a68e1f53b26b
MD5 160c1973cc5bd008075fecdf49e48dde
BLAKE2b-256 8366ec77a7000486d4d6acb599993b58dc4c97d510e3f2c37b81d31fb7632c4f

See more details on using hashes here.

File details

Details for the file MarkupSafe-1.1.1-cp38-cp38-manylinux2010_x86_64.whl.

File metadata

  • Download URL: MarkupSafe-1.1.1-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 32.6 kB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.9.1

File hashes

Hashes for MarkupSafe-1.1.1-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 d9be0ba6c527163cbed5e0857c451fcd092ce83947944d6c14bc95441203f032
MD5 c8ec7f0c517ae87e0a694133691efb8a
BLAKE2b-256 801698afa5c19296aaf7b16d1eb3c7e997656e6cfad79606e7d3885905615e96

See more details on using hashes here.

File details

Details for the file MarkupSafe-1.1.1-cp38-cp38-manylinux2010_i686.whl.

File metadata

  • Download URL: MarkupSafe-1.1.1-cp38-cp38-manylinux2010_i686.whl
  • Upload date:
  • Size: 32.3 kB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.9.1

File hashes

Hashes for MarkupSafe-1.1.1-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 acf08ac40292838b3cbbb06cfe9b2cb9ec78fce8baca31ddb87aaac2e2dc3bc2
MD5 e80ea7670ea7f3168116595781bf826d
BLAKE2b-256 b7d59d36bdf18173408ce6b16bcc625e4019abf1dd4b52fa66163e231f5b7c98

See more details on using hashes here.

File details

Details for the file MarkupSafe-1.1.1-cp38-cp38-manylinux1_x86_64.whl.

File metadata

  • Download URL: MarkupSafe-1.1.1-cp38-cp38-manylinux1_x86_64.whl
  • Upload date:
  • Size: 32.7 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/45.1.0 requests-toolbelt/0.9.1 tqdm/4.41.1 CPython/3.8.1

File hashes

Hashes for MarkupSafe-1.1.1-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 13d3144e1e340870b25e7b10b98d779608c02016d5184cfb9927a9f10c689f42
MD5 729e3dbc5af5a08b9b0e21f01f9d6905
BLAKE2b-256 4b20f6d7648c81cb84815d0be935d5c74cd1cc0239e43eadb1a61062d34b6543

See more details on using hashes here.

File details

Details for the file MarkupSafe-1.1.1-cp38-cp38-manylinux1_i686.whl.

File metadata

  • Download URL: MarkupSafe-1.1.1-cp38-cp38-manylinux1_i686.whl
  • Upload date:
  • Size: 31.4 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/45.1.0 requests-toolbelt/0.9.1 tqdm/4.41.1 CPython/3.8.1

File hashes

Hashes for MarkupSafe-1.1.1-cp38-cp38-manylinux1_i686.whl
Algorithm Hash digest
SHA256 cdb132fc825c38e1aeec2c8aa9338310d29d337bebbd7baa06889d09a60a1fa2
MD5 d1f2ba5b873d1e8643db9a5e5e1f1e6a
BLAKE2b-256 513c82b35d63a8e9fe1e7d4078c43a0a8fc631cc4ac9d2beff86c74af0cdb2d9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: MarkupSafe-1.1.1-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 16.4 kB
  • Tags: CPython 3.8, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/45.1.0 requests-toolbelt/0.9.1 tqdm/4.41.1 CPython/3.8.1

File hashes

Hashes for MarkupSafe-1.1.1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6788b695d50a51edb699cb55e35487e430fa21f1ed838122d722e0ff0ac5ba15
MD5 fe4b006d07921e8484d503f4ac85175e
BLAKE2b-256 0c1237f68957526d1ec0883b521934b4e1b8ff3dd8e4fab858a5bf3e487bcee9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: MarkupSafe-1.1.1-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 16.6 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.7.2

File hashes

Hashes for MarkupSafe-1.1.1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 9bf40443012702a1d2070043cb6291650a0841ece432556f784f004937f0f32c
MD5 6c1b3183669011c54f6d26309b6f4562
BLAKE2b-256 65c62399700d236d1dd681af8aebff1725558cddfd6e43d7a5184a675f4711f5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: MarkupSafe-1.1.1-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 15.8 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.7.2

File hashes

Hashes for MarkupSafe-1.1.1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 b00c1de48212e4cc9603895652c5c410df699856a2853135b3967591e4beebc2
MD5 65e14c2f3e5d956ee5b6dd5bf3ea5a2d
BLAKE2b-256 5bd41deb3c5dc3714fb160c7e2116fc6dff36a063d9156a9328cce54ef35cc52

See more details on using hashes here.

File details

Details for the file MarkupSafe-1.1.1-cp37-cp37m-manylinux2014_aarch64.whl.

File metadata

  • Download URL: MarkupSafe-1.1.1-cp37-cp37m-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 34.4 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.9.1

File hashes

Hashes for MarkupSafe-1.1.1-cp37-cp37m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 195d7d2c4fbb0ee8139a6cf67194f3973a6b3042d742ebe0a9ed36d8b6f0c07f
MD5 ce696052bddb5ef9dddb7edd483078be
BLAKE2b-256 c15396b8c31ee0947bd080b46f6dc9c0a35cceedae8c56a219cc4b9cce0a4f99

See more details on using hashes here.

File details

Details for the file MarkupSafe-1.1.1-cp37-cp37m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: MarkupSafe-1.1.1-cp37-cp37m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 33.2 kB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.9.1

File hashes

Hashes for MarkupSafe-1.1.1-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 a6a744282b7718a2a62d2ed9d993cad6f5f585605ad352c11de459f4108df0a1
MD5 c9c9888fa812cc8bc44cf6951b5d84e1
BLAKE2b-256 c2372e4def8ce3739a258998215df907f5815ecd1af71e62147f5eea2d12d4e8

See more details on using hashes here.

File details

Details for the file MarkupSafe-1.1.1-cp37-cp37m-manylinux2010_i686.whl.

File metadata

  • Download URL: MarkupSafe-1.1.1-cp37-cp37m-manylinux2010_i686.whl
  • Upload date:
  • Size: 32.9 kB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.9.1

File hashes

Hashes for MarkupSafe-1.1.1-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 6fffc775d90dcc9aed1b89219549b329a9250d918fd0b8fa8d93d154918422e1
MD5 b225370df818af07cbf90228e9c695d9
BLAKE2b-256 81e22cb8f60843559cd04a161d838b4c824f4569457d0bbd8b6416c0e68c9d25

See more details on using hashes here.

File details

Details for the file MarkupSafe-1.1.1-cp37-cp37m-manylinux1_x86_64.whl.

File metadata

  • Download URL: MarkupSafe-1.1.1-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 27.5 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.7.2

File hashes

Hashes for MarkupSafe-1.1.1-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 ba59edeaa2fc6114428f1637ffff42da1e311e29382d81b339c1817d37ec93c6
MD5 ce9334cb93c3fb155b6395458935ad61
BLAKE2b-256 987bff284bd8c80654e471b769062a9b43cc5d03e7a615048d96f4619df8d420

See more details on using hashes here.

File details

Details for the file MarkupSafe-1.1.1-cp37-cp37m-manylinux1_i686.whl.

File metadata

  • Download URL: MarkupSafe-1.1.1-cp37-cp37m-manylinux1_i686.whl
  • Upload date:
  • Size: 27.0 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.7.2

File hashes

Hashes for MarkupSafe-1.1.1-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 46c99d2de99945ec5cb54f23c8cd5689f6d7177305ebff350a58ce5f8de1669e
MD5 e067ad66455299548fc7e96054cd6ff7
BLAKE2b-256 d6e5348e7d7977202d9a6c7f4cac3c6d8f71b01bb3c91e0bd4b5c23670951fd6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: MarkupSafe-1.1.1-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 16.3 kB
  • Tags: CPython 3.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.9.1

File hashes

Hashes for MarkupSafe-1.1.1-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 bf5aa3cbcfdf57fa2ee9cd1822c862ef23037f5c832ad09cfea57fa846dec193
MD5 157e92360be760727406398ba82fea1e
BLAKE2b-256 7078b7f1fac566e6d579a15b020dff0e77bc059093a6c5e6f6a777be4c959384

See more details on using hashes here.

File details

Details for the file MarkupSafe-1.1.1-cp37-cp37m-macosx_10_6_intel.whl.

File metadata

  • Download URL: MarkupSafe-1.1.1-cp37-cp37m-macosx_10_6_intel.whl
  • Upload date:
  • Size: 18.9 kB
  • Tags: CPython 3.7m, macOS 10.6+ Intel (x86-64, i386)
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.7.2

File hashes

Hashes for MarkupSafe-1.1.1-cp37-cp37m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 8defac2f2ccd6805ebf65f5eeb132adcf2ab57aa11fdf4c0dd5169a004710e7d
MD5 61aaa3e48888afbd2c25edd57dbdb17a
BLAKE2b-256 cec6f000f1af136ef74e4a95e33785921c73595c5390403f102e9b231b065b7a

See more details on using hashes here.

File details

Details for the file MarkupSafe-1.1.1-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: MarkupSafe-1.1.1-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 16.6 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.7.2

File hashes

Hashes for MarkupSafe-1.1.1-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 b1282f8c00509d99fef04d8ba936b156d419be841854fe901d8ae224c59f0be5
MD5 0f388d7e5e6ec5d5f32d18c83b7ef20d
BLAKE2b-256 b982833c7714951bff8f502ed054e6fbd8bd00e083d1fd96de6a46905cf23378

See more details on using hashes here.

File details

Details for the file MarkupSafe-1.1.1-cp36-cp36m-win32.whl.

File metadata

  • Download URL: MarkupSafe-1.1.1-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 15.8 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.7.2

File hashes

Hashes for MarkupSafe-1.1.1-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 535f6fc4d397c1563d08b88e485c3496cf5784e927af890fb3c3aac7f933ec66
MD5 1311d25a26d399bafe9f906f1e32cfb2
BLAKE2b-256 fe381ee869cf77456412512761cbabe9f0e30912c7a4d8bbb726d2393a4d4723

See more details on using hashes here.

File details

Details for the file MarkupSafe-1.1.1-cp36-cp36m-manylinux2014_aarch64.whl.

File metadata

  • Download URL: MarkupSafe-1.1.1-cp36-cp36m-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 33.5 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.9.1

File hashes

Hashes for MarkupSafe-1.1.1-cp36-cp36m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b1dba4527182c95a0db8b6060cc98ac49b9e2f5e64320e2b56e47cb2831978c7
MD5 7724ae4340eb26b906644a7e1558db26
BLAKE2b-256 06b2575cb8d628820ad23ea55af0d29899ea459de62cde7a78cfdde91608ce5f

See more details on using hashes here.

File details

Details for the file MarkupSafe-1.1.1-cp36-cp36m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: MarkupSafe-1.1.1-cp36-cp36m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 32.2 kB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.9.1

File hashes

Hashes for MarkupSafe-1.1.1-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 84dee80c15f1b560d55bcfe6d47b27d070b4681c699c572af2e3c7cc90a3b8e0
MD5 b70500cbf6b5e67459097ab2384caeee
BLAKE2b-256 9dd375cddfad6ca1d1bb3a017cece499a65e54ceb4583800f1256b8ad07bb57f

See more details on using hashes here.

File details

Details for the file MarkupSafe-1.1.1-cp36-cp36m-manylinux2010_i686.whl.

File metadata

  • Download URL: MarkupSafe-1.1.1-cp36-cp36m-manylinux2010_i686.whl
  • Upload date:
  • Size: 32.0 kB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.9.1

File hashes

Hashes for MarkupSafe-1.1.1-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 3b8a6499709d29c2e2399569d96719a1b21dcd94410a586a18526b143ec8470f
MD5 09f72763fef50f920f1be8a89320c2b5
BLAKE2b-256 2d0d119e18ded4869fb781f51ca6a1130f488dfd11d1bd59009101ba1adf01fa

See more details on using hashes here.

File details

Details for the file MarkupSafe-1.1.1-cp36-cp36m-manylinux1_x86_64.whl.

File metadata

  • Download URL: MarkupSafe-1.1.1-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 27.5 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.7.2

File hashes

Hashes for MarkupSafe-1.1.1-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 717ba8fe3ae9cc0006d7c451f0bb265ee07739daf76355d06366154ee68d221e
MD5 f57d2a0fdb09f238da2bf31c964a6142
BLAKE2b-256 b25f23e0023be6bb885d00ffbefad2942bc51a620328ee910f64abe5a8d18dd1

See more details on using hashes here.

File details

Details for the file MarkupSafe-1.1.1-cp36-cp36m-manylinux1_i686.whl.

File metadata

  • Download URL: MarkupSafe-1.1.1-cp36-cp36m-manylinux1_i686.whl
  • Upload date:
  • Size: 27.0 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.7.2

File hashes

Hashes for MarkupSafe-1.1.1-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 00bc623926325b26bb9605ae9eae8a215691f33cae5df11ca5424f06f2d1f473
MD5 eb5bab451b3e4c729be0c7b9549e8bd9
BLAKE2b-256 35258560907c79805c1ed2d1b8297c43ad82f5f23a5376d846bc1a2ace2aee53

See more details on using hashes here.

File details

Details for the file MarkupSafe-1.1.1-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: MarkupSafe-1.1.1-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 16.3 kB
  • Tags: CPython 3.6m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.9.1

File hashes

Hashes for MarkupSafe-1.1.1-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d53bc011414228441014aa71dbec320c66468c1030aae3a6e29778a3382d96e5
MD5 cfb9f55b017149239f705f89006518e1
BLAKE2b-256 45175b6a3a0afa0cb9827781ee43d8842a3540ac9d49855cad936099c7b9416b

See more details on using hashes here.

File details

Details for the file MarkupSafe-1.1.1-cp36-cp36m-macosx_10_6_intel.whl.

File metadata

  • Download URL: MarkupSafe-1.1.1-cp36-cp36m-macosx_10_6_intel.whl
  • Upload date:
  • Size: 18.8 kB
  • Tags: CPython 3.6m, macOS 10.6+ Intel (x86-64, i386)
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.7.2

File hashes

Hashes for MarkupSafe-1.1.1-cp36-cp36m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 24982cc2533820871eba85ba648cd53d8623687ff11cbb805be4ff7b4c971aff
MD5 4b0b7116eb725fa9bca011bc7ad41c8b
BLAKE2b-256 f000a6aea33f5598b080b86d6b6d1214b51afe3ffa6100b902d5aa465080083f

See more details on using hashes here.

File details

Details for the file MarkupSafe-1.1.1-cp35-cp35m-win_amd64.whl.

File metadata

  • Download URL: MarkupSafe-1.1.1-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 16.6 kB
  • Tags: CPython 3.5m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.7.2

File hashes

Hashes for MarkupSafe-1.1.1-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 9add70b36c5666a2ed02b43b335fe19002ee5235efd4b8a89bfcf9005bebac0d
MD5 6662480771cfe527182b5e1e610c291e
BLAKE2b-256 12108dbe995ab7e5d0471fd7aa90fdb756595ae9ef0ccf3707867b1b56254df8

See more details on using hashes here.

File details

Details for the file MarkupSafe-1.1.1-cp35-cp35m-win32.whl.

File metadata

  • Download URL: MarkupSafe-1.1.1-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 15.8 kB
  • Tags: CPython 3.5m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.7.2

File hashes

Hashes for MarkupSafe-1.1.1-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 6dd73240d2af64df90aa7c4e7481e23825ea70af4b4922f8ede5b9e35f78a3b1
MD5 a948c70a1241389d7120db90d69079ca
BLAKE2b-256 d89d7a8cad803ef73f47134ae5c3804e20b54149ce62a7d1337204f3cf2d1fa1

See more details on using hashes here.

File details

Details for the file MarkupSafe-1.1.1-cp35-cp35m-manylinux1_x86_64.whl.

File metadata

  • Download URL: MarkupSafe-1.1.1-cp35-cp35m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 27.5 kB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.7.2

File hashes

Hashes for MarkupSafe-1.1.1-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 7c1699dfe0cf8ff607dbdcc1e9b9af1755371f92a68f706051cc8c37d447c905
MD5 4359c5ddfd8adafcc008d8080b245ac3
BLAKE2b-256 6e57d40124076756c19ff2269678de7ae25a14ebbb3f6314eb5ce9477f191350

See more details on using hashes here.

File details

Details for the file MarkupSafe-1.1.1-cp35-cp35m-manylinux1_i686.whl.

File metadata

  • Download URL: MarkupSafe-1.1.1-cp35-cp35m-manylinux1_i686.whl
  • Upload date:
  • Size: 26.9 kB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.7.2

File hashes

Hashes for MarkupSafe-1.1.1-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 c8716a48d94b06bb3b2524c2b77e055fb313aeb4ea620c8dd03a105574ba704f
MD5 91da0fab436b2165e03188083ea17e0f
BLAKE2b-256 b160fa4afa6fb4547b46b24bc679dd312242e0e579b4ee5651a2e5f50f814319

See more details on using hashes here.

File details

Details for the file MarkupSafe-1.1.1-cp35-cp35m-macosx_10_6_intel.whl.

File metadata

  • Download URL: MarkupSafe-1.1.1-cp35-cp35m-macosx_10_6_intel.whl
  • Upload date:
  • Size: 18.9 kB
  • Tags: CPython 3.5m, macOS 10.6+ Intel (x86-64, i386)
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.7.2

File hashes

Hashes for MarkupSafe-1.1.1-cp35-cp35m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 79855e1c5b8da654cf486b830bd42c06e8780cea587384cf6545b7d9ac013a0b
MD5 7b57475db9e376a94b19d63bd7417d54
BLAKE2b-256 64cee159d4201a45d56ad14d77b020be7678583898cecbb2a25817f363f71486

See more details on using hashes here.

File details

Details for the file MarkupSafe-1.1.1-cp34-cp34m-win_amd64.whl.

File metadata

  • Download URL: MarkupSafe-1.1.1-cp34-cp34m-win_amd64.whl
  • Upload date:
  • Size: 14.4 kB
  • Tags: CPython 3.4m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.7.2

File hashes

Hashes for MarkupSafe-1.1.1-cp34-cp34m-win_amd64.whl
Algorithm Hash digest
SHA256 09c4b7f37d6c648cb13f9230d847adf22f8171b1ccc4d5682398e77f40309235
MD5 48d3bb7778533e2afb13bb6f2102635c
BLAKE2b-256 0931fe863b864cf3dfa11bce7a3bd41c4433d59b777ee0750b8d8c9a96f5ca98

See more details on using hashes here.

File details

Details for the file MarkupSafe-1.1.1-cp34-cp34m-win32.whl.

File metadata

  • Download URL: MarkupSafe-1.1.1-cp34-cp34m-win32.whl
  • Upload date:
  • Size: 14.6 kB
  • Tags: CPython 3.4m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.7.2

File hashes

Hashes for MarkupSafe-1.1.1-cp34-cp34m-win32.whl
Algorithm Hash digest
SHA256 ade5e387d2ad0d7ebf59146cc00c8044acbd863725f887353a10df825fc8ae21
MD5 743c64b4cdcb00233faf6696be732a67
BLAKE2b-256 0654f14cf25317b0b3e596457c9a5bea18b6fc27c841c6eb9d23c679b10d63a2

See more details on using hashes here.

File details

Details for the file MarkupSafe-1.1.1-cp34-cp34m-manylinux1_x86_64.whl.

File metadata

  • Download URL: MarkupSafe-1.1.1-cp34-cp34m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 27.3 kB
  • Tags: CPython 3.4m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.7.2

File hashes

Hashes for MarkupSafe-1.1.1-cp34-cp34m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 88e5fcfb52ee7b911e8bb6d6aa2fd21fbecc674eadd44118a9cc3863f938e735
MD5 1440d3b8263d60b91d8185069be4302c
BLAKE2b-256 99c95d5dcf2aa90f1d4500e92467a04f63b3708ee6e5764b40b2445e767ab8dc

See more details on using hashes here.

File details

Details for the file MarkupSafe-1.1.1-cp34-cp34m-manylinux1_i686.whl.

File metadata

  • Download URL: MarkupSafe-1.1.1-cp34-cp34m-manylinux1_i686.whl
  • Upload date:
  • Size: 26.8 kB
  • Tags: CPython 3.4m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.7.2

File hashes

Hashes for MarkupSafe-1.1.1-cp34-cp34m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 62fe6c95e3ec8a7fad637b7f3d372c15ec1caa01ab47926cfdf7a75b40e0eac1
MD5 77f6f9539e7d334066edfa54964d43cd
BLAKE2b-256 1c7d16a3dd24ec9f901e91a0c1274d871c7dc07a229f35d478fdbf48f16b93b3

See more details on using hashes here.

File details

Details for the file MarkupSafe-1.1.1-cp34-cp34m-macosx_10_6_intel.whl.

File metadata

  • Download URL: MarkupSafe-1.1.1-cp34-cp34m-macosx_10_6_intel.whl
  • Upload date:
  • Size: 18.8 kB
  • Tags: CPython 3.4m, macOS 10.6+ Intel (x86-64, i386)
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.7.2

File hashes

Hashes for MarkupSafe-1.1.1-cp34-cp34m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 1027c282dad077d0bae18be6794e6b6b8c91d58ed8a8d89a89d59693b9131db5
MD5 f583660da733f0dae2ec00e38a35481c
BLAKE2b-256 6b0c931351f919f60e79ac18c940d31fc13b4c6179e61c82240050ad14346524

See more details on using hashes here.

File details

Details for the file MarkupSafe-1.1.1-cp27-cp27mu-manylinux1_x86_64.whl.

File metadata

  • Download URL: MarkupSafe-1.1.1-cp27-cp27mu-manylinux1_x86_64.whl
  • Upload date:
  • Size: 24.3 kB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.7.2

File hashes

Hashes for MarkupSafe-1.1.1-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 43a55c2930bbc139570ac2452adf3d70cdbb3cfe5912c71cdce1c2c6bbd9c5d1
MD5 58c2831fdcec66ef5c770ff4a9171479
BLAKE2b-256 fb40f3adb7cf24a8012813c5edb20329eb22d5d8e2a0ecf73d21d6b85865da11

See more details on using hashes here.

File details

Details for the file MarkupSafe-1.1.1-cp27-cp27mu-manylinux1_i686.whl.

File metadata

  • Download URL: MarkupSafe-1.1.1-cp27-cp27mu-manylinux1_i686.whl
  • Upload date:
  • Size: 23.9 kB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.7.2

File hashes

Hashes for MarkupSafe-1.1.1-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 cd5df75523866410809ca100dc9681e301e3c27567cf498077e8551b6d20e42f
MD5 a59779772929176978e53af881eabaab
BLAKE2b-256 04642fc144ee16cb2eed20b3e366045697af04a4e7367ef1e5e65db6f61f1804

See more details on using hashes here.

File details

Details for the file MarkupSafe-1.1.1-cp27-cp27m-win_amd64.whl.

File metadata

  • Download URL: MarkupSafe-1.1.1-cp27-cp27m-win_amd64.whl
  • Upload date:
  • Size: 14.0 kB
  • Tags: CPython 2.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.7.2

File hashes

Hashes for MarkupSafe-1.1.1-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 98c7086708b163d425c67c7a91bad6e466bb99d797aa64f965e9d25c12111a5e
MD5 21d5f565a0ad798888a29e6344b454e0
BLAKE2b-256 f75885258115ce58190f20c28fbb3b91c3b1a0a42e6375b100e489427c30488a

See more details on using hashes here.

File details

Details for the file MarkupSafe-1.1.1-cp27-cp27m-win32.whl.

File metadata

  • Download URL: MarkupSafe-1.1.1-cp27-cp27m-win32.whl
  • Upload date:
  • Size: 14.2 kB
  • Tags: CPython 2.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.7.2

File hashes

Hashes for MarkupSafe-1.1.1-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 b2051432115498d3562c084a49bba65d97cf251f5a331c64a12ee7e04dacc51b
MD5 4a06edd1025c0939f7ae3c03f8d12c15
BLAKE2b-256 204049d725372f8f49df9891e7ea5f5d36489da85a277621177ad4af68992769

See more details on using hashes here.

File details

Details for the file MarkupSafe-1.1.1-cp27-cp27m-manylinux1_x86_64.whl.

File metadata

  • Download URL: MarkupSafe-1.1.1-cp27-cp27m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 24.3 kB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.7.2

File hashes

Hashes for MarkupSafe-1.1.1-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 500d4957e52ddc3351cabf489e79c91c17f6e0899158447047588650b5e69183
MD5 01e8f1759663535a494b0098c29bb39c
BLAKE2b-256 d81fe97c4c6b182e59562f99c207f0f621d15a42fc82a6532a98e0b2d38b7c4e

See more details on using hashes here.

File details

Details for the file MarkupSafe-1.1.1-cp27-cp27m-manylinux1_i686.whl.

File metadata

  • Download URL: MarkupSafe-1.1.1-cp27-cp27m-manylinux1_i686.whl
  • Upload date:
  • Size: 23.9 kB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.7.2

File hashes

Hashes for MarkupSafe-1.1.1-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 e249096428b3ae81b08327a63a485ad0878de3fb939049038579ac0ef61e17e7
MD5 5a8c2ae810dbbfc30938dcc5626be7fb
BLAKE2b-256 97d8ea17d2f83e307daa841df7674a42f5ed8d102e0f061fb658065f369779f5

See more details on using hashes here.

File details

Details for the file MarkupSafe-1.1.1-cp27-cp27m-macosx_10_6_intel.whl.

File metadata

  • Download URL: MarkupSafe-1.1.1-cp27-cp27m-macosx_10_6_intel.whl
  • Upload date:
  • Size: 17.4 kB
  • Tags: CPython 2.7m, macOS 10.6+ Intel (x86-64, i386)
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.7.2

File hashes

Hashes for MarkupSafe-1.1.1-cp27-cp27m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 09027a7803a62ca78792ad89403b1b7a73a01c8cb65909cd876f7fcebd79b161
MD5 c937b3654640ee5864f2917bf24a7ad2
BLAKE2b-256 6dd20ccd2c0e2cd93b35e765d9b3205cd6602e6b202b522fc7997531353715b3

See more details on using hashes here.

Supported by

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