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

Uploaded Source

Built Distributions

pybluemonday-0.0.9-pp38-pypy38_pp73-win_amd64.whl (1.9 MB view details)

Uploaded PyPy Windows x86-64

pybluemonday-0.0.9-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.9-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.9-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.9-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (2.2 MB view details)

Uploaded PyPy macOS 10.9+ x86-64

pybluemonday-0.0.9-pp37-pypy37_pp73-win_amd64.whl (1.9 MB view details)

Uploaded PyPy Windows x86-64

pybluemonday-0.0.9-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.9-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.9-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.9-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (2.2 MB view details)

Uploaded PyPy macOS 10.9+ x86-64

pybluemonday-0.0.9-cp310-cp310-win_amd64.whl (1.9 MB view details)

Uploaded CPython 3.10 Windows x86-64

pybluemonday-0.0.9-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.9-cp310-cp310-musllinux_1_1_i686.whl (2.0 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ i686

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

Uploaded CPython 3.10 musllinux: musl 1.1+ ARM64

pybluemonday-0.0.9-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.9-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.9-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.9-cp310-cp310-macosx_10_9_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

pybluemonday-0.0.9-cp39-cp39-win_amd64.whl (1.9 MB view details)

Uploaded CPython 3.9 Windows x86-64

pybluemonday-0.0.9-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.9-cp39-cp39-musllinux_1_1_i686.whl (2.0 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ i686

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

Uploaded CPython 3.9 musllinux: musl 1.1+ ARM64

pybluemonday-0.0.9-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.9-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.9-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.9-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.9-cp38-cp38-win_amd64.whl (1.9 MB view details)

Uploaded CPython 3.8 Windows x86-64

pybluemonday-0.0.9-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.9-cp38-cp38-musllinux_1_1_i686.whl (2.0 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ i686

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

Uploaded CPython 3.8 musllinux: musl 1.1+ ARM64

pybluemonday-0.0.9-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.9-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.9-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.9-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.9-cp37-cp37m-win_amd64.whl (1.9 MB view details)

Uploaded CPython 3.7m Windows x86-64

pybluemonday-0.0.9-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.9-cp37-cp37m-musllinux_1_1_i686.whl (2.0 MB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ i686

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

Uploaded CPython 3.7m musllinux: musl 1.1+ ARM64

pybluemonday-0.0.9-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.9-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.9-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.9-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.9-cp36-cp36m-win_amd64.whl (1.9 MB view details)

Uploaded CPython 3.6m Windows x86-64

pybluemonday-0.0.9-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.9-cp36-cp36m-musllinux_1_1_i686.whl (2.0 MB view details)

Uploaded CPython 3.6m musllinux: musl 1.1+ i686

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

Uploaded CPython 3.6m musllinux: musl 1.1+ ARM64

pybluemonday-0.0.9-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.9-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.9-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.9-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.9.tar.gz.

File metadata

  • Download URL: pybluemonday-0.0.9.tar.gz
  • Upload date:
  • Size: 8.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.8.2 requests/2.27.1 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.7.12

File hashes

Hashes for pybluemonday-0.0.9.tar.gz
Algorithm Hash digest
SHA256 7af21cf60b626600c9ff367305a4c20c6361857cf3a39b2eb2ab257cc823d179
MD5 c252c9d6af322828c70a5aa7432d7ff5
BLAKE2b-256 a231997832c30b7f9be81c17c84e829cc6a4476e037957a8189e8ac2b6f87707

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: pybluemonday-0.0.9-pp38-pypy38_pp73-win_amd64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: PyPy, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.8.2 requests/2.27.1 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.7.9

File hashes

Hashes for pybluemonday-0.0.9-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 81bdbd7595c8b4cf01737076e092258f88146af673965de7f05e39330244c3bf
MD5 e43a27a9d27c8963603c0dc480d6b37d
BLAKE2b-256 dd88652875c68edbbdba196973181255c2c55077975192cef27e9bc6d09380e7

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pybluemonday-0.0.9-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 095ef740e8d66336a0fde40996d35a7a2a831a99c3c7af7368e884d340496914
MD5 401187a8f0158aa79815bfab0b440e3f
BLAKE2b-256 2905d89f0ca8a011ed54cc91c37b7aa916733042cdf611547afc09bc6fa15c9e

See more details on using hashes here.

Provenance

File details

Details for the file pybluemonday-0.0.9-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.9-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 aa391ec02c95543d3363b5d4829902f9e57ecb1d448a9fb3404b660144888023
MD5 38a7418d6e588d6ebf6a57bbe8f9bb17
BLAKE2b-256 31c8004f1d3325ea640c6159558ec379d17d32cb41e3ed45893267a65a4ab16d

See more details on using hashes here.

Provenance

File details

Details for the file pybluemonday-0.0.9-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.9-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a33ed3ef2901a5f28cd89c29cf57b655be8b7a9771942600e3809ef4663bdf6a
MD5 a2ed0de4df0e53d41e1f14e3eb739313
BLAKE2b-256 0f45d82d0e04cdeac1d7f26fcd1f56733246e00daadc282668885ebbdaabadac

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: pybluemonday-0.0.9-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: PyPy, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.8.2 requests/2.27.1 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.7.12

File hashes

Hashes for pybluemonday-0.0.9-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d3c350645b1d77a396c6d78a5990c5de15838280e8d739e5839e57e4cbda9b29
MD5 efab9afb8de13a0de583a0ab95709a2d
BLAKE2b-256 ee98f1d0648d3502b665cf4a635448c69c41af71646de518b998ec0850b9ea80

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: pybluemonday-0.0.9-pp37-pypy37_pp73-win_amd64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: PyPy, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.8.2 requests/2.27.1 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.7.9

File hashes

Hashes for pybluemonday-0.0.9-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 9d31bfd6a4ef13d1546daece76e23c8f97c420bcb851470a328f805d7d9e9c22
MD5 142facfc2d2083d5919cc7e882eadda7
BLAKE2b-256 a1751715820455f8e411406361659ec11b5608cd71917c93d1f23fed55511610

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pybluemonday-0.0.9-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 74f2bd34393f9caf6609891036a22900fb99be1d456e91e6e6862cff81ca21c4
MD5 a007d626b459ca95197d944958f34462
BLAKE2b-256 15663aff6965ec22b41af031f9ac4d4aef5f0ce886776c2c3890ba1ea291dd0c

See more details on using hashes here.

Provenance

File details

Details for the file pybluemonday-0.0.9-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.9-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 68ddd4054439b1a62367ba8cd87ace650a1ebc164e9ed4af480043f0fefde08b
MD5 e78ef912108032d6268499fbbcb4e158
BLAKE2b-256 026f9875b053f68984871d368312e0b099252f0bf2f74cda3ab31086410267ac

See more details on using hashes here.

Provenance

File details

Details for the file pybluemonday-0.0.9-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.9-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9f83b7f155a3443c80740a854e2304355e9e211ca2866f7035405833bf7d21e6
MD5 98a18ba07c57121d16fa11e818813953
BLAKE2b-256 3822a3b4af903c65005d00f2b17b41852009b537e89a07d2c98481e583a1f793

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: pybluemonday-0.0.9-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: PyPy, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.8.2 requests/2.27.1 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.7.12

File hashes

Hashes for pybluemonday-0.0.9-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d99a97f5b2e2f9b181771c3a1b311c61f196ec5f868bc1e0c7eb5e340a7a3c8c
MD5 af5dfc9a6bdb54114b8141a7f9cabd2c
BLAKE2b-256 40ea2cd72f54d49263b4640dd0006cdd2c3f8c912881407aaafdd27d9ffc3862

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: pybluemonday-0.0.9-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.8.2 requests/2.27.1 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.7.9

File hashes

Hashes for pybluemonday-0.0.9-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 16452040d0a7f94a6f9b0f7b61c3dc8871f5c3e45cca4671e902c4aa4e45fd9f
MD5 325e6420d705c6833eac879438813d8a
BLAKE2b-256 8cd36ac3871f6dc5f4e4f8ead4e250f48bb34207beb7fafa00cf1baa16b84b00

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: pybluemonday-0.0.9-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.8.2 requests/2.27.1 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.7.12

File hashes

Hashes for pybluemonday-0.0.9-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 945e3ae9970c581f005c23376018853bbd972fb4cf2365836fefb3bcaac09226
MD5 d3f245ae43d714b1685b4382fcf387c9
BLAKE2b-256 faca8827182f5b73af20999295552b94807c4cf9bdd948064c0bb652023fff0b

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: pybluemonday-0.0.9-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.8.2 requests/2.27.1 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.7.12

File hashes

Hashes for pybluemonday-0.0.9-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 754dce73050420284fd8b858c07b3df7c2632164fa1a9a86dad0d8189a426328
MD5 e7a52a38e3a630008792a7669f7a1a5d
BLAKE2b-256 e0b902c1130a0778eb75c57f56dd3c54f9305e7aafb43ae848b95952ccfca257

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: pybluemonday-0.0.9-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.8.2 requests/2.27.1 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.7.12

File hashes

Hashes for pybluemonday-0.0.9-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 476b921b8f88450397832c10731eb3c3bcee4a8c1dcc1f146c1aac0b1b00ed25
MD5 3e08c26b1506cd3d229d6ca6fd4a0850
BLAKE2b-256 d4c4ad265fe8d9d552dff19811520ddc28e42110c7f83efe2b2b4dccf27b9649

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pybluemonday-0.0.9-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cbb8f0851aa996b8483dcf763c0a203edb08b01f16388ce2a022594cb95cfb03
MD5 fd78b48407cd41b03df5fb4325fad77f
BLAKE2b-256 ce70e7af4c87f47ceee34b597bde2fa7d3b897d91aaaf6a481898f453b1083fa

See more details on using hashes here.

Provenance

File details

Details for the file pybluemonday-0.0.9-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.9-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 03cf32976233cb0e8e2b2d2c6ec3136031aa9ea1a61fd04b1b472f66acc02fda
MD5 aa7e2c7e8bb6c26f6c0c0de3c7c872ad
BLAKE2b-256 801b7ead8fdfad68773d5011beb10e0a4a95ed1130a82aca97238cd9b6ca5ddf

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pybluemonday-0.0.9-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f2bd9488fa57d3c1a628ec07e50163164903bd1030aa9fbda3bb1c29ecf19cee
MD5 ebc372a7698be2d3c3d20ef288b60a59
BLAKE2b-256 100bec153cf1bddbdf890587ecdb97222f06d13223310bafaded0e4adec7c6c5

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: pybluemonday-0.0.9-cp310-cp310-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.10, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.8.2 requests/2.27.1 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.7.12

File hashes

Hashes for pybluemonday-0.0.9-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 af90a4a3c53224f73bf7575cf7341484fe336ec47500d095597f4f60b6a5f531
MD5 070677b5beb3740b16bbad933e1a6c3c
BLAKE2b-256 7fe6cb030d678698497b0e52ac978dd335eda168aeca9e9b11ce7f5ad8404a65

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: pybluemonday-0.0.9-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.8.2 requests/2.27.1 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.7.9

File hashes

Hashes for pybluemonday-0.0.9-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 f565620ebb69064c2ca852df5ffb579d8d8a94f1151f37454b8a32b7c52e115b
MD5 d4c34ff297ef286dcc7d6c30117108e7
BLAKE2b-256 f9e2ffd5a74c5266a2a328d418514b350a1f91d375e4392532346f065c0243e9

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: pybluemonday-0.0.9-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.8.2 requests/2.27.1 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.7.12

File hashes

Hashes for pybluemonday-0.0.9-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 253072ec665f02a1e29aafe5d7ca2a5ded7fd14165bb00f034be32bfb7e08609
MD5 3ddc0eedb8cac61f748bb11a5c27c03e
BLAKE2b-256 f7c227913e7f9f6ebde5a3e2780212d0c17d12a2210650fa52c7ef8000c4244c

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: pybluemonday-0.0.9-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.8.2 requests/2.27.1 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.7.12

File hashes

Hashes for pybluemonday-0.0.9-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 d2616e23d89797d63e0e05429da48e6338b746af499fc3d5ed28f5ce7acb37f6
MD5 80550f642741175103aa3437e94a59ed
BLAKE2b-256 244ed4ce81b637796b64e4092a45849f433d062e6244cc2124a53f7fb791a470

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: pybluemonday-0.0.9-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.8.2 requests/2.27.1 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.7.12

File hashes

Hashes for pybluemonday-0.0.9-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 7cdf13b78632193aa6ba0ccc6cbae4d5cce1b7280515c269de650af95cec2c0f
MD5 fe10f2e2168997bc3390918c22a53fbb
BLAKE2b-256 b5888701086d8bee2d7653c76bd2dec329157fe91d7162c6192c29e5e422766d

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pybluemonday-0.0.9-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 96f8a0c7f9995e6d4687fdeeb0094edb7088abab6de84e805b274ea402209701
MD5 8f970e8f6b38dee0f74755989a311ced
BLAKE2b-256 99f012fa786bdb0104c96678bfd1d3c19d6be34d72260dace78f4c47859ea1b0

See more details on using hashes here.

Provenance

File details

Details for the file pybluemonday-0.0.9-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.9-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a32d9f9b1386cdfc2e46169058fc7087980665b95bfb73cd4d5d56c06f4ba766
MD5 6c7d8713e659a9bd511b8fb37c466a5c
BLAKE2b-256 06509d9e1ff554d1a84fe0f071943916e29cffe05e22a23eac27de1ce943c1a6

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pybluemonday-0.0.9-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0192f949d1caba6112336b18e891edf527880dd5ef27647f89048c11c8ed1262
MD5 30cac4a4d614ddc829f2163e076a0a7a
BLAKE2b-256 f4ebf0e2adf210eae6c2a88ba09b1c5866e0b4ea341901213bb0d1ffdf24f6c5

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: pybluemonday-0.0.9-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.8.2 requests/2.27.1 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.7.12

File hashes

Hashes for pybluemonday-0.0.9-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8bae6f696af6c3d1f9c9f1f5aa279a7a613b583c64a0c6e34cca04d1f84ba6bb
MD5 b0b3f6b38bf292e4772eec9be8a2a042
BLAKE2b-256 faf2a3e6d61441a829776e3fcb39458b652ffd3915df0a3187e0409bae46690a

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: pybluemonday-0.0.9-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.8.2 requests/2.27.1 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.7.9

File hashes

Hashes for pybluemonday-0.0.9-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 5f02d1ab2182ed0fdea0266011a681ea4f0bcbb2d73432ec0ec168bc2b7705b6
MD5 83af4eba960d381431eedf9150a0ce28
BLAKE2b-256 ad7b729ff635c1d91d2bc345585531a85c20cdff5acb95dd2429683877bff4f5

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: pybluemonday-0.0.9-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.8.2 requests/2.27.1 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.7.12

File hashes

Hashes for pybluemonday-0.0.9-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 2904e96e31d19832e7182dd587048dc94548a0b0e476161fb506fd399ab8717a
MD5 dd1cdfba6c91688c090829a866bd1d19
BLAKE2b-256 077515a4b3b28ce7c177a65f8f55ac58219dff2f53ca1648e9905cc061eeffa6

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: pybluemonday-0.0.9-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.8.2 requests/2.27.1 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.7.12

File hashes

Hashes for pybluemonday-0.0.9-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 fa8ef0ffe14eb3621c4be08e28af9ef36942f7bd4b38d74f95d9fa34b88c2bb7
MD5 392fdaa93548e89739d577d401db3b13
BLAKE2b-256 0803c0495a730424291b2062abb757587056757c274d1972e16842f9a99dc685

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: pybluemonday-0.0.9-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.8.2 requests/2.27.1 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.7.12

File hashes

Hashes for pybluemonday-0.0.9-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 b3eff3179d9e79dade68ea0a35470e1a8fc2e1c8f9b0d8f9a7b1f0f1747faad8
MD5 03d13d086e14a638365cc0a48cf4d51a
BLAKE2b-256 a6a1db69fef3b99de33a1da569d41beb0179b679a00a86aba1bc65f1b7e60e9c

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pybluemonday-0.0.9-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a0ed96bd4780840d7e186b37f1b994800d45f4167bc0a533fd39b8de8a12bf44
MD5 20259bdcabb3093294b68fd07fc2ffb1
BLAKE2b-256 96c106ab6fe7ab55912c1a3ee0c3015a8551e4685d4e525047191a9bc499d190

See more details on using hashes here.

Provenance

File details

Details for the file pybluemonday-0.0.9-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.9-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 07f0ca6f0084dc8739c1c53197fbec338c8c76d0129d38196a1a9b8f1fd85f0e
MD5 1509d83e38c58eaf566a07b55fab51cc
BLAKE2b-256 62babae9e9891d38632fb9d084e8389711ee6d9e7216cf6fb4b2880f30d9a0ff

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pybluemonday-0.0.9-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 af87253f8525371de9edb5f1912be0052d577b8fd2fa2dc7d1f9bd8cc1b4ec9d
MD5 85cf19591e8372136b6f023382676290
BLAKE2b-256 9f674d929058b40de5fa8a245379decb22c8797c3c09492e0da5a0a2b8bba48f

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: pybluemonday-0.0.9-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.8.2 requests/2.27.1 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.7.12

File hashes

Hashes for pybluemonday-0.0.9-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 fd8edb0590e8fe50fc35348c28165663493e90710488739d95974ae9cb453571
MD5 5cec2af5b7637a3a5d8d30feb98c9249
BLAKE2b-256 c78056127d1cfb315818a87c323cb905fcf9b44cbef0fcf5545d44bbc20bd9b3

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: pybluemonday-0.0.9-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.8.2 requests/2.27.1 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.7.9

File hashes

Hashes for pybluemonday-0.0.9-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 215530ed0197fdaf207e47cddd14dc1d4c91b7419d352f86559cdf8137bee6f2
MD5 e31bf4ffa8e2a92b5c56b7c3ce452e66
BLAKE2b-256 3e1b90d1d55379b020a3e07afe6565027ad2bf95840414e12d3699ee5d9bf7f7

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: pybluemonday-0.0.9-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.8.2 requests/2.27.1 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.7.12

File hashes

Hashes for pybluemonday-0.0.9-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 39c1066ed6197f12fa60e74d0a546fb215dbb8d70088989cd5651ec3d87f8daf
MD5 9a404ae579d8e0562ad39979f0ed2fe3
BLAKE2b-256 d4c3f20158dd19048040fbbeaf860099e121cee3323973482e95a678ff32f426

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: pybluemonday-0.0.9-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.8.2 requests/2.27.1 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.7.12

File hashes

Hashes for pybluemonday-0.0.9-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 8e26b0fd8d3a402a035d8b70084693a70a5ae5110592668e37dbf73850a31b7e
MD5 3425e2f1c1c48f9d3cc103413fef6718
BLAKE2b-256 a98d770e39f3c04fc7aca77e273a849f49fa2064a3ac32045b24e6e9a4ab45fe

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: pybluemonday-0.0.9-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.8.2 requests/2.27.1 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.7.12

File hashes

Hashes for pybluemonday-0.0.9-cp37-cp37m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 8256e93d831fe7e1016c9c94121e3d102febf94bddf7a1206dac1349398c4674
MD5 44e986cfd9e2d70d0f6a4a9adb3c65be
BLAKE2b-256 69822f77793472eb3c7146673cb6fe787a9f15c8cff9a2d39cbc5f5259ee56f9

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pybluemonday-0.0.9-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a4fddd457c3702ce3dad489c5d2dacba0fb6a6a16f882497e51ce6c976ee6db4
MD5 e1d7647a2186cb2433dea63de1704afc
BLAKE2b-256 a44a268fe86e427c7d42d46489671e335018643c9047ae3b20801f95bca5c265

See more details on using hashes here.

Provenance

File details

Details for the file pybluemonday-0.0.9-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.9-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 807299d20e83766b81678dea8407a21976f1b01c6d50d3addb84df5729bff24c
MD5 1169de85b1f11be886d5506a7a10deb0
BLAKE2b-256 b9294df01df1b2b613c59828384b41dae2ce65ca1cfa7b156def8b3eab8a1ca1

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pybluemonday-0.0.9-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8ec384479df5f18ce9879ababa4ef19633909e219cbd39550224222f76ecc8c1
MD5 d5e17478864f9abbab4a41c4f8043a0a
BLAKE2b-256 a8c615491c5e37f159ba157ee42af623c141769aeb0b64e15605a1cc24888ac3

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: pybluemonday-0.0.9-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.8.2 requests/2.27.1 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.7.12

File hashes

Hashes for pybluemonday-0.0.9-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 cb85245079bd9404d151ebec46afe71b37b359566f4bf6194da9b20e0931191f
MD5 c925a977961ba886bef6e78e7b3521eb
BLAKE2b-256 6e30dddd2cf7464c29f1ba3819def174a5807f0b0855fc107d6450aa08a79bd2

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: pybluemonday-0.0.9-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.8.2 requests/2.27.1 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.7.9

File hashes

Hashes for pybluemonday-0.0.9-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 7ca64765a240ad8b23f0c3d390e92a58ee3153671b716aad04d5486ca10c54f7
MD5 00607ea5ff1e15b8ef3d488db7f487b7
BLAKE2b-256 b5265e094af46d37e00e34279f8440570c19f7832b997556dcbb784e87f30a11

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: pybluemonday-0.0.9-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.8.2 requests/2.27.1 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.7.12

File hashes

Hashes for pybluemonday-0.0.9-cp36-cp36m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 e7e826626d3a5406cf0e5c3a66223fc0ad38bfd828b0e2a09bc55de81e0e1ceb
MD5 94507ceea02e2ddd68d104bbf2cf2bb0
BLAKE2b-256 4f678acc9c226884a5917b0ace971a37c7a7a64b5a198184b6dca474f9214fbc

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: pybluemonday-0.0.9-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.8.2 requests/2.27.1 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.7.12

File hashes

Hashes for pybluemonday-0.0.9-cp36-cp36m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 66f885bc6f2a00f5bb16209b27d0a33782f8081f5161fe49b002809ae26a67f5
MD5 c3ccfd8713e9a76a898a595b30ba5a89
BLAKE2b-256 a43d5ddc1066506f8c5f11c9e789af573bc300883c44b9f6b340f93b88fcb58a

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: pybluemonday-0.0.9-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.8.2 requests/2.27.1 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.7.12

File hashes

Hashes for pybluemonday-0.0.9-cp36-cp36m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 b0642486d21e36fbb6df3a4bc7380c618fc75186035f97faefa2beff10d47189
MD5 9193ef96ffe139c02dc194dd766cec73
BLAKE2b-256 469ab7b1425caab0014082c7c15b2a7ce6835e0eeb51fb0595a97f65938a14fc

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pybluemonday-0.0.9-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ce63af98bbef771f0990b2aba5c544203ec827f0925491529e108c45fc636be6
MD5 b9b1466fc3f4fc535d4b748727a399aa
BLAKE2b-256 9304aa543fee695d02b1dca6987b9358956e18cfda26ad47eae79e5c7e760525

See more details on using hashes here.

Provenance

File details

Details for the file pybluemonday-0.0.9-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.9-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e67bd1b5c37270a89b23a9eca8a46432bfd99fc7f9569eeecdf26234f625bc04
MD5 452dad39cace77d7666aba5611fe4215
BLAKE2b-256 4958872f531b1181aa8377f674e0c16f8158f8d8703d679d5f7e0033b7e08c0f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pybluemonday-0.0.9-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ddddee5e0f14f716dc89944f2107a74bc83029f942f4f31e20c884ce84349fb4
MD5 7b50c2260b46a4ce8c0c1c01c095890d
BLAKE2b-256 1eec6ebcc46773e69994991332e845e9bb6f6ad2f007b147fd73170bbdcc4f14

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: pybluemonday-0.0.9-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.8.2 requests/2.27.1 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.7.12

File hashes

Hashes for pybluemonday-0.0.9-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 fa258d1a6b1239d6b8bba864dead1e70205d761370a9a8d969a288546c99f1eb
MD5 84c87c8f372ebafbf7c158ccd0ef805a
BLAKE2b-256 55fc81244f824c9d9e819948ecd953d2c76deabbac3b56b2519b9c2ccb2d15f2

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