Skip to main content
Files added late

24 files were added to this release more than 14 days after its initial publication. Inspect the release files before installing.

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.

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

Donate

The Pallets organization develops and supports MarkupSafe and other libraries that use it. In order to grow the community of contributors and users, and allow the maintainers to devote more time to the projects, please donate today.

Release files for MarkupSafe 1.1.1

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Files added late

24 files were uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release files before installing.

Source distribution (sdist)

Source distribution for MarkupSafe 1.1.1
File Size Uploaded
MarkupSafe-1.1.1.tar.gz 19.2 kB Details

Built distributions (wheels)

Table of built distributions (wheels) for MarkupSafe 1.1.1
File
MarkupSafe-1.1.1-cp39-cp39-win_amd64.whl CPython 3.9 CPython 3.9 Windows x86-64 Details
MarkupSafe-1.1.1-cp39-cp39-win32.whl CPython 3.9 CPython 3.9 Windows x86-32 Details
MarkupSafe-1.1.1-cp39-cp39-manylinux2014_aarch64.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ ARM64 Details
MarkupSafe-1.1.1-cp39-cp39-manylinux2010_x86_64.whl CPython 3.9 CPython 3.9 Linux glibc 2.12+ x86-64 Details
MarkupSafe-1.1.1-cp39-cp39-manylinux2010_i686.whl CPython 3.9 CPython 3.9 Linux glibc 2.12+ x86-32 Details
MarkupSafe-1.1.1-cp39-cp39-manylinux1_x86_64.whl CPython 3.9 CPython 3.9 Linux glibc 2.5+ x86-64 Details
MarkupSafe-1.1.1-cp39-cp39-manylinux1_i686.whl CPython 3.9 CPython 3.9 Linux glibc 2.5+ x86-32 Details
MarkupSafe-1.1.1-cp39-cp39-macosx_10_9_x86_64.whl CPython 3.9 CPython 3.9 macOS 10.9+ x86-64 Details
MarkupSafe-1.1.1-cp38-cp38-win_amd64.whl CPython 3.8 CPython 3.8 Windows x86-64 Details
MarkupSafe-1.1.1-cp38-cp38-win32.whl CPython 3.8 CPython 3.8 Windows x86-32 Details
MarkupSafe-1.1.1-cp38-cp38-manylinux2014_aarch64.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ ARM64 Details
MarkupSafe-1.1.1-cp38-cp38-manylinux2010_x86_64.whl CPython 3.8 CPython 3.8 Linux glibc 2.12+ x86-64 Details
MarkupSafe-1.1.1-cp38-cp38-manylinux2010_i686.whl CPython 3.8 CPython 3.8 Linux glibc 2.12+ x86-32 Details
MarkupSafe-1.1.1-cp38-cp38-manylinux1_x86_64.whl CPython 3.8 CPython 3.8 Linux glibc 2.5+ x86-64 Details
MarkupSafe-1.1.1-cp38-cp38-manylinux1_i686.whl CPython 3.8 CPython 3.8 Linux glibc 2.5+ x86-32 Details
MarkupSafe-1.1.1-cp38-cp38-macosx_10_9_x86_64.whl CPython 3.8 CPython 3.8 macOS 10.9+ x86-64 Details
MarkupSafe-1.1.1-cp37-cp37m-win_amd64.whl CPython 3.7 CPython 3.7 pymalloc Windows x86-64 Details
MarkupSafe-1.1.1-cp37-cp37m-win32.whl CPython 3.7 CPython 3.7 pymalloc Windows x86-32 Details
MarkupSafe-1.1.1-cp37-cp37m-manylinux2014_aarch64.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ ARM64 Details
MarkupSafe-1.1.1-cp37-cp37m-manylinux2010_x86_64.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.12+ x86-64 Details
MarkupSafe-1.1.1-cp37-cp37m-manylinux2010_i686.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.12+ x86-32 Details
MarkupSafe-1.1.1-cp37-cp37m-manylinux1_x86_64.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.5+ x86-64 Details
MarkupSafe-1.1.1-cp37-cp37m-manylinux1_i686.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.5+ x86-32 Details
MarkupSafe-1.1.1-cp37-cp37m-macosx_10_9_x86_64.whl CPython 3.7 CPython 3.7 pymalloc macOS 10.9+ x86-64 Details
MarkupSafe-1.1.1-cp37-cp37m-macosx_10_6_intel.whl CPython 3.7 CPython 3.7 pymalloc macOS 10.6+ Intel (x86-64, i386) Details
MarkupSafe-1.1.1-cp36-cp36m-win_amd64.whl CPython 3.6 CPython 3.6 pymalloc Windows x86-64 Details
MarkupSafe-1.1.1-cp36-cp36m-win32.whl CPython 3.6 CPython 3.6 pymalloc Windows x86-32 Details
MarkupSafe-1.1.1-cp36-cp36m-manylinux2014_aarch64.whl CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ ARM64 Details
MarkupSafe-1.1.1-cp36-cp36m-manylinux2010_x86_64.whl CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.12+ x86-64 Details
MarkupSafe-1.1.1-cp36-cp36m-manylinux2010_i686.whl CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.12+ x86-32 Details
MarkupSafe-1.1.1-cp36-cp36m-manylinux1_x86_64.whl CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.5+ x86-64 Details
MarkupSafe-1.1.1-cp36-cp36m-manylinux1_i686.whl CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.5+ x86-32 Details
MarkupSafe-1.1.1-cp36-cp36m-macosx_10_9_x86_64.whl CPython 3.6 CPython 3.6 pymalloc macOS 10.9+ x86-64 Details
MarkupSafe-1.1.1-cp36-cp36m-macosx_10_6_intel.whl CPython 3.6 CPython 3.6 pymalloc macOS 10.6+ Intel (x86-64, i386) Details
MarkupSafe-1.1.1-cp35-cp35m-win_amd64.whl CPython 3.5 CPython 3.5 pymalloc Windows x86-64 Details
MarkupSafe-1.1.1-cp35-cp35m-win32.whl CPython 3.5 CPython 3.5 pymalloc Windows x86-32 Details
MarkupSafe-1.1.1-cp35-cp35m-manylinux1_x86_64.whl CPython 3.5 CPython 3.5 pymalloc Linux glibc 2.5+ x86-64 Details
MarkupSafe-1.1.1-cp35-cp35m-manylinux1_i686.whl CPython 3.5 CPython 3.5 pymalloc Linux glibc 2.5+ x86-32 Details
MarkupSafe-1.1.1-cp35-cp35m-macosx_10_6_intel.whl CPython 3.5 CPython 3.5 pymalloc macOS 10.6+ Intel (x86-64, i386) Details
MarkupSafe-1.1.1-cp34-cp34m-win_amd64.whl CPython 3.4 CPython 3.4 pymalloc Windows x86-64 Details
MarkupSafe-1.1.1-cp34-cp34m-win32.whl CPython 3.4 CPython 3.4 pymalloc Windows x86-32 Details
MarkupSafe-1.1.1-cp34-cp34m-manylinux1_x86_64.whl CPython 3.4 CPython 3.4 pymalloc Linux glibc 2.5+ x86-64 Details
MarkupSafe-1.1.1-cp34-cp34m-manylinux1_i686.whl CPython 3.4 CPython 3.4 pymalloc Linux glibc 2.5+ x86-32 Details
MarkupSafe-1.1.1-cp34-cp34m-macosx_10_6_intel.whl CPython 3.4 CPython 3.4 pymalloc macOS 10.6+ Intel (x86-64, i386) Details
MarkupSafe-1.1.1-cp27-cp27mu-manylinux1_x86_64.whl CPython 2.7 CPython 2.7 pymalloc wide-unicode Linux glibc 2.5+ x86-64 Details
MarkupSafe-1.1.1-cp27-cp27mu-manylinux1_i686.whl CPython 2.7 CPython 2.7 pymalloc wide-unicode Linux glibc 2.5+ x86-32 Details
MarkupSafe-1.1.1-cp27-cp27m-win_amd64.whl CPython 2.7 CPython 2.7 pymalloc Windows x86-64 Details
MarkupSafe-1.1.1-cp27-cp27m-win32.whl CPython 2.7 CPython 2.7 pymalloc Windows x86-32 Details
MarkupSafe-1.1.1-cp27-cp27m-manylinux1_x86_64.whl CPython 2.7 CPython 2.7 pymalloc Linux glibc 2.5+ x86-64 Details
MarkupSafe-1.1.1-cp27-cp27m-manylinux1_i686.whl CPython 2.7 CPython 2.7 pymalloc Linux glibc 2.5+ x86-32 Details
MarkupSafe-1.1.1-cp27-cp27m-macosx_10_6_intel.whl CPython 2.7 CPython 2.7 pymalloc macOS 10.6+ Intel (x86-64, i386) Details

