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

Uploaded Source

Built Distributions

MarkupSafe-1.1.0-cp37-cp37m-win_amd64.whl (16.8 kB view details)

Uploaded CPython 3.7mWindows x86-64

MarkupSafe-1.1.0-cp37-cp37m-win32.whl (16.1 kB view details)

Uploaded CPython 3.7mWindows x86

MarkupSafe-1.1.0-cp37-cp37m-manylinux1_x86_64.whl (27.7 kB view details)

Uploaded CPython 3.7m

MarkupSafe-1.1.0-cp37-cp37m-manylinux1_i686.whl (27.3 kB view details)

Uploaded CPython 3.7m

MarkupSafe-1.1.0-cp37-cp37m-macosx_10_6_intel.whl (19.1 kB view details)

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

MarkupSafe-1.1.0-cp36-cp36m-win_amd64.whl (16.8 kB view details)

Uploaded CPython 3.6mWindows x86-64

MarkupSafe-1.1.0-cp36-cp36m-win32.whl (16.1 kB view details)

Uploaded CPython 3.6mWindows x86

MarkupSafe-1.1.0-cp36-cp36m-manylinux1_x86_64.whl (27.7 kB view details)

Uploaded CPython 3.6m

MarkupSafe-1.1.0-cp36-cp36m-manylinux1_i686.whl (27.3 kB view details)

Uploaded CPython 3.6m

MarkupSafe-1.1.0-cp36-cp36m-macosx_10_6_intel.whl (19.1 kB view details)

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

MarkupSafe-1.1.0-cp35-cp35m-win_amd64.whl (16.8 kB view details)

Uploaded CPython 3.5mWindows x86-64

MarkupSafe-1.1.0-cp35-cp35m-win32.whl (16.1 kB view details)

Uploaded CPython 3.5mWindows x86

MarkupSafe-1.1.0-cp35-cp35m-manylinux1_x86_64.whl (27.7 kB view details)

Uploaded CPython 3.5m

MarkupSafe-1.1.0-cp35-cp35m-manylinux1_i686.whl (27.3 kB view details)

Uploaded CPython 3.5m

MarkupSafe-1.1.0-cp35-cp35m-macosx_10_6_intel.whl (19.1 kB view details)

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

MarkupSafe-1.1.0-cp34-cp34m-win_amd64.whl (14.7 kB view details)

Uploaded CPython 3.4mWindows x86-64

MarkupSafe-1.1.0-cp34-cp34m-win32.whl (14.8 kB view details)

Uploaded CPython 3.4mWindows x86

MarkupSafe-1.1.0-cp34-cp34m-manylinux1_x86_64.whl (27.4 kB view details)

Uploaded CPython 3.4m

MarkupSafe-1.1.0-cp34-cp34m-manylinux1_i686.whl (27.1 kB view details)

Uploaded CPython 3.4m

MarkupSafe-1.1.0-cp34-cp34m-macosx_10_6_intel.whl (19.1 kB view details)

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

MarkupSafe-1.1.0-cp27-cp27mu-manylinux1_x86_64.whl (24.5 kB view details)

Uploaded CPython 2.7mu

MarkupSafe-1.1.0-cp27-cp27mu-manylinux1_i686.whl (24.3 kB view details)

Uploaded CPython 2.7mu

MarkupSafe-1.1.0-cp27-cp27m-win_amd64.whl (14.2 kB view details)

Uploaded CPython 2.7mWindows x86-64

MarkupSafe-1.1.0-cp27-cp27m-win32.whl (14.4 kB view details)

Uploaded CPython 2.7mWindows x86

MarkupSafe-1.1.0-cp27-cp27m-manylinux1_x86_64.whl (24.5 kB view details)

Uploaded CPython 2.7m

MarkupSafe-1.1.0-cp27-cp27m-manylinux1_i686.whl (24.3 kB view details)

Uploaded CPython 2.7m

MarkupSafe-1.1.0-cp27-cp27m-macosx_10_6_intel.whl (17.7 kB view details)

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

File details

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

File metadata

  • Download URL: MarkupSafe-1.1.0.tar.gz
  • Upload date:
  • Size: 18.9 kB
  • Tags: Source
  • Uploaded using 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

