Skip to main content

Python bindings for the bluemonday HTML sanitizer

Project description

pybluemonday

PyPI

pybluemonday is a library for sanitizing HTML very quickly via bluemonday.

pybluemonday takes untrusted user generated content as an input, and will return HTML that has been sanitised against a whitelist of approved HTML elements and attributes so that you can safely include the content in your web page.

Note: This library is in a useable state but is still experimental. It may not have feature parity with the actual bluemonday and is likely to sanitize HTML slightly differently than other libraries. PRs and feedback are welcome on improving this library.

Installation

pip install pybluemonday

Examples

from pybluemonday import UGCPolicy
s = UGCPolicy()

print(s.sanitize("<script>alert(1)</script><b class='stuff'>testing</b>"))
# <b>testing</b>

s.AllowAttrs("class", "style").Globally()
print(s.sanitize("<script>alert(1)</script><b class='stuff' style='color: red;'>testing</b>"))
# <b class="stuff" style="color: red;">testing</b>
from pybluemonday import StrictPolicy
s = StrictPolicy()

s.sanitize("<center><b>Blog Post Title</b></center>")
# Blog Post Title

How does this work?

pybluemonday is a binding to bluemonday through a shared library built through cgo. However, instead of replicating the entire API, pybluemonday uses reflection on the Go side and some type checking on the Python side to call the right bluemonday function when you try to call a method.

Essentially you want to create a Policy with the provided pybluemonday.UGCPolicy, pybluemonday.StrictPolicy, and pybluemonday.NewPolicy classes and then call methods that map to the appropriate bluemonday struct method.

This is an open area of improvement but gets reasonable coverage of the original bluemonday interface.

Also because it's difficult to share Go structs over to Python, pybluemonday keeps an ID reference to the struct in the Go side and passes the reference for every Go call. This means that if you corrupt or change the ID for some nonsensical reason you may likely end up with a memory leak. This is also an open area of improvement.

Performance

Most Python based HTML sanitizing libraries will need to rely on html5lib for parsing HTML in a reasoanble way. Because of this you will likely see performance hits when using these libraries.

Since pybluemonday is just bindings for bluemonday it has very good performance because all parsing and processing is done in Go by bluemonday. Go also ships an HTML5 parser which means we avoid html5lib but still process HTML pretty well.

Always take benchmarks with a grain of salt but when compared to other similar Python sanitizing libraries pybluemonday executes far faster:

❯ python benchmarks.py
bleach (20000 sanitizations): 37.613802053
html_sanitizer (20000 sanitizations): 17.645683948
lxml Cleaner (20000 sanitizations): 10.500760227999997
pybluemonday (20000 sanitizations): 0.6188559669999876

Benchmarks taken on a MacBook Pro 15-inch, 2016 (2.7 GHz Intel Core i7, 16 GB RAM)

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

pybluemonday-0.0.10.tar.gz (8.4 kB view details)

Uploaded Source

Built Distributions

pybluemonday-0.0.10-pp38-pypy38_pp73-win_amd64.whl (2.1 MB view details)

Uploaded PyPy Windows x86-64

pybluemonday-0.0.10-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.9 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

pybluemonday-0.0.10-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.1 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