Total release size: 1.2 MB

Release files / MarkupSafe-1.1.1.tar.gz

Download URL MarkupSafe-1.1.1.tar.gz
Size 19.2 kB
Tags Source
SHA-256 checksum
How to use checksums
29872e92839765e546828bb7754a68c418d927cd064fd4708fab9fe9c8bb116b
BLAKE2b-256 checksum
How to use checksums
b92e64db92e53b86efccfaea71321f597fa2e1b2bd3853d8ce658568f7a13094
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / MarkupSafe-1.1.1-cp39-cp39-win_amd64.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL MarkupSafe-1.1.1-cp39-cp39-win_amd64.whl
Size 16.8 kB
Tags CPython 3.9 Windows x86-64
SHA-256 checksum
How to use checksums
b7d644ddb4dbd407d31ffb699f1d140bc35478da613b441c582aeb7c43838dd8
BLAKE2b-256 checksum
How to use checksums
fb39de6ecf2652dc1b0fb374888a398f326d6c61f12e8004ed3dccb093e33e00
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / MarkupSafe-1.1.1-cp39-cp39-win32.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL MarkupSafe-1.1.1-cp39-cp39-win32.whl
Size 16.2 kB
Tags CPython 3.9 Windows x86-32
SHA-256 checksum
How to use checksums
22c178a091fc6630d0d045bdb5992d2dfe14e3259760e713c490da5323866c39
BLAKE2b-256 checksum
How to use checksums
dcd7e3478fb2c3f2cc446ae4c6dedba1805f04b329bf30237cfe9f484f3d0a0e
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / MarkupSafe-1.1.1-cp39-cp39-manylinux2014_aarch64.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL MarkupSafe-1.1.1-cp39-cp39-manylinux2014_aarch64.whl
Size 33.8 kB
Tags CPython 3.9 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
feb7b34d6325451ef96bc0e36e1a6c0c1c64bc1fbec4b854f4529e51887b1621
BLAKE2b-256 checksum
How to use checksums
0d980fd0f0baf8a59facb65cee37a26c775ee5a114f86e8b0cfe01dad1b8022a
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / MarkupSafe-1.1.1-cp39-cp39-manylinux2010_x86_64.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL MarkupSafe-1.1.1-cp39-cp39-manylinux2010_x86_64.whl
Size 32.5 kB
Tags CPython 3.9 Linux glibc 2.12+ x86-64
SHA-256 checksum
How to use checksums
6f1e273a344928347c1290119b493a1f0303c52f5a5eae5f16d74f48c15d4a85
BLAKE2b-256 checksum
How to use checksums
be2ead118ca191e44dc6f87182310e5be51da71d4b81ac659e5f8d5f18251806
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / MarkupSafe-1.1.1-cp39-cp39-manylinux2010_i686.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL MarkupSafe-1.1.1-cp39-cp39-manylinux2010_i686.whl
Size 32.2 kB
Tags CPython 3.9 Linux glibc 2.12+ x86-32
SHA-256 checksum
How to use checksums
7fed13866cf14bba33e7176717346713881f56d9d2bcebab207f7a036f41b850
BLAKE2b-256 checksum
How to use checksums
8c9b85abd4ff6f9b6d03ce504e6d84589e13d5fd6bc4d63647a57acf1b4abc03
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / MarkupSafe-1.1.1-cp39-cp39-manylinux1_x86_64.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL MarkupSafe-1.1.1-cp39-cp39-manylinux1_x86_64.whl
Size 32.5 kB
Tags CPython 3.9 Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
2beec1e0de6924ea551859edb9e7679da6e4870d32cb766240ce17e0a0ba2014
BLAKE2b-256 checksum
How to use checksums
b9bdc5183b3416a14c221de4208a52665f7038cc8b159e8ad89bd9ccc23de08a
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / MarkupSafe-1.1.1-cp39-cp39-manylinux1_i686.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL MarkupSafe-1.1.1-cp39-cp39-manylinux1_i686.whl
Size 32.2 kB
Tags CPython 3.9 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
98bae9582248d6cf62321dcb52aaf5d9adf0bad3b40582925ef7c7f0ed85fceb
BLAKE2b-256 checksum
How to use checksums
f00385efaa82ea0c7655b99db9252347623626048b35c03b046fcfde1af43b61
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / MarkupSafe-1.1.1-cp39-cp39-macosx_10_9_x86_64.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL MarkupSafe-1.1.1-cp39-cp39-macosx_10_9_x86_64.whl
Size 16.4 kB
Tags CPython 3.9 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
d73a845f227b0bfe8a7455ee623525ee656a9e2e749e4742706d80a6065d5e2c
BLAKE2b-256 checksum
How to use checksums
858543579939ae1ec6a493c0e68528cd4e26a29fbd4109f5553d4966f6273801
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / MarkupSafe-1.1.1-cp38-cp38-win_amd64.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL MarkupSafe-1.1.1-cp38-cp38-win_amd64.whl
Size 16.8 kB
Tags CPython 3.8 Windows x86-64
SHA-256 checksum
How to use checksums
e8313f01ba26fbbe36c7be1966a7b7424942f670f38e666995b88d012765b9be
BLAKE2b-256 checksum
How to use checksums
4f8bda8a2ae5780d38271ac6e691756fc938cf4df8f225eb8aaced0204304932
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / MarkupSafe-1.1.1-cp38-cp38-win32.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL MarkupSafe-1.1.1-cp38-cp38-win32.whl
Size 16.2 kB
Tags CPython 3.8 Windows x86-32
SHA-256 checksum
How to use checksums
596510de112c685489095da617b5bcbbac7dd6384aeebeda4df6025d0256a81b
BLAKE2b-256 checksum
How to use checksums
93b895b1c38f5b00ed2c0d16cf65f2b07a5ae73eeacf66d2010c0e934737d1d9
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / MarkupSafe-1.1.1-cp38-cp38-manylinux2014_aarch64.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL MarkupSafe-1.1.1-cp38-cp38-manylinux2014_aarch64.whl
Size 33.9 kB
Tags CPython 3.8 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
caabedc8323f1e93231b52fc32bdcde6db817623d33e100708d9a68e1f53b26b
BLAKE2b-256 checksum
How to use checksums
8366ec77a7000486d4d6acb599993b58dc4c97d510e3f2c37b81d31fb7632c4f
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / MarkupSafe-1.1.1-cp38-cp38-manylinux2010_x86_64.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL MarkupSafe-1.1.1-cp38-cp38-manylinux2010_x86_64.whl
Size 32.6 kB
Tags CPython 3.8 Linux glibc 2.12+ x86-64
SHA-256 checksum
How to use checksums
d9be0ba6c527163cbed5e0857c451fcd092ce83947944d6c14bc95441203f032
BLAKE2b-256 checksum
How to use checksums
801698afa5c19296aaf7b16d1eb3c7e997656e6cfad79606e7d3885905615e96
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / MarkupSafe-1.1.1-cp38-cp38-manylinux2010_i686.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL MarkupSafe-1.1.1-cp38-cp38-manylinux2010_i686.whl
Size 32.3 kB
Tags CPython 3.8 Linux glibc 2.12+ x86-32
SHA-256 checksum
How to use checksums
acf08ac40292838b3cbbb06cfe9b2cb9ec78fce8baca31ddb87aaac2e2dc3bc2
BLAKE2b-256 checksum
How to use checksums
b7d59d36bdf18173408ce6b16bcc625e4019abf1dd4b52fa66163e231f5b7c98
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / MarkupSafe-1.1.1-cp38-cp38-manylinux1_x86_64.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL MarkupSafe-1.1.1-cp38-cp38-manylinux1_x86_64.whl
Size 32.7 kB
Tags CPython 3.8 Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
13d3144e1e340870b25e7b10b98d779608c02016d5184cfb9927a9f10c689f42
BLAKE2b-256 checksum
How to use checksums
4b20f6d7648c81cb84815d0be935d5c74cd1cc0239e43eadb1a61062d34b6543
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / MarkupSafe-1.1.1-cp38-cp38-manylinux1_i686.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL MarkupSafe-1.1.1-cp38-cp38-manylinux1_i686.whl
Size 31.4 kB
Tags CPython 3.8 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
cdb132fc825c38e1aeec2c8aa9338310d29d337bebbd7baa06889d09a60a1fa2
BLAKE2b-256 checksum
How to use checksums
513c82b35d63a8e9fe1e7d4078c43a0a8fc631cc4ac9d2beff86c74af0cdb2d9
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / MarkupSafe-1.1.1-cp38-cp38-macosx_10_9_x86_64.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL MarkupSafe-1.1.1-cp38-cp38-macosx_10_9_x86_64.whl
Size 16.4 kB
Tags CPython 3.8 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
6788b695d50a51edb699cb55e35487e430fa21f1ed838122d722e0ff0ac5ba15
BLAKE2b-256 checksum
How to use checksums
0c1237f68957526d1ec0883b521934b4e1b8ff3dd8e4fab858a5bf3e487bcee9
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / MarkupSafe-1.1.1-cp37-cp37m-win_amd64.whl