File hashes

Hashes for MarkupSafe-1.1.0.tar.gz
Algorithm Hash digest
SHA256 4e97332c9ce444b0c2c38dd22ddc61c743eb208d916e4265a2a3b575bdccb1d3
MD5 49e3f3230cedb7ae34faf06913db83fc
BLAKE2b-256 ac7e1b4c2e05809a4414ebce0892fe1e32c14ace86ca7d50c70f00979ca9b3a3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: MarkupSafe-1.1.0-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 16.8 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using 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

File hashes

Hashes for MarkupSafe-1.1.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 7d263e5770efddf465a9e31b78362d84d015cc894ca2c131901a4445eaa61ee1
MD5 cbc5d68b052ca6a39b05c735ca6821f3
BLAKE2b-256 446e41ac9266e3db762dfd9089f6b0d2298c84160f54ef2a7257c17b0e7ec2ec

See more details on using hashes here.

File details

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

File metadata

  • Download URL: MarkupSafe-1.1.0-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 16.1 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using 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

File hashes

Hashes for MarkupSafe-1.1.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 1c25694ca680b6919de53a4bb3bdd0602beafc63ff001fea2f2fc16ec3a11834
MD5 eb57b982479fc5f70c92472844dd4b62
BLAKE2b-256 e9e94e6394de81f28fcd331298110714980ad4978d9d0d6649c54bd88bf1cd43

See more details on using hashes here.

File details

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

File metadata

  • Download URL: MarkupSafe-1.1.0-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 27.7 kB
  • Tags: CPython 3.7m
  • Uploaded using 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

File hashes

Hashes for MarkupSafe-1.1.0-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 d9ac82be533394d341b41d78aca7ed0e0f4ba5a2231602e2f05aa87f25c51672
MD5 e1b79a6dbdbb81aa1aa7b6a9208fd4a1
BLAKE2b-256 e4c4adcc2d6f2ac2146cc04e076f14f1006c1de8e1e747fa067668b6573000b8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: MarkupSafe-1.1.0-cp37-cp37m-manylinux1_i686.whl
  • Upload date:
  • Size: 27.3 kB
  • Tags: CPython 3.7m
  • Uploaded using 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

File hashes

Hashes for MarkupSafe-1.1.0-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 1b8a7a87ad1b92bd887568ce54b23565f3fd7018c4180136e1cf412b405a47af
MD5 688becb709f3caf221cd4ef5c0430e52
BLAKE2b-256 d11de4c771756983e58de50ab113f48f7630446dc1af1677c690fa61c60bf974

See more details on using hashes here.

File details

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

File metadata

  • Download URL: MarkupSafe-1.1.0-cp37-cp37m-macosx_10_6_intel.whl
  • Upload date:
  • Size: 19.1 kB
  • Tags: CPython 3.7m, macOS 10.6+ Intel (x86-64, i386)
  • Uploaded using 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

File hashes

Hashes for MarkupSafe-1.1.0-cp37-cp37m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 1f19ef5d3908110e1e891deefb5586aae1b49a7440db952454b4e281b41620cd
MD5 9ada9ba2ad2875372ba818eb65acfa81
BLAKE2b-256 9652eef455862764cb6d6c136aa52c7f9fc4e7c1c644790a7107b1244a2b8a53

See more details on using hashes here.

File details

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

File metadata

  • Download URL: MarkupSafe-1.1.0-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 16.8 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using 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

File hashes

Hashes for MarkupSafe-1.1.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 52b07fbc32032c21ad4ab060fec137b76eb804c4b9a1c7c7dc562549306afad2
MD5 4dc243a791479acaf780cc22f00eb7ff
BLAKE2b-256 9d809a5daf3ed7b8482e72ee138cef602b538cfba5c507e24e39fb95c189b16b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: MarkupSafe-1.1.0-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 16.1 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using 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

File hashes

Hashes for MarkupSafe-1.1.0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 130f844e7f5bdd8e9f3f42e7102ef1d49b2e6fdf0d7526df3f87281a532d8c8b
MD5 72f2ce2433f2e7700b34c5705969636a
BLAKE2b-256 7e269446eee7b4f9063d9facde25ab46881a3dfcd22d09082bf65529816fd423