pybluemonday-0.0.10-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (2.0 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

pybluemonday-0.0.10-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (2.3 MB view details)

Uploaded PyPy macOS 10.9+ x86-64

pybluemonday-0.0.10-pp37-pypy37_pp73-win_amd64.whl (2.1 MB view details)

Uploaded PyPy Windows x86-64

pybluemonday-0.0.10-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.9 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

pybluemonday-0.0.10-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.1 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

pybluemonday-0.0.10-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (2.0 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

pybluemonday-0.0.10-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (2.3 MB view details)

Uploaded PyPy macOS 10.9+ x86-64

pybluemonday-0.0.10-cp310-cp310-win_amd64.whl (2.1 MB view details)

Uploaded CPython 3.10 Windows x86-64

pybluemonday-0.0.10-cp310-cp310-musllinux_1_1_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

pybluemonday-0.0.10-cp310-cp310-musllinux_1_1_i686.whl (2.0 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ i686

pybluemonday-0.0.10-cp310-cp310-musllinux_1_1_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ ARM64

pybluemonday-0.0.10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

pybluemonday-0.0.10-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

pybluemonday-0.0.10-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (2.0 MB view details)

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

pybluemonday-0.0.10-cp310-cp310-macosx_10_9_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

pybluemonday-0.0.10-cp39-cp39-win_amd64.whl (2.1 MB view details)

Uploaded CPython 3.9 Windows x86-64

pybluemonday-0.0.10-cp39-cp39-musllinux_1_1_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

pybluemonday-0.0.10-cp39-cp39-musllinux_1_1_i686.whl (2.0 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ i686

pybluemonday-0.0.10-cp39-cp39-musllinux_1_1_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ ARM64

pybluemonday-0.0.10-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

pybluemonday-0.0.10-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

pybluemonday-0.0.10-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (2.0 MB view details)

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

pybluemonday-0.0.10-cp39-cp39-macosx_10_9_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

pybluemonday-0.0.10-cp38-cp38-win_amd64.whl (2.1 MB view details)

Uploaded CPython 3.8 Windows x86-64

pybluemonday-0.0.10-cp38-cp38-musllinux_1_1_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

pybluemonday-0.0.10-cp38-cp38-musllinux_1_1_i686.whl (2.0 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ i686

pybluemonday-0.0.10-cp38-cp38-musllinux_1_1_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ ARM64

pybluemonday-0.0.10-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

pybluemonday-0.0.10-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

pybluemonday-0.0.10-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (2.0 MB view details)

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

pybluemonday-0.0.10-cp38-cp38-macosx_10_9_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

pybluemonday-0.0.10-cp37-cp37m-win_amd64.whl (2.1 MB view details)

Uploaded CPython 3.7m Windows x86-64

pybluemonday-0.0.10-cp37-cp37m-musllinux_1_1_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ x86-64

pybluemonday-0.0.10-cp37-cp37m-musllinux_1_1_i686.whl (2.0 MB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ i686

pybluemonday-0.0.10-cp37-cp37m-musllinux_1_1_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ ARM64

pybluemonday-0.0.10-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

pybluemonday-0.0.10-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

pybluemonday-0.0.10-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (2.0 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

pybluemonday-0.0.10-cp37-cp37m-macosx_10_9_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

pybluemonday-0.0.10-cp36-cp36m-win_amd64.whl (2.1 MB view details)

Uploaded CPython 3.6m Windows x86-64

pybluemonday-0.0.10-cp36-cp36m-musllinux_1_1_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.6m musllinux: musl 1.1+ x86-64

pybluemonday-0.0.10-cp36-cp36m-musllinux_1_1_i686.whl (2.0 MB view details)

Uploaded CPython 3.6m musllinux: musl 1.1+ i686

pybluemonday-0.0.10-cp36-cp36m-musllinux_1_1_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.6m musllinux: musl 1.1+ ARM64

pybluemonday-0.0.10-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ ARM64

pybluemonday-0.0.10-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

pybluemonday-0.0.10-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (2.0 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

pybluemonday-0.0.10-cp36-cp36m-macosx_10_9_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

File details

Details for the file pybluemonday-0.0.10.tar.gz.

File metadata

  • Download URL: pybluemonday-0.0.10.tar.gz
  • Upload date:
  • Size: 8.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.9.6 requests/2.28.2 setuptools/47.1.0 requests-toolbelt/0.10.1 tqdm/4.65.0 CPython/3.7.16

File hashes

Hashes for pybluemonday-0.0.10.tar.gz
Algorithm Hash digest
SHA256 94bec53c5aea36e5ea47156b530e72b0157be48b72852f92efea143af3db01ea
MD5 80b5a3387f988fb6bfe42e3ed390e7bf
BLAKE2b-256 d8efbb2b81f13564574072f75c6b56c67782bbbf94b17b46c3c0951db870c7d6

See more details on using hashes here.

Provenance

File details

Details for the file pybluemonday-0.0.10-pp38-pypy38_pp73-win_amd64.whl.

File metadata

  • Download URL: pybluemonday-0.0.10-pp38-pypy38_pp73-win_amd64.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: PyPy, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.9.6 requests/2.28.2 setuptools/47.1.0 requests-toolbelt/0.10.1 tqdm/4.65.0 CPython/3.7.9

File hashes

Hashes for pybluemonday-0.0.10-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 bcf7ed962331f9ac596c9efb81753c2bee27b01ce9458c19ad31f3a70a44c28b
MD5 559e37c927ffdafb981b7ebc650f6429
BLAKE2b-256 a91cceabd7191f793870d97fe771fa344a8ed14b8a8d02c23551b78cf9bf7159

See more details on using hashes here.

Provenance

File details

Details for the file pybluemonday-0.0.10-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pybluemonday-0.0.10-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d6714cda6a12f8ec6f8bb5efa1baf25611345c2ef687cf68de20160a94d5b5e8
MD5 e19b2e0659659d595a1f8e9d3af48cd7
BLAKE2b-256 ecd9c9078f1380abdd20461458ec24383eaf1be8df87931f4623d5f0cec3c45b

See more details on using hashes here.

Provenance

File details

Details for the file pybluemonday-0.0.10-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pybluemonday-0.0.10-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 eb0b715f65008b58fc280ef2f42a0853793fed7456ad717a1f1f1a197f584fdc
MD5 5607274762fef08af3da7adce723a50b
BLAKE2b-256 a6c14e24ff425f74b417551e0f9363fcd1890191866911e00dfb5cda1ada8641

See more details on using hashes here.

Provenance

File details

Details for the file pybluemonday-0.0.10-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pybluemonday-0.0.10-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 fde02cdb48650a5488a05c0d07a5233b40bd9fdbfbe2fa5b47de5eb2b056ce39
MD5 e7f59b5439d6110e4893e80bfe06b41f
BLAKE2b-256 295b28ff07914872915ca9b8b357924f5280fdc1b74039396b289751f13a67f3

See more details on using hashes here.

Provenance

File details

Details for the file pybluemonday-0.0.10-pp38-pypy38_pp73-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: pybluemonday-0.0.10-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: PyPy, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.9.6 requests/2.28.2 setuptools/47.1.0 requests-toolbelt/0.10.1 tqdm/4.65.0 CPython/3.7.16

File hashes

Hashes for pybluemonday-0.0.10-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1c3ca56734c18e7da043942a86263f5376932e8936608c4ceacf0b2f64c33464
MD5 49531899a7909cd222be7914bd1c171b
BLAKE2b-256 4b756e7bdb5c6a3debb35e014af53efcca34e133e19333f4233e859890c2507a

See more details on using hashes here.

Provenance

File details

Details for the file pybluemonday-0.0.10-pp37-pypy37_pp73-win_amd64.whl.

File metadata

  • Download URL: pybluemonday-0.0.10-pp37-pypy37_pp73-win_amd64.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: PyPy, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.9.6 requests/2.28.2 setuptools/47.1.0 requests-toolbelt/0.10.1 tqdm/4.65.0 CPython/3.7.9

File hashes

Hashes for pybluemonday-0.0.10-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 520dd3a85b12cd8cd942d2c6e52465a6d63f035ffefcb31f751be5f0fc08b0cb
MD5 a9cd0a8747caa83c09e69c4eb58af2ff
BLAKE2b-256 4ff1fc23ac40fd23f23b3de8514addec0fecd99217b38f80ad4f1e7ac634ac81

See more details on using hashes here.

Provenance

File details

Details for the file pybluemonday-0.0.10-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pybluemonday-0.0.10-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 aa6c079334284ebc4ee6f66235b698fc8d65873e0a1f9d0ba4b11729e1842c01
MD5 6089a125081ea5b2a09b6a58d09aba51
BLAKE2b-256 2c42ed864b73131bdb858962ae903e3b742eccc0a95e58f37257e84645fc0664

See more details on using hashes here.

Provenance

File details

Details for the file pybluemonday-0.0.10-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pybluemonday-0.0.10-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ad2ad224998586602f66aa98febcbd54f8af5098a895835eb53d406f8906708d
MD5 2c79eaa72a3e34fa422e3551026a1903
BLAKE2b-256 82551daf21db7fe314337aab7032f34b520f9d6e19a7d95f22b4a1c26aba3b2e

See more details on using hashes here.

Provenance

File details

Details for the file pybluemonday-0.0.10-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pybluemonday-0.0.10-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 fa998f0aa2797efb20fea475b5936aec9a2662ed5182c03e31e238adc3f7fa3c
MD5 20e766477bc9a1af0c10ccba8785d7a2
BLAKE2b-256 6247a2cef13f0f52bde31243bcfcd31dbb2932769d4b99a2dbbf0fd4d2ee248d

See more details on using hashes here.

Provenance

File details

Details for the file pybluemonday-0.0.10-pp37-pypy37_pp73-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: pybluemonday-0.0.10-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: PyPy, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.9.6 requests/2.28.2 setuptools/47.1.0 requests-toolbelt/0.10.1 tqdm/4.65.0 CPython/3.7.16

File hashes

Hashes for pybluemonday-0.0.10-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a4db1229b8d8e6fb17baee10ae86415712feda782abaf82c29244a58531f59a1
MD5 82acc25371b0fa5d8bcb68688b729a33
BLAKE2b-256 06c4b8f11744f5287496b01fb6823add74a0cb75bc65df45564577a8fdc872b8

See more details on using hashes here.

Provenance

File details

Details for the file pybluemonday-0.0.10-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: pybluemonday-0.0.10-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.9.6 requests/2.28.2 setuptools/47.1.0 requests-toolbelt/0.10.1 tqdm/4.65.0 CPython/3.7.9

File hashes

Hashes for pybluemonday-0.0.10-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 ca2d9039f28295c721d713ea425c1cbe86a6b3185be4b53a94da4bb09429c7ec
MD5 4be4738de71f7d5da8fdbd8475418c64
BLAKE2b-256 c31ba47892ff16251b9c9e8283ae751235b3b48920f309aba545be4a1487db54

See more details on using hashes here.

Provenance

File details

Details for the file pybluemonday-0.0.10-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: pybluemonday-0.0.10-cp310-cp310-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.10, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.9.6 requests/2.28.2 setuptools/47.1.0 requests-toolbelt/0.10.1 tqdm/4.65.0 CPython/3.7.16

File hashes

Hashes for pybluemonday-0.0.10-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 024265f81b25b40961114b2d4e4771ed9d0fc486214c433f21d685c996ec0f41
MD5 037dfe1ed2078e02f21ada5759c5aa1e
BLAKE2b-256 df566c0f93f7204b2135de0295ccb45f91dcf5261b630e89a1f7d7f4837d7ab7

See more details on using hashes here.

Provenance

File details

Details for the file pybluemonday-0.0.10-cp310-cp310-musllinux_1_1_i686.whl.

File metadata

  • Download URL: pybluemonday-0.0.10-cp310-cp310-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.10, musllinux: musl 1.1+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.9.6 requests/2.28.2 setuptools/47.1.0 requests-toolbelt/0.10.1 tqdm/4.65.0 CPython/3.7.16

File hashes

Hashes for pybluemonday-0.0.10-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 ad1556ca8c2989b32c76a9a724860a6c3a0c4f9e2d8081445e6d9c240fd2c32f
MD5 bc377cc01d0cb628d3b8cfe7de37c69e
BLAKE2b-256 5548a709fe3bb99a2145bb5a3b82fad7cf9b7e4479ba08b239260a899af8bce5

See more details on using hashes here.

Provenance

File details

Details for the file pybluemonday-0.0.10-cp310-cp310-musllinux_1_1_aarch64.whl.

File metadata

  • Download URL: pybluemonday-0.0.10-cp310-cp310-musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.10, musllinux: musl 1.1+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.9.6 requests/2.28.2 setuptools/47.1.0 requests-toolbelt/0.10.1 tqdm/4.65.0 CPython/3.7.16

File hashes

Hashes for pybluemonday-0.0.10-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 0b29fd1ba1611af7abe67b5e61245b2384484680b9efdffce17a48be30833bce
MD5 1bc2101f168b75cfaf0b47bc4d51a406
BLAKE2b-256 0250524798d1e1487ed10313378f45005afaa7d76903dd2b80e2896d795012a7

See more details on using hashes here.

Provenance

File details

Details for the file pybluemonday-0.0.10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pybluemonday-0.0.10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0d14e4ec73be2f8a33a52de5542ae27f7bcb779e015525d0512abdd65c9d6558
MD5 8c9fb618060661f7166f3487b637ff93
BLAKE2b-256 c646c04caa76b513bb73897bd61b9a1be8f2142cbae7dafffd6ac7300da9d3bb

See more details on using hashes here.

Provenance

File details

Details for the file pybluemonday-0.0.10-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pybluemonday-0.0.10-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ef6cb3d88f0750e7018ad67b6207fd4a6635b8ce147b7fc134a4d978193afd34
MD5 6bf877a66c50fcdab61cc5302a11a108
BLAKE2b-256 267a5f0089b58b81bca68c893a3f58d4303b2786627fe47017934044439a729a

See more details on using hashes here.

Provenance

File details

Details for the file pybluemonday-0.0.10-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pybluemonday-0.0.10-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6d235d44229c08ff467c0949ec7e14ca7154b03a2a36fdbf389e33dd8575a759
MD5 844093d8809cdb16576491dbae16da3c
BLAKE2b-256 47f0e7bba5f9c925ebb24b4e288dedc933690f61dd5eb78ec0d0f5fc32427cb0

See more details on using hashes here.

Provenance

File details

Details for the file pybluemonday-0.0.10-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: pybluemonday-0.0.10-cp310-cp310-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.10, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.9.6 requests/2.28.2 setuptools/47.1.0 requests-toolbelt/0.10.1 tqdm/4.65.0 CPython/3.7.16

File hashes

Hashes for pybluemonday-0.0.10-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c7014f032f288bb2fad59971c3438693d9fae3890193c11662430fddd9c5cec0
MD5 c95ab0b47f2842d89d419e22a4ec2ad8
BLAKE2b-256 9d35081dab2110dd0f949a99ce42a0e1af7e03b292e64522b128c11fcbbb53fe

See more details on using hashes here.

Provenance

File details

Details for the file pybluemonday-0.0.10-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: pybluemonday-0.0.10-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.9.6 requests/2.28.2 setuptools/47.1.0 requests-toolbelt/0.10.1 tqdm/4.65.0 CPython/3.7.9

File hashes

Hashes for pybluemonday-0.0.10-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 133d7aeee09732c953fdda7cf8e2c8e1d7a22a2c9af785a5eab46d2e9125a85b
MD5 beb4f1fbf9de98e6371a63aa43def782
BLAKE2b-256 814270a7d9ce5489fc13b2f8ff84afdec0161d41cbddacf212a91aac9fc40e2b

See more details on using hashes here.

Provenance

File details

Details for the file pybluemonday-0.0.10-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: pybluemonday-0.0.10-cp39-cp39-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.9, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.9.6 requests/2.28.2 setuptools/47.1.0 requests-toolbelt/0.10.1 tqdm/4.65.0 CPython/3.7.16

File hashes

Hashes for pybluemonday-0.0.10-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 88c1fb2b5032cbb53544851086d5bca6b8a39df9628b90f2ad8fede1136d6baa
MD5 4aa8b196b6fba51d061327c28e605957
BLAKE2b-256 30250806df0b327eddf061ec339dfbdd199df82b0ee54d30642ddd044aa876ea

See more details on using hashes here.

Provenance

File details

Details for the file pybluemonday-0.0.10-cp39-cp39-musllinux_1_1_i686.whl.

File metadata

  • Download URL: pybluemonday-0.0.10-cp39-cp39-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.9, musllinux: musl 1.1+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.9.6 requests/2.28.2 setuptools/47.1.0 requests-toolbelt/0.10.1 tqdm/4.65.0 CPython/3.7.16

File hashes

Hashes for pybluemonday-0.0.10-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 295a9cdf396fc46ade40b2b49628d0585b4e3a3c43f9204784047c23ea5a2e09
MD5 15dbb191b72d26bad7ef81c4ba9c916e
BLAKE2b-256 1bc8e765ef787f7bdf2605d7d8b22decdd376c7583a4f722f0d00154b9830b87

See more details on using hashes here.

Provenance

File details

Details for the file pybluemonday-0.0.10-cp39-cp39-musllinux_1_1_aarch64.whl.

File metadata

  • Download URL: pybluemonday-0.0.10-cp39-cp39-musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.9, musllinux: musl 1.1+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.9.6 requests/2.28.2 setuptools/47.1.0 requests-toolbelt/0.10.1 tqdm/4.65.0 CPython/3.7.16

File hashes

Hashes for pybluemonday-0.0.10-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 d4e46e834616f5d770402cc247e97160cefdd2428a91cafaa5dd1b70c43076b7
MD5 7560804b2892f01fcbc0568b32a530c9
BLAKE2b-256 654b0465f16a4bd306308deb087a5137a27ba679a2def189240580fcb1d5795b

See more details on using hashes here.

Provenance

File details

Details for the file pybluemonday-0.0.10-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pybluemonday-0.0.10-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ed7cd10c30a5c13d5e31cb113105dade6e5b83aac12c23eda91fafac100508cd
MD5 90cd7d718182df40983ed589814a1de9
BLAKE2b-256 c0dc69cf9d8c39a6ca705ab4d172998003f446bb53870eb530c3f08cff7ae4f2

See more details on using hashes here.

Provenance

File details

Details for the file pybluemonday-0.0.10-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pybluemonday-0.0.10-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8ed06e3181814d77b866d9e59d3dce1ccb6bb2fb7df3c1627e72a24bf8986a4c
MD5 b1d69fc86491afe878cc1e30aea92ff4
BLAKE2b-256 5615429ba798afc96965f249aab9683c90cd48074481e09545ec84045e120672

See more details on using hashes here.

Provenance

File details

Details for the file pybluemonday-0.0.10-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pybluemonday-0.0.10-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a3dfea8110e1bd94d312b859facf41b762027a0374eb278b42f5de22644ded5b
MD5 08a0976dbb7337ecc6d858e1ae2b7020
BLAKE2b-256 4cfba05ae405495d5d987847aad81c086f97d81b56afdf511960f59f523e614b

See more details on using hashes here.

Provenance

File details

Details for the file pybluemonday-0.0.10-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: pybluemonday-0.0.10-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.9, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.9.6 requests/2.28.2 setuptools/47.1.0 requests-toolbelt/0.10.1 tqdm/4.65.0 CPython/3.7.16

File hashes

Hashes for pybluemonday-0.0.10-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f907091b098d301456d908ff77b905480eb8ceb61e273d329c9c727d59ca1b29
MD5 9b1b441a1c9844c5328d6fc4f8c18efb
BLAKE2b-256 829e792588b3e48e830b159c32e7a401cbd6a91e000323fdbf337bcb0219b4f2

See more details on using hashes here.

Provenance

File details

Details for the file pybluemonday-0.0.10-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: pybluemonday-0.0.10-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.9.6 requests/2.28.2 setuptools/47.1.0 requests-toolbelt/0.10.1 tqdm/4.65.0 CPython/3.7.9

File hashes

Hashes for pybluemonday-0.0.10-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 1371a639eee77b118db0b24748c191a847d660a4f1b6a705a048348c4ecc58b2
MD5 9411118c47d1c4ab7457f7df3d62c71c
BLAKE2b-256 0b2342a35cfae629930b70cd8241833c665445987a3b43ea21cb1ef6a9d2fe69

See more details on using hashes here.

Provenance

File details

Details for the file pybluemonday-0.0.10-cp38-cp38-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: pybluemonday-0.0.10-cp38-cp38-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.8, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.9.6 requests/2.28.2 setuptools/47.1.0 requests-toolbelt/0.10.1 tqdm/4.65.0 CPython/3.7.16

File hashes

Hashes for pybluemonday-0.0.10-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 439a5f944f1c6384e3860f1565a0d0263da22f369eac81eddbdce9b0aebd01cf
MD5 02c9447ca47c18175f97fe22beede414
BLAKE2b-256 7ae0434e77a15887b1ab1181e30458ba7c931416a9fde9e6cd245dbae43cfbeb

See more details on using hashes here.

Provenance

File details

Details for the file pybluemonday-0.0.10-cp38-cp38-musllinux_1_1_i686.whl.

File metadata

  • Download URL: pybluemonday-0.0.10-cp38-cp38-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.8, musllinux: musl 1.1+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.9.6 requests/2.28.2 setuptools/47.1.0 requests-toolbelt/0.10.1 tqdm/4.65.0 CPython/3.7.16

File hashes

Hashes for pybluemonday-0.0.10-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 3b039e12b1e72871ba2e7a4c97d8ab3a1a0a1f2e5a6bee667834b7131c9b6705
MD5 10ef438e336dd90a2d592a9d02392510
BLAKE2b-256 c85c292b1463659be5623fb65633d34168e486ba6f69d09932c50cb0b409e002

See more details on using hashes here.

Provenance

File details

Details for the file pybluemonday-0.0.10-cp38-cp38-musllinux_1_1_aarch64.whl.

File metadata

  • Download URL: pybluemonday-0.0.10-cp38-cp38-musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.8, musllinux: musl 1.1+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.9.6 requests/2.28.2 setuptools/47.1.0 requests-toolbelt/0.10.1 tqdm/4.65.0 CPython/3.7.16

File hashes

Hashes for pybluemonday-0.0.10-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 1dd18cfdff8064aef4606b623e39186aa95200d02798397090fb49bdebd5150e
MD5 d9d19dcd82ad20e8e29e7a5144e61d9e
BLAKE2b-256 e3ac964e3fad8878dbb2cf24e11a1cdd875c60f76bffe90e5550caeb4c36e57c

See more details on using hashes here.

Provenance

File details

Details for the file pybluemonday-0.0.10-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pybluemonday-0.0.10-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a24c805473bd8388374835922a76bbd3278c53cc0cd1f50065f7c9baf14b46e1
MD5 c000b36ba3bdcc1d62f3b05ffd50061f
BLAKE2b-256 690e5b2026555e15ef9a0b4185b5f55a03a1a09ba94997e7896efdeaca1b1bb6

See more details on using hashes here.

Provenance

File details

Details for the file pybluemonday-0.0.10-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pybluemonday-0.0.10-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f61dea3b807fe52c7b5a5816da56d888aed40095be41b83c90793700fbed1566
MD5 af5206d79bd8df0262b88ca1abfbd5f6
BLAKE2b-256 bb79ae0bd861dc0d27b3b8f9f31e61dc7cba3bf0485334a9c14a65f9919664bc

See more details on using hashes here.

Provenance

File details

Details for the file pybluemonday-0.0.10-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pybluemonday-0.0.10-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2a0dbcb0433e351c327044c61df133057a9eded904c91467cf7ef511a67c2ce2
MD5 183002c737d896cc196c60d84d1515ed
BLAKE2b-256 64ff61ea916504aa9a63532791b21c911970923c9d5b07d322e42a7d5dee61ab

See more details on using hashes here.

Provenance

File details

Details for the file pybluemonday-0.0.10-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: pybluemonday-0.0.10-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.8, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.9.6 requests/2.28.2 setuptools/47.1.0 requests-toolbelt/0.10.1 tqdm/4.65.0 CPython/3.7.16

File hashes

Hashes for pybluemonday-0.0.10-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d2e439a9c0eb2d7af5be06bc6ed26590ad4480778bab636ce0b86daa25e4c880
MD5 fccbb3f2a094be7149f950bf6b407689
BLAKE2b-256 854559bc0f8e341401acb4a5b3afbf4f12deb62f033e3c7538f87eefb1bcc6eb

See more details on using hashes here.

Provenance

File details

Details for the file pybluemonday-0.0.10-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: pybluemonday-0.0.10-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.9.6 requests/2.28.2 setuptools/47.1.0 requests-toolbelt/0.10.1 tqdm/4.65.0 CPython/3.7.9

File hashes

Hashes for pybluemonday-0.0.10-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 088be2ce9f066459bd6eace5ab0132b0058dd2a24f35d06dd6d6875a017de887
MD5 562fbcb1b1e30014510c78ca4094ac54
BLAKE2b-256 4d5f4469cd01bdd717cad3b6064f75753adbdd100026cb534ae06c64c72912e6

See more details on using hashes here.

Provenance

File details

Details for the file pybluemonday-0.0.10-cp37-cp37m-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: pybluemonday-0.0.10-cp37-cp37m-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.7m, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.9.6 requests/2.28.2 setuptools/47.1.0 requests-toolbelt/0.10.1 tqdm/4.65.0 CPython/3.7.16

File hashes

Hashes for pybluemonday-0.0.10-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 e7228f7e06fd54fe20a3de7a12af791c6434f8f2483c38b21a8598d104718ceb
MD5 dc64247add8da75523e5c6801eeba8fa
BLAKE2b-256 e9341686b2bd51f100b8680b6c61e2127c8fa93b9e4f1239915ababbe3ac9081

See more details on using hashes here.

Provenance

File details

Details for the file pybluemonday-0.0.10-cp37-cp37m-musllinux_1_1_i686.whl.

File metadata

  • Download URL: pybluemonday-0.0.10-cp37-cp37m-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.7m, musllinux: musl 1.1+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.9.6 requests/2.28.2 setuptools/47.1.0 requests-toolbelt/0.10.1 tqdm/4.65.0 CPython/3.7.16

File hashes

Hashes for pybluemonday-0.0.10-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 bb523da2d8de4286446efe8c41ef7080f744b0f5181420bdf0554c4c95dcf6e1
MD5 8cd3923e0228456153fe59280495f74e
BLAKE2b-256 bb43b295a1a5bb032095fa7b01acefb9a82a2620eabf54ffb05b27792e6769b7

See more details on using hashes here.

Provenance

File details

Details for the file pybluemonday-0.0.10-cp37-cp37m-musllinux_1_1_aarch64.whl.

File metadata

  • Download URL: pybluemonday-0.0.10-cp37-cp37m-musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.7m, musllinux: musl 1.1+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.9.6 requests/2.28.2 setuptools/47.1.0 requests-toolbelt/0.10.1 tqdm/4.65.0 CPython/3.7.16

File hashes

Hashes for pybluemonday-0.0.10-cp37-cp37m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 97317c980196cf0bab646a2fe4840749a5d01b5d09c1401f3da1a719d422d4cc
MD5 f68e9188bbdb1235d4bcff9b172ddfad
BLAKE2b-256 321495745365f9b52fb297f7738545271621af9cba48018393e55eb6c60d8270

See more details on using hashes here.

Provenance

File details

Details for the file pybluemonday-0.0.10-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pybluemonday-0.0.10-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4cef3e66aac21268b3eb9f4f8c37c1acbced0022169a52669ddaec86b9bb4a1c
MD5 3972298214e78eda47b34cc28b47ef08
BLAKE2b-256 6dd7a6484880a7e979789e3c49d2fb57fc518ef1e31a7c3e256334b1d473e471

See more details on using hashes here.

Provenance

File details

Details for the file pybluemonday-0.0.10-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pybluemonday-0.0.10-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c1621a66453d7a623c33317fc23669d734125753c246b0ece8f24538c4240498
MD5 b6019828c787e1b42dbe4f07b71df8f9
BLAKE2b-256 0faba042f5f723f333d25adf66d5ce2cafbce7e3d921126fa86e2ab2b0031f4e

See more details on using hashes here.

Provenance

File details

Details for the file pybluemonday-0.0.10-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pybluemonday-0.0.10-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 824924cc66d1963ffa9706595f4c3778faab24c5f8c3c9660131ea994fcce52a
MD5 3d61bf6bb9f15ccdfc022ee8f515c7a8
BLAKE2b-256 77cb3375e4c9aa4aed03104a2ecc5641837d72d9d64a9b19a2f027b548a20dd3

See more details on using hashes here.

Provenance

File details

Details for the file pybluemonday-0.0.10-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: pybluemonday-0.0.10-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.9.6 requests/2.28.2 setuptools/47.1.0 requests-toolbelt/0.10.1 tqdm/4.65.0 CPython/3.7.16

File hashes

Hashes for pybluemonday-0.0.10-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ce9a5899b12f6f490cdb68b9a1e88c66573b4c4ed0823a5c1d88e38ccc6e6d80
MD5 31a84af5439541982e707d3e80737eca
BLAKE2b-256 73a2b4686ca9ec97adbf850c26bdc87c71bab036aa7d1ba4d8df181764ed6f44

See more details on using hashes here.

Provenance

File details

Details for the file pybluemonday-0.0.10-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: pybluemonday-0.0.10-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.9.6 requests/2.28.2 setuptools/47.1.0 requests-toolbelt/0.10.1 tqdm/4.65.0 CPython/3.7.9

File hashes

Hashes for pybluemonday-0.0.10-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 bb659e428247942289b1f2608c257ba3117aedcf02c62752545153326c7211e4
MD5 b60c07dff6a2e5e444203100c20c33ba
BLAKE2b-256 1f08df949cacec79656dd1629d78cc3e491a572cb00c45caca10c47890bb867a

See more details on using hashes here.

Provenance

File details

Details for the file pybluemonday-0.0.10-cp36-cp36m-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: pybluemonday-0.0.10-cp36-cp36m-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.6m, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.9.6 requests/2.28.2 setuptools/47.1.0 requests-toolbelt/0.10.1 tqdm/4.65.0 CPython/3.7.16

File hashes

Hashes for pybluemonday-0.0.10-cp36-cp36m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 7db4e00b9a23eb724035559bb75980ada420ec117603a091d209ef24c3ac6d38
MD5 ff7ed71180b9672ad84eaee0e3823c1d
BLAKE2b-256 c37bb796a56e70eae8037d0c5c3cdbed2db2c57014f2c7b1bc4dabb135402ed6

See more details on using hashes here.

Provenance

File details

Details for the file pybluemonday-0.0.10-cp36-cp36m-musllinux_1_1_i686.whl.

File metadata

  • Download URL: pybluemonday-0.0.10-cp36-cp36m-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.6m, musllinux: musl 1.1+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.9.6 requests/2.28.2 setuptools/47.1.0 requests-toolbelt/0.10.1 tqdm/4.65.0 CPython/3.7.16

File hashes

Hashes for pybluemonday-0.0.10-cp36-cp36m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 0321de0f0805d6fae644ca08443afa191875b25dbdbfe490cce2126ed5432eec
MD5 726c3144a6063149fccdd308c8e4e3bf
BLAKE2b-256 1b8b151db68cc4a918bdc6aead53f61cc309ec06f2ecc1555c5a5a31e4d7b1f4

See more details on using hashes here.

Provenance

File details

Details for the file pybluemonday-0.0.10-cp36-cp36m-musllinux_1_1_aarch64.whl.

File metadata

  • Download URL: pybluemonday-0.0.10-cp36-cp36m-musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.6m, musllinux: musl 1.1+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.9.6 requests/2.28.2 setuptools/47.1.0 requests-toolbelt/0.10.1 tqdm/4.65.0 CPython/3.7.16

File hashes

Hashes for pybluemonday-0.0.10-cp36-cp36m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 2996f48c0a65a54a06a59025cd4563fce13077e0f3cc32039157c5209ff3aeb8
MD5 bc12344445e17f1dff8ba73cf5fd689b
BLAKE2b-256 f8ac20acd6f2340a283d447b9dd9b2bc76ecf6b0050e24eed99ce863aeec9cd6

See more details on using hashes here.

Provenance

File details

Details for the file pybluemonday-0.0.10-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pybluemonday-0.0.10-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f37c75798013089b7344d6f1354b7ed4f8f0468dff535815a4c37a558f0540bb
MD5 678dc622215f715c4b6697316d464786
BLAKE2b-256 5b23131df72b204ebed3973ffd106cf287698481ac9bf00d35facac1723cecac

See more details on using hashes here.

Provenance

File details

Details for the file pybluemonday-0.0.10-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pybluemonday-0.0.10-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 607bbe472bb58b5b42426b50afc8d3d5b87afca60a0462730f89c3e65071a481
MD5 ed108c22109efc3c46961c6b7a22506c
BLAKE2b-256 16c6be8bc4b917b8f140fa047d6772ec04fe879bc058aa7b71f3fc0bc2c67bc3

See more details on using hashes here.

Provenance

File details

Details for the file pybluemonday-0.0.10-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pybluemonday-0.0.10-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3212a8806d955b4278b89e2f44b9dfd46b953e91825a1619154e30f9b310f707
MD5 73df2a6fe41996c059decb176c944d57
BLAKE2b-256 59126e0f4850a46f821a558bbf1413d95499b8cbc02d3509e54da2e144b992dd

See more details on using hashes here.

Provenance

File details

Details for the file pybluemonday-0.0.10-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: pybluemonday-0.0.10-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.6m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.9.6 requests/2.28.2 setuptools/47.1.0 requests-toolbelt/0.10.1 tqdm/4.65.0 CPython/3.7.16

File hashes

Hashes for pybluemonday-0.0.10-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 64d42fb7165fde638b3b74ec2726484b471cdd42acf28b157e3d97ba13a46e3f
MD5 a93da7a164b7afda1b5110c9eca19989
BLAKE2b-256 2862525c7134940d4770fdf11c194b3bfc22cd9e322919e6ea647681c5db47b3

See more details on using hashes here.

Provenance

Supported by

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