Download URL MarkupSafe-1.1.1-cp37-cp37m-win_amd64.whl
Size 16.6 kB
Tags CPython 3.7 CPython 3.7 pymalloc Windows x86-64
SHA-256 checksum
How to use checksums
9bf40443012702a1d2070043cb6291650a0841ece432556f784f004937f0f32c
BLAKE2b-256 checksum
How to use checksums
65c62399700d236d1dd681af8aebff1725558cddfd6e43d7a5184a675f4711f5
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / MarkupSafe-1.1.1-cp37-cp37m-win32.whl

Download URL MarkupSafe-1.1.1-cp37-cp37m-win32.whl
Size 15.8 kB
Tags CPython 3.7 CPython 3.7 pymalloc Windows x86-32
SHA-256 checksum
How to use checksums
b00c1de48212e4cc9603895652c5c410df699856a2853135b3967591e4beebc2
BLAKE2b-256 checksum
How to use checksums
5bd41deb3c5dc3714fb160c7e2116fc6dff36a063d9156a9328cce54ef35cc52
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / MarkupSafe-1.1.1-cp37-cp37m-manylinux2014_aarch64.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL MarkupSafe-1.1.1-cp37-cp37m-manylinux2014_aarch64.whl
Size 34.4 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
195d7d2c4fbb0ee8139a6cf67194f3973a6b3042d742ebe0a9ed36d8b6f0c07f
BLAKE2b-256 checksum
How to use checksums
c15396b8c31ee0947bd080b46f6dc9c0a35cceedae8c56a219cc4b9cce0a4f99
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / MarkupSafe-1.1.1-cp37-cp37m-manylinux2010_x86_64.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL MarkupSafe-1.1.1-cp37-cp37m-manylinux2010_x86_64.whl
Size 33.2 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.12+ x86-64
SHA-256 checksum
How to use checksums
a6a744282b7718a2a62d2ed9d993cad6f5f585605ad352c11de459f4108df0a1
BLAKE2b-256 checksum
How to use checksums
c2372e4def8ce3739a258998215df907f5815ecd1af71e62147f5eea2d12d4e8
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / MarkupSafe-1.1.1-cp37-cp37m-manylinux2010_i686.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL MarkupSafe-1.1.1-cp37-cp37m-manylinux2010_i686.whl
Size 32.9 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.12+ x86-32
SHA-256 checksum
How to use checksums
6fffc775d90dcc9aed1b89219549b329a9250d918fd0b8fa8d93d154918422e1
BLAKE2b-256 checksum
How to use checksums
81e22cb8f60843559cd04a161d838b4c824f4569457d0bbd8b6416c0e68c9d25
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / MarkupSafe-1.1.1-cp37-cp37m-manylinux1_x86_64.whl