See more details on using hashes here.

File details

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

File metadata

  • Download URL: MarkupSafe-1.1.0-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 27.7 kB
  • Tags: CPython 3.6m
  • Uploaded using 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

File hashes

Hashes for MarkupSafe-1.1.0-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 83381342bfc22b3c8c06f2dd93a505413888694302de25add756254beee8449c
MD5 56753caf683ed4efb1d61bc6edb2949b
BLAKE2b-256 0804f2191b50fb7f0712f03f064b71d8b4605190f2178ba02e975a87f7b89a0d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: MarkupSafe-1.1.0-cp36-cp36m-manylinux1_i686.whl
  • Upload date:
  • Size: 27.3 kB
  • Tags: CPython 3.6m
  • Uploaded using 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

File hashes

Hashes for MarkupSafe-1.1.0-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 048ef924c1623740e70204aa7143ec592504045ae4429b59c30054cb31e3c432
MD5 441d5d6b8fc82cc322ff46bc596837f9
BLAKE2b-256 616c721fcace7ecf6ee99187f2f66d70f73847ca7487f4a0918148e6e8fe2cb4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: MarkupSafe-1.1.0-cp36-cp36m-macosx_10_6_intel.whl
  • Upload date:
  • Size: 19.1 kB
  • Tags: CPython 3.6m, macOS 10.6+ Intel (x86-64, i386)
  • Uploaded using 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

File hashes

Hashes for MarkupSafe-1.1.0-cp36-cp36m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 bf54103892a83c64db58125b3f2a43df6d2cb2d28889f14c78519394feb41492
MD5 5abfe42c37db33abfa7d369c17011973
BLAKE2b-256 dafc2979c425ad23d528d6ac2e1f3efdc28e572fa1e1fbd5a75171cbdd7ddaa5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: MarkupSafe-1.1.0-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 16.8 kB
  • Tags: CPython 3.5m, Windows x86-64
  • Uploaded using 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

File hashes

Hashes for MarkupSafe-1.1.0-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 857eebb2c1dc60e4219ec8e98dfa19553dae33608237e107db9c6078b1167856
MD5 52e26b54352561d7fbe1e26f0ee5516b
BLAKE2b-256 166d673e8a405cc671a5b2f542b395ce10b6d166dc1e25db799927a528917fe9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: MarkupSafe-1.1.0-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 16.1 kB
  • Tags: CPython 3.5m, Windows x86
  • Uploaded using 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

File hashes

Hashes for MarkupSafe-1.1.0-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 5edfa27b2d3eefa2210fb2f5d539fbed81722b49f083b2c6566455eb7422fd7e
MD5 79d2a2504f1c611187a450d08460a0b5
BLAKE2b-256 d351ab9198d0f9aecbe5145864fcbd9e29b21d77d44c3e4000e392fcefd49343

See more details on using hashes here.

File details

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

File metadata

  • Download URL: MarkupSafe-1.1.0-cp35-cp35m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 27.7 kB
  • Tags: CPython 3.5m
  • Uploaded using 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

File hashes

Hashes for MarkupSafe-1.1.0-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 3e835d8841ae7863f64e40e19477f7eb398674da6a47f09871673742531e6f4b
MD5 fb513fec45ca59d76355588e544b24e4
BLAKE2b-256 3ea5e188980ef1d0a4e0788b5143ea933f9afd760df38fec4c0b72b5ae3060c8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: MarkupSafe-1.1.0-cp35-cp35m-manylinux1_i686.whl
  • Upload date:
  • Size: 27.3 kB
  • Tags: CPython 3.5m
  • Uploaded using 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

File hashes

Hashes for MarkupSafe-1.1.0-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 f137c02498f8b935892d5c0172560d7ab54bc45039de8805075e19079c639a9c
MD5 88cd1a2832431be4f92232ba8609916a
BLAKE2b-256 459f232d4cd0111056fc001bb0d06da45c09e7ad19568b61215244349e6020fa

See more details on using hashes here.

File details

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

