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'<script>alert(document.cookie);</script>')
>>> # 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>"World"</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.
Links
Documentation: https://markupsafe.palletsprojects.com/
License: BSD
Releases: https://pypi.org/project/MarkupSafe/
Issue tracker: https://github.com/pallets/markupsafe/issues
Test status:
Test coverage: https://codecov.io/gh/pallets/markupsafe
Release files for MarkupSafe 1.1.0
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| MarkupSafe-1.1.0.tar.gz | 18.9 kB | Details |
Built distributions (wheels)
| File | Reset | |||
|---|---|---|---|---|
| MarkupSafe-1.1.0-cp37-cp37m-win_amd64.whl | CPython 3.7 | CPython 3.7 pymalloc | Windows x86-64 | Details |
| MarkupSafe-1.1.0-cp37-cp37m-win32.whl | CPython 3.7 | CPython 3.7 pymalloc | Windows x86-32 | Details |
| MarkupSafe-1.1.0-cp37-cp37m-manylinux1_x86_64.whl | CPython 3.7 | CPython 3.7 pymalloc | Linux glibc 2.5+ x86-64 | Details |
| MarkupSafe-1.1.0-cp37-cp37m-manylinux1_i686.whl | CPython 3.7 | CPython 3.7 pymalloc | Linux glibc 2.5+ x86-32 | Details |
| MarkupSafe-1.1.0-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.0-cp36-cp36m-win_amd64.whl | CPython 3.6 | CPython 3.6 pymalloc | Windows x86-64 | Details |
| MarkupSafe-1.1.0-cp36-cp36m-win32.whl | CPython 3.6 | CPython 3.6 pymalloc | Windows x86-32 | Details |
| MarkupSafe-1.1.0-cp36-cp36m-manylinux1_x86_64.whl | CPython 3.6 | CPython 3.6 pymalloc | Linux glibc 2.5+ x86-64 | Details |
| MarkupSafe-1.1.0-cp36-cp36m-manylinux1_i686.whl | CPython 3.6 | CPython 3.6 pymalloc | Linux glibc 2.5+ x86-32 | Details |
| MarkupSafe-1.1.0-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.0-cp35-cp35m-win_amd64.whl | CPython 3.5 | CPython 3.5 pymalloc | Windows x86-64 | Details |
| MarkupSafe-1.1.0-cp35-cp35m-win32.whl | CPython 3.5 | CPython 3.5 pymalloc | Windows x86-32 | Details |
| MarkupSafe-1.1.0-cp35-cp35m-manylinux1_x86_64.whl | CPython 3.5 | CPython 3.5 pymalloc | Linux glibc 2.5+ x86-64 | Details |
| MarkupSafe-1.1.0-cp35-cp35m-manylinux1_i686.whl | CPython 3.5 | CPython 3.5 pymalloc | Linux glibc 2.5+ x86-32 | Details |
| MarkupSafe-1.1.0-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.0-cp34-cp34m-win_amd64.whl | CPython 3.4 | CPython 3.4 pymalloc | Windows x86-64 | Details |
| MarkupSafe-1.1.0-cp34-cp34m-win32.whl | CPython 3.4 | CPython 3.4 pymalloc | Windows x86-32 | Details |
| MarkupSafe-1.1.0-cp34-cp34m-manylinux1_x86_64.whl | CPython 3.4 | CPython 3.4 pymalloc | Linux glibc 2.5+ x86-64 | Details |
| MarkupSafe-1.1.0-cp34-cp34m-manylinux1_i686.whl | CPython 3.4 | CPython 3.4 pymalloc | Linux glibc 2.5+ x86-32 | Details |
| MarkupSafe-1.1.0-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.0-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.0-cp27-cp27mu-manylinux1_i686.whl | CPython 2.7 | CPython 2.7 pymalloc wide-unicode | Linux glibc 2.5+ x86-32 | Details |
| MarkupSafe-1.1.0-cp27-cp27m-win_amd64.whl | CPython 2.7 | CPython 2.7 pymalloc | Windows x86-64 | Details |
| MarkupSafe-1.1.0-cp27-cp27m-win32.whl | CPython 2.7 | CPython 2.7 pymalloc | Windows x86-32 | Details |
| MarkupSafe-1.1.0-cp27-cp27m-manylinux1_x86_64.whl | CPython 2.7 | CPython 2.7 pymalloc | Linux glibc 2.5+ x86-64 | Details |
| MarkupSafe-1.1.0-cp27-cp27m-manylinux1_i686.whl | CPython 2.7 | CPython 2.7 pymalloc | Linux glibc 2.5+ x86-32 | Details |
| MarkupSafe-1.1.0-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: 587.0 kB
Release files / MarkupSafe-1.1.0.tar.gz
| Download URL | MarkupSafe-1.1.0.tar.gz |
|---|---|
| Size | 18.9 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
4e97332c9ce444b0c2c38dd22ddc61c743eb208d916e4265a2a3b575bdccb1d3
|
|
BLAKE2b-256 checksum How to use checksums |
ac7e1b4c2e05809a4414ebce0892fe1e32c14ace86ca7d50c70f00979ca9b3a3
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/1.12.1 pkginfo/1.4.2 requests/2.20.0 setuptools/40.5.0 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.7.1
|
Release files / MarkupSafe-1.1.0-cp37-cp37m-win_amd64.whl
| Download URL | MarkupSafe-1.1.0-cp37-cp37m-win_amd64.whl |
|---|---|
| Size | 16.8 kB |
| Tags | CPython 3.7 CPython 3.7 pymalloc Windows x86-64 |
|
SHA-256 checksum How to use checksums |
7d263e5770efddf465a9e31b78362d84d015cc894ca2c131901a4445eaa61ee1
|
|
BLAKE2b-256 checksum How to use checksums |
446e41ac9266e3db762dfd9089f6b0d2298c84160f54ef2a7257c17b0e7ec2ec
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/1.12.1 pkginfo/1.4.2 requests/2.20.0 setuptools/40.5.0 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.7.1
|
Release files / MarkupSafe-1.1.0-cp37-cp37m-win32.whl
| Download URL | MarkupSafe-1.1.0-cp37-cp37m-win32.whl |
|---|---|
| Size | 16.1 kB |
| Tags | CPython 3.7 CPython 3.7 pymalloc Windows x86-32 |
|
SHA-256 checksum How to use checksums |
1c25694ca680b6919de53a4bb3bdd0602beafc63ff001fea2f2fc16ec3a11834
|
|
BLAKE2b-256 checksum How to use checksums |
e9e94e6394de81f28fcd331298110714980ad4978d9d0d6649c54bd88bf1cd43
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/1.12.1 pkginfo/1.4.2 requests/2.20.0 setuptools/40.5.0 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.7.1
|
Release files / MarkupSafe-1.1.0-cp37-cp37m-manylinux1_x86_64.whl
| Download URL | MarkupSafe-1.1.0-cp37-cp37m-manylinux1_x86_64.whl |
|---|---|
| Size | 27.7 kB |
| Tags | CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.5+ x86-64 |
|
SHA-256 checksum How to use checksums |
d9ac82be533394d341b41d78aca7ed0e0f4ba5a2231602e2f05aa87f25c51672
|
|
BLAKE2b-256 checksum How to use checksums |
e4c4adcc2d6f2ac2146cc04e076f14f1006c1de8e1e747fa067668b6573000b8
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/1.12.1 pkginfo/1.4.2 requests/2.20.0 setuptools/40.5.0 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.7.1
|
Release files / MarkupSafe-1.1.0-cp37-cp37m-manylinux1_i686.whl
| Download URL | MarkupSafe-1.1.0-cp37-cp37m-manylinux1_i686.whl |
|---|---|
| Size | 27.3 kB |
| Tags | CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.5+ x86-32 |
|
SHA-256 checksum How to use checksums |
1b8a7a87ad1b92bd887568ce54b23565f3fd7018c4180136e1cf412b405a47af
|
|
BLAKE2b-256 checksum How to use checksums |
d11de4c771756983e58de50ab113f48f7630446dc1af1677c690fa61c60bf974
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/1.12.1 pkginfo/1.4.2 requests/2.20.0 setuptools/40.5.0 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.7.1
|
Release files / MarkupSafe-1.1.0-cp37-cp37m-macosx_10_6_intel.whl
| Download URL | MarkupSafe-1.1.0-cp37-cp37m-macosx_10_6_intel.whl |
|---|---|
| Size | 19.1 kB |
| Tags | CPython 3.7 CPython 3.7 pymalloc macOS 10.6+ Intel (x86-64, i386) |
|
SHA-256 checksum How to use checksums |
1f19ef5d3908110e1e891deefb5586aae1b49a7440db952454b4e281b41620cd
|
|
BLAKE2b-256 checksum How to use checksums |
9652eef455862764cb6d6c136aa52c7f9fc4e7c1c644790a7107b1244a2b8a53
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/1.12.1 pkginfo/1.4.2 requests/2.20.0 setuptools/40.5.0 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.7.1
|
Release files / MarkupSafe-1.1.0-cp36-cp36m-win_amd64.whl
| Download URL | MarkupSafe-1.1.0-cp36-cp36m-win_amd64.whl |
|---|---|
| Size | 16.8 kB |
| Tags | CPython 3.6 CPython 3.6 pymalloc Windows x86-64 |
|
SHA-256 checksum How to use checksums |
52b07fbc32032c21ad4ab060fec137b76eb804c4b9a1c7c7dc562549306afad2
|
|
BLAKE2b-256 checksum How to use checksums |
9d809a5daf3ed7b8482e72ee138cef602b538cfba5c507e24e39fb95c189b16b
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/1.12.1 pkginfo/1.4.2 requests/2.20.0 setuptools/40.5.0 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.7.1
|
Release files / MarkupSafe-1.1.0-cp36-cp36m-win32.whl
| Download URL | MarkupSafe-1.1.0-cp36-cp36m-win32.whl |
|---|---|
| Size | 16.1 kB |
| Tags | CPython 3.6 CPython 3.6 pymalloc Windows x86-32 |
|
SHA-256 checksum How to use checksums |
130f844e7f5bdd8e9f3f42e7102ef1d49b2e6fdf0d7526df3f87281a532d8c8b
|
|
BLAKE2b-256 checksum How to use checksums |
7e269446eee7b4f9063d9facde25ab46881a3dfcd22d09082bf65529816fd423
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/1.12.1 pkginfo/1.4.2 requests/2.20.0 setuptools/40.5.0 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.7.1
|
Release files / MarkupSafe-1.1.0-cp36-cp36m-manylinux1_x86_64.whl
| Download URL | MarkupSafe-1.1.0-cp36-cp36m-manylinux1_x86_64.whl |
|---|---|
| Size | 27.7 kB |
| Tags | CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.5+ x86-64 |
|
SHA-256 checksum How to use checksums |
83381342bfc22b3c8c06f2dd93a505413888694302de25add756254beee8449c
|
|
BLAKE2b-256 checksum How to use checksums |
0804f2191b50fb7f0712f03f064b71d8b4605190f2178ba02e975a87f7b89a0d
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/1.12.1 pkginfo/1.4.2 requests/2.20.0 setuptools/40.5.0 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.7.1
|
Release files / MarkupSafe-1.1.0-cp36-cp36m-manylinux1_i686.whl
| Download URL | MarkupSafe-1.1.0-cp36-cp36m-manylinux1_i686.whl |
|---|---|
| Size | 27.3 kB |
| Tags | CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.5+ x86-32 |
|
SHA-256 checksum How to use checksums |
048ef924c1623740e70204aa7143ec592504045ae4429b59c30054cb31e3c432
|
|
BLAKE2b-256 checksum How to use checksums |
616c721fcace7ecf6ee99187f2f66d70f73847ca7487f4a0918148e6e8fe2cb4
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/1.12.1 pkginfo/1.4.2 requests/2.20.0 setuptools/40.5.0 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.7.1
|
Release files / MarkupSafe-1.1.0-cp36-cp36m-macosx_10_6_intel.whl
| Download URL | MarkupSafe-1.1.0-cp36-cp36m-macosx_10_6_intel.whl |
|---|---|
| Size | 19.1 kB |
| Tags | CPython 3.6 CPython 3.6 pymalloc macOS 10.6+ Intel (x86-64, i386) |
|
SHA-256 checksum How to use checksums |
bf54103892a83c64db58125b3f2a43df6d2cb2d28889f14c78519394feb41492
|
|
BLAKE2b-256 checksum How to use checksums |
dafc2979c425ad23d528d6ac2e1f3efdc28e572fa1e1fbd5a75171cbdd7ddaa5
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/1.12.1 pkginfo/1.4.2 requests/2.20.0 setuptools/40.5.0 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.7.1
|
Release files / MarkupSafe-1.1.0-cp35-cp35m-win_amd64.whl
| Download URL | MarkupSafe-1.1.0-cp35-cp35m-win_amd64.whl |
|---|---|
| Size | 16.8 kB |
| Tags | CPython 3.5 CPython 3.5 pymalloc Windows x86-64 |
|
SHA-256 checksum How to use checksums |
857eebb2c1dc60e4219ec8e98dfa19553dae33608237e107db9c6078b1167856
|
|
BLAKE2b-256 checksum How to use checksums |
166d673e8a405cc671a5b2f542b395ce10b6d166dc1e25db799927a528917fe9
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/1.12.1 pkginfo/1.4.2 requests/2.20.0 setuptools/40.5.0 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.7.1
|
Release files / MarkupSafe-1.1.0-cp35-cp35m-win32.whl
| Download URL | MarkupSafe-1.1.0-cp35-cp35m-win32.whl |
|---|---|
| Size | 16.1 kB |
| Tags | CPython 3.5 CPython 3.5 pymalloc Windows x86-32 |
|
SHA-256 checksum How to use checksums |
5edfa27b2d3eefa2210fb2f5d539fbed81722b49f083b2c6566455eb7422fd7e
|
|
BLAKE2b-256 checksum How to use checksums |
d351ab9198d0f9aecbe5145864fcbd9e29b21d77d44c3e4000e392fcefd49343
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/1.12.1 pkginfo/1.4.2 requests/2.20.0 setuptools/40.5.0 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.7.1
|
Release files / MarkupSafe-1.1.0-cp35-cp35m-manylinux1_x86_64.whl
| Download URL | MarkupSafe-1.1.0-cp35-cp35m-manylinux1_x86_64.whl |
|---|---|
| Size | 27.7 kB |
| Tags | CPython 3.5 CPython 3.5 pymalloc Linux glibc 2.5+ x86-64 |
|
SHA-256 checksum How to use checksums |
3e835d8841ae7863f64e40e19477f7eb398674da6a47f09871673742531e6f4b
|
|
BLAKE2b-256 checksum How to use checksums |
3ea5e188980ef1d0a4e0788b5143ea933f9afd760df38fec4c0b72b5ae3060c8
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/1.12.1 pkginfo/1.4.2 requests/2.20.0 setuptools/40.5.0 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.7.1
|
Release files / MarkupSafe-1.1.0-cp35-cp35m-manylinux1_i686.whl
| Download URL | MarkupSafe-1.1.0-cp35-cp35m-manylinux1_i686.whl |
|---|---|
| Size | 27.3 kB |
| Tags | CPython 3.5 CPython 3.5 pymalloc Linux glibc 2.5+ x86-32 |
|
SHA-256 checksum How to use checksums |
f137c02498f8b935892d5c0172560d7ab54bc45039de8805075e19079c639a9c
|
|
BLAKE2b-256 checksum How to use checksums |
459f232d4cd0111056fc001bb0d06da45c09e7ad19568b61215244349e6020fa
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/1.12.1 pkginfo/1.4.2 requests/2.20.0 setuptools/40.5.0 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.7.1
|
Release files / MarkupSafe-1.1.0-cp35-cp35m-macosx_10_6_intel.whl
| Download URL | MarkupSafe-1.1.0-cp35-cp35m-macosx_10_6_intel.whl |
|---|---|
| Size | 19.1 kB |
| Tags | CPython 3.5 CPython 3.5 pymalloc macOS 10.6+ Intel (x86-64, i386) |
|
SHA-256 checksum How to use checksums |
5e5851969aea17660e55f6a3be00037a25b96a9b44d2083651812c99d53b14d1
|
|
BLAKE2b-256 checksum How to use checksums |
f31457314fd91debce8e53b8efe662093915d88eccf00df026224dfe71d7518b
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/1.12.1 pkginfo/1.4.2 requests/2.20.0 setuptools/40.5.0 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.7.1
|
Release files / MarkupSafe-1.1.0-cp34-cp34m-win_amd64.whl
| Download URL | MarkupSafe-1.1.0-cp34-cp34m-win_amd64.whl |
|---|---|
| Size | 14.7 kB |
| Tags | CPython 3.4 CPython 3.4 pymalloc Windows x86-64 |
|
SHA-256 checksum How to use checksums |
e982fe07ede9fada6ff6705af70514a52beb1b2c3d25d4e873e82114cf3c5401
|
|
BLAKE2b-256 checksum How to use checksums |
335e22525e5c3bca1cd05b8047b74ceee67cd326144b5c9332884815ad89397d
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/1.12.1 pkginfo/1.4.2 requests/2.20.0 setuptools/40.5.0 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.7.1
|
Release files / MarkupSafe-1.1.0-cp34-cp34m-win32.whl
| Download URL | MarkupSafe-1.1.0-cp34-cp34m-win32.whl |
|---|---|
| Size | 14.8 kB |
| Tags | CPython 3.4 CPython 3.4 pymalloc Windows x86-32 |
|
SHA-256 checksum How to use checksums |
1fa6058938190ebe8290e5cae6c351e14e7bb44505c4a7624555ce57fbbeba0d
|
|
BLAKE2b-256 checksum How to use checksums |
2d8885a2258e46c6aa1b214f0aa1bcd26e8bed1b1faa635ae8a5ebf4839b6b38
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/1.12.1 pkginfo/1.4.2 requests/2.20.0 setuptools/40.5.0 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.7.1
|
Release files / MarkupSafe-1.1.0-cp34-cp34m-manylinux1_x86_64.whl
| Download URL | MarkupSafe-1.1.0-cp34-cp34m-manylinux1_x86_64.whl |
|---|---|
| Size | 27.4 kB |
| Tags | CPython 3.4 CPython 3.4 pymalloc Linux glibc 2.5+ x86-64 |
|
SHA-256 checksum How to use checksums |
fb7c206e01ad85ce57feeaaa0bf784b97fa3cad0d4a5737bc5295785f5c613a1
|
|
BLAKE2b-256 checksum How to use checksums |
3ea6230a77104000937d717c300bcefe907a960d437e1a721e49c5fb40deb1c0
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/1.12.1 pkginfo/1.4.2 requests/2.20.0 setuptools/40.5.0 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.7.1
|
Release files / MarkupSafe-1.1.0-cp34-cp34m-manylinux1_i686.whl
| Download URL | MarkupSafe-1.1.0-cp34-cp34m-manylinux1_i686.whl |
|---|---|
| Size | 27.1 kB |
| Tags | CPython 3.4 CPython 3.4 pymalloc Linux glibc 2.5+ x86-32 |
|
SHA-256 checksum How to use checksums |
98e439297f78fca3a6169fd330fbe88d78b3bb72f967ad9961bcac0d7fdd1550
|
|
BLAKE2b-256 checksum How to use checksums |
5ad539b13b99df28ba3ceb2a54ab96b70de68270e9204b5661df55185fd36756
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/1.12.1 pkginfo/1.4.2 requests/2.20.0 setuptools/40.5.0 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.7.1
|
Release files / MarkupSafe-1.1.0-cp34-cp34m-macosx_10_6_intel.whl
| Download URL | MarkupSafe-1.1.0-cp34-cp34m-macosx_10_6_intel.whl |
|---|---|
| Size | 19.1 kB |
| Tags | CPython 3.4 CPython 3.4 pymalloc macOS 10.6+ Intel (x86-64, i386) |
|
SHA-256 checksum How to use checksums |
19f637c2ac5ae9da8bfd98cef74d64b7e1bb8a63038a3505cd182c3fac5eb4d9
|
|
BLAKE2b-256 checksum How to use checksums |
65bf160b4ae527a4e9f5241c579b69e5daf6daa824316ac4cdbc2dfa7e6de566
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/1.12.1 pkginfo/1.4.2 requests/2.20.0 setuptools/40.5.0 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.7.1
|
Release files / MarkupSafe-1.1.0-cp27-cp27mu-manylinux1_x86_64.whl
| Download URL | MarkupSafe-1.1.0-cp27-cp27mu-manylinux1_x86_64.whl |
|---|---|
| Size | 24.5 kB |
| Tags | CPython 2.7 CPython 2.7 pymalloc wide-unicode Linux glibc 2.5+ x86-64 |
|
SHA-256 checksum How to use checksums |
f82e347a72f955b7017a39708a3667f106e6ad4d10b25f237396a7115d8ed5fd
|
|
BLAKE2b-256 checksum How to use checksums |
bc3a6bfd7b4b202fa33bdda8e4e3d3acc719f381fd730f9a0e7c5f34e845bd4d
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/1.12.1 pkginfo/1.4.2 requests/2.20.0 setuptools/40.5.0 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.7.1
|
Release files / MarkupSafe-1.1.0-cp27-cp27mu-manylinux1_i686.whl
| Download URL | MarkupSafe-1.1.0-cp27-cp27mu-manylinux1_i686.whl |
|---|---|
| Size | 24.3 kB |
| Tags | CPython 2.7 CPython 2.7 pymalloc wide-unicode Linux glibc 2.5+ x86-32 |
|
SHA-256 checksum How to use checksums |
5c3fbebd7de20ce93103cb3183b47671f2885307df4a17a0ad56a1dd51273d36
|
|
BLAKE2b-256 checksum How to use checksums |
b745e3e4b1b2e49b1b9d221aa42e61863d755dde464df9f53a06cc3ed25ff2b3
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/1.12.1 pkginfo/1.4.2 requests/2.20.0 setuptools/40.5.0 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.7.1
|
Release files / MarkupSafe-1.1.0-cp27-cp27m-win_amd64.whl
| Download URL | MarkupSafe-1.1.0-cp27-cp27m-win_amd64.whl |
|---|---|
| Size | 14.2 kB |
| Tags | CPython 2.7 CPython 2.7 pymalloc Windows x86-64 |
|
SHA-256 checksum How to use checksums |
edce2ea7f3dfc981c4ddc97add8a61381d9642dc3273737e756517cc03e84dd6
|
|
BLAKE2b-256 checksum How to use checksums |
dfdb3b4b04e988f45bc5950f60af8be8c3198482fcc574e1c6537cade74ca170
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/1.12.1 pkginfo/1.4.2 requests/2.20.0 setuptools/40.5.0 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.7.1
|
Release files / MarkupSafe-1.1.0-cp27-cp27m-win32.whl
| Download URL | MarkupSafe-1.1.0-cp27-cp27m-win32.whl |
|---|---|
| Size | 14.4 kB |
| Tags | CPython 2.7 CPython 2.7 pymalloc Windows x86-32 |
|
SHA-256 checksum How to use checksums |
31cbb1359e8c25f9f48e156e59e2eaad51cd5242c05ed18a8de6dbe85184e4b7
|
|
BLAKE2b-256 checksum How to use checksums |
ce446636e1b2dc3f71dd7f73bf170d6642de3d5dfbf34a9072ccaeb9c33f2691
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/1.12.1 pkginfo/1.4.2 requests/2.20.0 setuptools/40.5.0 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.7.1
|
Release files / MarkupSafe-1.1.0-cp27-cp27m-manylinux1_x86_64.whl
| Download URL | MarkupSafe-1.1.0-cp27-cp27m-manylinux1_x86_64.whl |
|---|---|
| Size | 24.5 kB |
| Tags | CPython 2.7 CPython 2.7 pymalloc Linux glibc 2.5+ x86-64 |
|
SHA-256 checksum How to use checksums |
525396ee324ee2da82919f2ee9c9e73b012f23e7640131dd1b53a90206a0f09c
|
|
BLAKE2b-256 checksum How to use checksums |
947a34f53c66e0f9070b273c083d674581158426f2670cfd03f07fec375f0325
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/1.12.1 pkginfo/1.4.2 requests/2.20.0 setuptools/40.5.0 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.7.1
|
Release files / MarkupSafe-1.1.0-cp27-cp27m-manylinux1_i686.whl
| Download URL | MarkupSafe-1.1.0-cp27-cp27m-manylinux1_i686.whl |
|---|---|
| Size | 24.3 kB |
| Tags | CPython 2.7 CPython 2.7 pymalloc Linux glibc 2.5+ x86-32 |
|
SHA-256 checksum How to use checksums |
52ccb45e77a1085ec5461cde794e1aa037df79f473cbc69b974e73940655c8d7
|
|
BLAKE2b-256 checksum How to use checksums |
44a9c4c21415f12db6eca45e8728ce9aa7b56942dcd324a2d8687cece33c82dd
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/1.12.1 pkginfo/1.4.2 requests/2.20.0 setuptools/40.5.0 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.7.1
|
Release files / MarkupSafe-1.1.0-cp27-cp27m-macosx_10_6_intel.whl
| Download URL | MarkupSafe-1.1.0-cp27-cp27m-macosx_10_6_intel.whl |
|---|---|
| Size | 17.7 kB |
| Tags | CPython 2.7 CPython 2.7 pymalloc macOS 10.6+ Intel (x86-64, i386) |
|
SHA-256 checksum How to use checksums |
efdc45ef1afc238db84cb4963aa689c0408912a0239b0721cb172b4016eb31d6
|
|
BLAKE2b-256 checksum How to use checksums |
cd52927263d9cf66a12e05c5caef43ee203bd92355e9a321552d2b8c4aee5f1e
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/1.12.1 pkginfo/1.4.2 requests/2.20.0 setuptools/40.5.0 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.7.1
|