Download URL MarkupSafe-1.1.1-cp37-cp37m-manylinux1_x86_64.whl
Size 27.5 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
ba59edeaa2fc6114428f1637ffff42da1e311e29382d81b339c1817d37ec93c6
BLAKE2b-256 checksum
How to use checksums
987bff284bd8c80654e471b769062a9b43cc5d03e7a615048d96f4619df8d420
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / MarkupSafe-1.1.1-cp37-cp37m-manylinux1_i686.whl

Download URL MarkupSafe-1.1.1-cp37-cp37m-manylinux1_i686.whl
Size 27.0 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
46c99d2de99945ec5cb54f23c8cd5689f6d7177305ebff350a58ce5f8de1669e
BLAKE2b-256 checksum
How to use checksums
d6e5348e7d7977202d9a6c7f4cac3c6d8f71b01bb3c91e0bd4b5c23670951fd6
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / MarkupSafe-1.1.1-cp37-cp37m-macosx_10_9_x86_64.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL MarkupSafe-1.1.1-cp37-cp37m-macosx_10_9_x86_64.whl
Size 16.3 kB
Tags CPython 3.7 CPython 3.7 pymalloc macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
bf5aa3cbcfdf57fa2ee9cd1822c862ef23037f5c832ad09cfea57fa846dec193
BLAKE2b-256 checksum
How to use checksums
7078b7f1fac566e6d579a15b020dff0e77bc059093a6c5e6f6a777be4c959384
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / MarkupSafe-1.1.1-cp37-cp37m-macosx_10_6_intel.whl