File metadata

  • Download URL: MarkupSafe-1.1.0-cp35-cp35m-macosx_10_6_intel.whl
  • Upload date:
  • Size: 19.1 kB
  • Tags: CPython 3.5m, macOS 10.6+ Intel (x86-64, i386)
  • Uploaded using 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

File hashes

Hashes for MarkupSafe-1.1.0-cp35-cp35m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 5e5851969aea17660e55f6a3be00037a25b96a9b44d2083651812c99d53b14d1
MD5 34f81f79cf3b90fd43294dd40f8670b5
BLAKE2b-256 f31457314fd91debce8e53b8efe662093915d88eccf00df026224dfe71d7518b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: MarkupSafe-1.1.0-cp34-cp34m-win_amd64.whl
  • Upload date:
  • Size: 14.7 kB
  • Tags: CPython 3.4m, Windows x86-64
  • Uploaded using 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

File hashes

Hashes for MarkupSafe-1.1.0-cp34-cp34m-win_amd64.whl
Algorithm Hash digest
SHA256 e982fe07ede9fada6ff6705af70514a52beb1b2c3d25d4e873e82114cf3c5401
MD5 fc7f028805de5837220429184ac3520a
BLAKE2b-256 335e22525e5c3bca1cd05b8047b74ceee67cd326144b5c9332884815ad89397d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: MarkupSafe-1.1.0-cp34-cp34m-win32.whl
  • Upload date:
  • Size: 14.8 kB
  • Tags: CPython 3.4m, Windows x86
  • Uploaded using 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

File hashes

Hashes for MarkupSafe-1.1.0-cp34-cp34m-win32.whl
Algorithm Hash digest
SHA256 1fa6058938190ebe8290e5cae6c351e14e7bb44505c4a7624555ce57fbbeba0d
MD5 d1dc0cf3d3ae0595e248668342dc31a5
BLAKE2b-256 2d8885a2258e46c6aa1b214f0aa1bcd26e8bed1b1faa635ae8a5ebf4839b6b38

See more details on using hashes here.

File details

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

File metadata

  • Download URL: MarkupSafe-1.1.0-cp34-cp34m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 27.4 kB
  • Tags: CPython 3.4m
  • Uploaded using 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

File hashes

Hashes for MarkupSafe-1.1.0-cp34-cp34m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 fb7c206e01ad85ce57feeaaa0bf784b97fa3cad0d4a5737bc5295785f5c613a1
MD5 5a43d0f275549032b7e2eb924388dda7
BLAKE2b-256 3ea6230a77104000937d717c300bcefe907a960d437e1a721e49c5fb40deb1c0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: MarkupSafe-1.1.0-cp34-cp34m-manylinux1_i686.whl
  • Upload date:
  • Size: 27.1 kB
  • Tags: CPython 3.4m
  • Uploaded using 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

File hashes

Hashes for MarkupSafe-1.1.0-cp34-cp34m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 98e439297f78fca3a6169fd330fbe88d78b3bb72f967ad9961bcac0d7fdd1550
MD5 016315623088cc0f078239c366ac64a7
BLAKE2b-256 5ad539b13b99df28ba3ceb2a54ab96b70de68270e9204b5661df55185fd36756

See more details on using hashes here.

File details

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

File metadata

  • Download URL: MarkupSafe-1.1.0-cp34-cp34m-macosx_10_6_intel.whl
  • Upload date:
  • Size: 19.1 kB
  • Tags: CPython 3.4m, macOS 10.6+ Intel (x86-64, i386)
  • Uploaded using 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

File hashes

Hashes for MarkupSafe-1.1.0-cp34-cp34m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 19f637c2ac5ae9da8bfd98cef74d64b7e1bb8a63038a3505cd182c3fac5eb4d9
MD5 482d2dfaa5a9b07e672526018fdfc3d3
BLAKE2b-256 65bf160b4ae527a4e9f5241c579b69e5daf6daa824316ac4cdbc2dfa7e6de566

See more details on using hashes here.

File details

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

File metadata

  • Download URL: MarkupSafe-1.1.0-cp27-cp27mu-manylinux1_x86_64.whl
  • Upload date:
  • Size: 24.5 kB
  • Tags: CPython 2.7mu
  • Uploaded using 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