Download URL MarkupSafe-1.1.1-cp37-cp37m-macosx_10_6_intel.whl
Size 18.9 kB
Tags CPython 3.7 CPython 3.7 pymalloc macOS 10.6+ Intel (x86-64, i386)
SHA-256 checksum
How to use checksums
8defac2f2ccd6805ebf65f5eeb132adcf2ab57aa11fdf4c0dd5169a004710e7d
BLAKE2b-256 checksum
How to use checksums
cec6f000f1af136ef74e4a95e33785921c73595c5390403f102e9b231b065b7a
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / MarkupSafe-1.1.1-cp36-cp36m-win_amd64.whl

Download URL MarkupSafe-1.1.1-cp36-cp36m-win_amd64.whl
Size 16.6 kB
Tags CPython 3.6 CPython 3.6 pymalloc Windows x86-64
SHA-256 checksum
How to use checksums
b1282f8c00509d99fef04d8ba936b156d419be841854fe901d8ae224c59f0be5
BLAKE2b-256 checksum
How to use checksums
b982833c7714951bff8f502ed054e6fbd8bd00e083d1fd96de6a46905cf23378
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / MarkupSafe-1.1.1-cp36-cp36m-win32.whl

Download URL MarkupSafe-1.1.1-cp36-cp36m-win32.whl
Size 15.8 kB
Tags CPython 3.6 CPython 3.6 pymalloc Windows x86-32
SHA-256 checksum
How to use checksums
535f6fc4d397c1563d08b88e485c3496cf5784e927af890fb3c3aac7f933ec66
BLAKE2b-256 checksum
How to use checksums
fe381ee869cf77456412512761cbabe9f0e30912c7a4d8bbb726d2393a4d4723
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / MarkupSafe-1.1.1-cp36-cp36m-manylinux2014_aarch64.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL MarkupSafe-1.1.1-cp36-cp36m-manylinux2014_aarch64.whl
Size 33.5 kB
Tags CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
b1dba4527182c95a0db8b6060cc98ac49b9e2f5e64320e2b56e47cb2831978c7
BLAKE2b-256 checksum
How to use checksums
06b2575cb8d628820ad23ea55af0d29899ea459de62cde7a78cfdde91608ce5f
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / MarkupSafe-1.1.1-cp36-cp36m-manylinux2010_x86_64.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL MarkupSafe-1.1.1-cp36-cp36m-manylinux2010_x86_64.whl
Size 32.2 kB
Tags CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.12+ x86-64
SHA-256 checksum
How to use checksums
84dee80c15f1b560d55bcfe6d47b27d070b4681c699c572af2e3c7cc90a3b8e0
BLAKE2b-256 checksum
How to use checksums
9dd375cddfad6ca1d1bb3a017cece499a65e54ceb4583800f1256b8ad07bb57f
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / MarkupSafe-1.1.1-cp36-cp36m-manylinux2010_i686.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL MarkupSafe-1.1.1-cp36-cp36m-manylinux2010_i686.whl
Size 32.0 kB
Tags CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.12+ x86-32
SHA-256 checksum
How to use checksums
3b8a6499709d29c2e2399569d96719a1b21dcd94410a586a18526b143ec8470f
BLAKE2b-256 checksum
How to use checksums
2d0d119e18ded4869fb781f51ca6a1130f488dfd11d1bd59009101ba1adf01fa
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / MarkupSafe-1.1.1-cp36-cp36m-manylinux1_x86_64.whl

Download URL MarkupSafe-1.1.1-cp36-cp36m-manylinux1_x86_64.whl
Size 27.5 kB
Tags CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
717ba8fe3ae9cc0006d7c451f0bb265ee07739daf76355d06366154ee68d221e
BLAKE2b-256 checksum
How to use checksums
b25f23e0023be6bb885d00ffbefad2942bc51a620328ee910f64abe5a8d18dd1
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / MarkupSafe-1.1.1-cp36-cp36m-manylinux1_i686.whl

Download URL MarkupSafe-1.1.1-cp36-cp36m-manylinux1_i686.whl
Size 27.0 kB
Tags CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
00bc623926325b26bb9605ae9eae8a215691f33cae5df11ca5424f06f2d1f473
BLAKE2b-256 checksum
How to use checksums
35258560907c79805c1ed2d1b8297c43ad82f5f23a5376d846bc1a2ace2aee53
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / MarkupSafe-1.1.1-cp36-cp36m-macosx_10_9_x86_64.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL MarkupSafe-1.1.1-cp36-cp36m-macosx_10_9_x86_64.whl
Size 16.3 kB
Tags CPython 3.6 CPython 3.6 pymalloc macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
d53bc011414228441014aa71dbec320c66468c1030aae3a6e29778a3382d96e5
BLAKE2b-256 checksum
How to use checksums
45175b6a3a0afa0cb9827781ee43d8842a3540ac9d49855cad936099c7b9416b
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / MarkupSafe-1.1.1-cp36-cp36m-macosx_10_6_intel.whl

Download URL MarkupSafe-1.1.1-cp36-cp36m-macosx_10_6_intel.whl
Size 18.8 kB
Tags CPython 3.6 CPython 3.6 pymalloc macOS 10.6+ Intel (x86-64, i386)
SHA-256 checksum
How to use checksums
24982cc2533820871eba85ba648cd53d8623687ff11cbb805be4ff7b4c971aff
BLAKE2b-256 checksum
How to use checksums
f000a6aea33f5598b080b86d6b6d1214b51afe3ffa6100b902d5aa465080083f
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / MarkupSafe-1.1.1-cp35-cp35m-win_amd64.whl

Download URL MarkupSafe-1.1.1-cp35-cp35m-win_amd64.whl
Size 16.6 kB
Tags CPython 3.5 CPython 3.5 pymalloc Windows x86-64
SHA-256 checksum
How to use checksums
9add70b36c5666a2ed02b43b335fe19002ee5235efd4b8a89bfcf9005bebac0d
BLAKE2b-256 checksum
How to use checksums
12108dbe995ab7e5d0471fd7aa90fdb756595ae9ef0ccf3707867b1b56254df8
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / MarkupSafe-1.1.1-cp35-cp35m-win32.whl