File hashes

Hashes for MarkupSafe-1.1.0-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 f82e347a72f955b7017a39708a3667f106e6ad4d10b25f237396a7115d8ed5fd
MD5 fc57fd8af952ba8c722c749c9e35375c
BLAKE2b-256 bc3a6bfd7b4b202fa33bdda8e4e3d3acc719f381fd730f9a0e7c5f34e845bd4d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: MarkupSafe-1.1.0-cp27-cp27mu-manylinux1_i686.whl
  • Upload date:
  • Size: 24.3 kB
  • Tags: CPython 2.7mu
  • Uploaded using 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

File hashes

Hashes for MarkupSafe-1.1.0-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 5c3fbebd7de20ce93103cb3183b47671f2885307df4a17a0ad56a1dd51273d36
MD5 90e565b47cec4bee8d2253072afb81b7
BLAKE2b-256 b745e3e4b1b2e49b1b9d221aa42e61863d755dde464df9f53a06cc3ed25ff2b3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: MarkupSafe-1.1.0-cp27-cp27m-win_amd64.whl
  • Upload date:
  • Size: 14.2 kB
  • Tags: CPython 2.7m, Windows x86-64
  • Uploaded using 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

File hashes

Hashes for MarkupSafe-1.1.0-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 edce2ea7f3dfc981c4ddc97add8a61381d9642dc3273737e756517cc03e84dd6
MD5 aee38a7a9558329a44ceef08ae1eb0cd
BLAKE2b-256 dfdb3b4b04e988f45bc5950f60af8be8c3198482fcc574e1c6537cade74ca170

See more details on using hashes here.

File details

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

File metadata

  • Download URL: MarkupSafe-1.1.0-cp27-cp27m-win32.whl
  • Upload date:
  • Size: 14.4 kB
  • Tags: CPython 2.7m, Windows x86
  • Uploaded using 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

File hashes

Hashes for MarkupSafe-1.1.0-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 31cbb1359e8c25f9f48e156e59e2eaad51cd5242c05ed18a8de6dbe85184e4b7
MD5 3efdc36494bc238c5fe36e7dea741a21
BLAKE2b-256 ce446636e1b2dc3f71dd7f73bf170d6642de3d5dfbf34a9072ccaeb9c33f2691

See more details on using hashes here.

File details

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

File metadata

  • Download URL: MarkupSafe-1.1.0-cp27-cp27m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 24.5 kB
  • Tags: CPython 2.7m
  • Uploaded using 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

File hashes

Hashes for MarkupSafe-1.1.0-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 525396ee324ee2da82919f2ee9c9e73b012f23e7640131dd1b53a90206a0f09c
MD5 37b7dae665d9e3fa8d474ce25d7e4d23
BLAKE2b-256 947a34f53c66e0f9070b273c083d674581158426f2670cfd03f07fec375f0325

See more details on using hashes here.

File details

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

File metadata

  • Download URL: MarkupSafe-1.1.0-cp27-cp27m-manylinux1_i686.whl
  • Upload date:
  • Size: 24.3 kB
  • Tags: CPython 2.7m
  • Uploaded using 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

File hashes

Hashes for MarkupSafe-1.1.0-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 52ccb45e77a1085ec5461cde794e1aa037df79f473cbc69b974e73940655c8d7
MD5 af360724cb843bdb8aee09626413b59e
BLAKE2b-256 44a9c4c21415f12db6eca45e8728ce9aa7b56942dcd324a2d8687cece33c82dd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: MarkupSafe-1.1.0-cp27-cp27m-macosx_10_6_intel.whl
  • Upload date:
  • Size: 17.7 kB
  • Tags: CPython 2.7m, macOS 10.6+ Intel (x86-64, i386)
  • Uploaded using 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

File hashes

Hashes for MarkupSafe-1.1.0-cp27-cp27m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 efdc45ef1afc238db84cb4963aa689c0408912a0239b0721cb172b4016eb31d6
MD5 1036109e132252719b1dbe9594aef1ae
BLAKE2b-256 cd52927263d9cf66a12e05c5caef43ee203bd92355e9a321552d2b8c4aee5f1e

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