Download URL MarkupSafe-1.1.1-cp35-cp35m-win32.whl
Size 15.8 kB
Tags CPython 3.5 CPython 3.5 pymalloc Windows x86-32
SHA-256 checksum
How to use checksums
6dd73240d2af64df90aa7c4e7481e23825ea70af4b4922f8ede5b9e35f78a3b1
BLAKE2b-256 checksum
How to use checksums
d89d7a8cad803ef73f47134ae5c3804e20b54149ce62a7d1337204f3cf2d1fa1
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / MarkupSafe-1.1.1-cp35-cp35m-manylinux1_x86_64.whl

Download URL MarkupSafe-1.1.1-cp35-cp35m-manylinux1_x86_64.whl
Size 27.5 kB
Tags CPython 3.5 CPython 3.5 pymalloc Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
7c1699dfe0cf8ff607dbdcc1e9b9af1755371f92a68f706051cc8c37d447c905
BLAKE2b-256 checksum
How to use checksums
6e57d40124076756c19ff2269678de7ae25a14ebbb3f6314eb5ce9477f191350
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / MarkupSafe-1.1.1-cp35-cp35m-manylinux1_i686.whl

Download URL MarkupSafe-1.1.1-cp35-cp35m-manylinux1_i686.whl
Size 26.9 kB
Tags CPython 3.5 CPython 3.5 pymalloc Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
c8716a48d94b06bb3b2524c2b77e055fb313aeb4ea620c8dd03a105574ba704f
BLAKE2b-256 checksum
How to use checksums
b160fa4afa6fb4547b46b24bc679dd312242e0e579b4ee5651a2e5f50f814319
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / MarkupSafe-1.1.1-cp35-cp35m-macosx_10_6_intel.whl

Download URL MarkupSafe-1.1.1-cp35-cp35m-macosx_10_6_intel.whl
Size 18.9 kB
Tags CPython 3.5 CPython 3.5 pymalloc macOS 10.6+ Intel (x86-64, i386)
SHA-256 checksum
How to use checksums
79855e1c5b8da654cf486b830bd42c06e8780cea587384cf6545b7d9ac013a0b
BLAKE2b-256 checksum
How to use checksums
64cee159d4201a45d56ad14d77b020be7678583898cecbb2a25817f363f71486
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / MarkupSafe-1.1.1-cp34-cp34m-win_amd64.whl

Download URL MarkupSafe-1.1.1-cp34-cp34m-win_amd64.whl
Size 14.4 kB
Tags CPython 3.4 CPython 3.4 pymalloc Windows x86-64
SHA-256 checksum
How to use checksums
09c4b7f37d6c648cb13f9230d847adf22f8171b1ccc4d5682398e77f40309235
BLAKE2b-256 checksum
How to use checksums
0931fe863b864cf3dfa11bce7a3bd41c4433d59b777ee0750b8d8c9a96f5ca98
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / MarkupSafe-1.1.1-cp34-cp34m-win32.whl

Download URL MarkupSafe-1.1.1-cp34-cp34m-win32.whl
Size 14.6 kB
Tags CPython 3.4 CPython 3.4 pymalloc Windows x86-32
SHA-256 checksum
How to use checksums
ade5e387d2ad0d7ebf59146cc00c8044acbd863725f887353a10df825fc8ae21
BLAKE2b-256 checksum
How to use checksums
0654f14cf25317b0b3e596457c9a5bea18b6fc27c841c6eb9d23c679b10d63a2
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / MarkupSafe-1.1.1-cp34-cp34m-manylinux1_x86_64.whl

Download URL MarkupSafe-1.1.1-cp34-cp34m-manylinux1_x86_64.whl
Size 27.3 kB
Tags CPython 3.4 CPython 3.4 pymalloc Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
88e5fcfb52ee7b911e8bb6d6aa2fd21fbecc674eadd44118a9cc3863f938e735
BLAKE2b-256 checksum
How to use checksums
99c95d5dcf2aa90f1d4500e92467a04f63b3708ee6e5764b40b2445e767ab8dc
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / MarkupSafe-1.1.1-cp34-cp34m-manylinux1_i686.whl

Download URL MarkupSafe-1.1.1-cp34-cp34m-manylinux1_i686.whl
Size 26.8 kB
Tags CPython 3.4 CPython 3.4 pymalloc Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
62fe6c95e3ec8a7fad637b7f3d372c15ec1caa01ab47926cfdf7a75b40e0eac1
BLAKE2b-256 checksum
How to use checksums
1c7d16a3dd24ec9f901e91a0c1274d871c7dc07a229f35d478fdbf48f16b93b3
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / MarkupSafe-1.1.1-cp34-cp34m-macosx_10_6_intel.whl

Download URL MarkupSafe-1.1.1-cp34-cp34m-macosx_10_6_intel.whl
Size 18.8 kB
Tags CPython 3.4 CPython 3.4 pymalloc macOS 10.6+ Intel (x86-64, i386)
SHA-256 checksum
How to use checksums
1027c282dad077d0bae18be6794e6b6b8c91d58ed8a8d89a89d59693b9131db5
BLAKE2b-256 checksum
How to use checksums
6b0c931351f919f60e79ac18c940d31fc13b4c6179e61c82240050ad14346524
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / MarkupSafe-1.1.1-cp27-cp27mu-manylinux1_x86_64.whl

Download URL MarkupSafe-1.1.1-cp27-cp27mu-manylinux1_x86_64.whl
Size 24.3 kB
Tags CPython 2.7 CPython 2.7 pymalloc wide-unicode Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
43a55c2930bbc139570ac2452adf3d70cdbb3cfe5912c71cdce1c2c6bbd9c5d1
BLAKE2b-256 checksum
How to use checksums
fb40f3adb7cf24a8012813c5edb20329eb22d5d8e2a0ecf73d21d6b85865da11
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / MarkupSafe-1.1.1-cp27-cp27mu-manylinux1_i686.whl

Download URL MarkupSafe-1.1.1-cp27-cp27mu-manylinux1_i686.whl
Size 23.9 kB
Tags CPython 2.7 CPython 2.7 pymalloc wide-unicode Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
cd5df75523866410809ca100dc9681e301e3c27567cf498077e8551b6d20e42f
BLAKE2b-256 checksum
How to use checksums
04642fc144ee16cb2eed20b3e366045697af04a4e7367ef1e5e65db6f61f1804
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / MarkupSafe-1.1.1-cp27-cp27m-win_amd64.whl

Download URL MarkupSafe-1.1.1-cp27-cp27m-win_amd64.whl
Size 14.0 kB
Tags CPython 2.7 CPython 2.7 pymalloc Windows x86-64
SHA-256 checksum
How to use checksums
98c7086708b163d425c67c7a91bad6e466bb99d797aa64f965e9d25c12111a5e
BLAKE2b-256 checksum
How to use checksums
f75885258115ce58190f20c28fbb3b91c3b1a0a42e6375b100e489427c30488a
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / MarkupSafe-1.1.1-cp27-cp27m-win32.whl

Download URL MarkupSafe-1.1.1-cp27-cp27m-win32.whl
Size 14.2 kB
Tags CPython 2.7 CPython 2.7 pymalloc Windows x86-32
SHA-256 checksum
How to use checksums
b2051432115498d3562c084a49bba65d97cf251f5a331c64a12ee7e04dacc51b
BLAKE2b-256 checksum
How to use checksums
204049d725372f8f49df9891e7ea5f5d36489da85a277621177ad4af68992769
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / MarkupSafe-1.1.1-cp27-cp27m-manylinux1_x86_64.whl

Download URL MarkupSafe-1.1.1-cp27-cp27m-manylinux1_x86_64.whl
Size 24.3 kB
Tags CPython 2.7 CPython 2.7 pymalloc Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
500d4957e52ddc3351cabf489e79c91c17f6e0899158447047588650b5e69183
BLAKE2b-256 checksum
How to use checksums
d81fe97c4c6b182e59562f99c207f0f621d15a42fc82a6532a98e0b2d38b7c4e
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / MarkupSafe-1.1.1-cp27-cp27m-manylinux1_i686.whl

Download URL MarkupSafe-1.1.1-cp27-cp27m-manylinux1_i686.whl
Size 23.9 kB
Tags CPython 2.7 CPython 2.7 pymalloc Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
e249096428b3ae81b08327a63a485ad0878de3fb939049038579ac0ef61e17e7
BLAKE2b-256 checksum
How to use checksums
97d8ea17d2f83e307daa841df7674a42f5ed8d102e0f061fb658065f369779f5
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / MarkupSafe-1.1.1-cp27-cp27m-macosx_10_6_intel.whl

Download URL MarkupSafe-1.1.1-cp27-cp27m-macosx_10_6_intel.whl
Size 17.4 kB
Tags CPython 2.7 CPython 2.7 pymalloc macOS 10.6+ Intel (x86-64, i386)
SHA-256 checksum
How to use checksums
09027a7803a62ca78792ad89403b1b7a73a01c8cb65909cd876f7fcebd79b161
BLAKE2b-256 checksum
How to use checksums
6dd20ccd2c0e2cd93b35e765d9b3205cd6602e6b202b522fc7997531353715b3
Upload date
Uploaded using Trusted Publishing?
What is 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
Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page