Skip to main content

Utility functions to manipulate and compute metrics on boxes

Project description

CI Coverage pypi versions

PowerBoxes

Powerboxes is a package containing utility functions for transforming bounding boxes and computing metrics. It is implemented in both Python and Rust. It shows a significant speedup over the equivalent numpy implementations in Python, or other libraries such as shapely or torchvision.

Documentation

Installation

pip install powerboxes

Usage

import powerboxes as pb
import numpy as np

boxes = np.array([[0, 0, 1, 1], [2, 2, 3, 3]], dtype=np.float64)

# Compute areas
areas = pb.box_areas(boxes)

# Compute IoU distance matrix
iou = pb.iou_distance(boxes, boxes)

# Draw boxes on an image (CHW format, uint8)
image = np.zeros((3, 100, 100), dtype=np.uint8)
draw_boxes = np.array([[10.0, 10.0, 50.0, 50.0]])
result = pb.draw_boxes(image, draw_boxes, filled=True, opacity=0.35)

# Draw rotated boxes in cxcywha format
rotated_boxes = np.array([[50.0, 50.0, 30.0, 20.0, 30.0]])
rotated = pb.draw_rotated_boxes(image, rotated_boxes)

For more details, see the full documentation or the GitHub repository.

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

powerboxes-0.3.1.tar.gz (550.5 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

powerboxes-0.3.1-cp313-cp313-win_amd64.whl (415.2 kB view details)

Uploaded CPython 3.13Windows x86-64

powerboxes-0.3.1-cp313-cp313-win32.whl (411.0 kB view details)

Uploaded CPython 3.13Windows x86

powerboxes-0.3.1-cp313-cp313-musllinux_1_1_x86_64.whl (826.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ x86-64

powerboxes-0.3.1-cp313-cp313-musllinux_1_1_aarch64.whl (767.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ ARM64

powerboxes-0.3.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (605.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

powerboxes-0.3.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (628.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

powerboxes-0.3.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (750.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

powerboxes-0.3.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (670.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

powerboxes-0.3.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (610.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

powerboxes-0.3.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (590.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

powerboxes-0.3.1-cp313-cp313-macosx_11_0_arm64.whl (528.9 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

powerboxes-0.3.1-cp313-cp313-macosx_10_12_x86_64.whl (559.2 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

powerboxes-0.3.1-cp312-cp312-win_amd64.whl (413.0 kB view details)

Uploaded CPython 3.12Windows x86-64

powerboxes-0.3.1-cp312-cp312-win32.whl (411.5 kB view details)

Uploaded CPython 3.12Windows x86

powerboxes-0.3.1-cp312-cp312-musllinux_1_1_x86_64.whl (826.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ x86-64

powerboxes-0.3.1-cp312-cp312-musllinux_1_1_aarch64.whl (767.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ ARM64

powerboxes-0.3.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (605.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

powerboxes-0.3.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (628.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

powerboxes-0.3.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (751.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

powerboxes-0.3.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (670.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

powerboxes-0.3.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (610.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

powerboxes-0.3.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (590.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

powerboxes-0.3.1-cp312-cp312-macosx_11_0_arm64.whl (527.7 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

powerboxes-0.3.1-cp312-cp312-macosx_10_12_x86_64.whl (559.5 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

powerboxes-0.3.1-cp311-cp311-win_amd64.whl (417.7 kB view details)

Uploaded CPython 3.11Windows x86-64

powerboxes-0.3.1-cp311-cp311-win32.whl (414.1 kB view details)

Uploaded CPython 3.11Windows x86

powerboxes-0.3.1-cp311-cp311-musllinux_1_1_x86_64.whl (830.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ x86-64

powerboxes-0.3.1-cp311-cp311-musllinux_1_1_aarch64.whl (770.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

powerboxes-0.3.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (607.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

powerboxes-0.3.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (633.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

powerboxes-0.3.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (754.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

powerboxes-0.3.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (676.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

powerboxes-0.3.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (613.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

powerboxes-0.3.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (594.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

powerboxes-0.3.1-cp311-cp311-macosx_11_0_arm64.whl (530.4 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

powerboxes-0.3.1-cp311-cp311-macosx_10_12_x86_64.whl (574.5 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

powerboxes-0.3.1-cp310-cp310-win_amd64.whl (416.7 kB view details)

Uploaded CPython 3.10Windows x86-64

powerboxes-0.3.1-cp310-cp310-win32.whl (414.0 kB view details)

Uploaded CPython 3.10Windows x86

powerboxes-0.3.1-cp310-cp310-musllinux_1_1_x86_64.whl (830.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

powerboxes-0.3.1-cp310-cp310-musllinux_1_1_aarch64.whl (770.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

powerboxes-0.3.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (608.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

powerboxes-0.3.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (633.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

powerboxes-0.3.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (752.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

powerboxes-0.3.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (675.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

powerboxes-0.3.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (613.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

powerboxes-0.3.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (593.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

powerboxes-0.3.1-cp310-cp310-macosx_11_0_arm64.whl (531.1 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

powerboxes-0.3.1-cp310-cp310-macosx_10_12_x86_64.whl (574.2 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

powerboxes-0.3.1-cp39-cp39-win_amd64.whl (418.7 kB view details)

Uploaded CPython 3.9Windows x86-64

powerboxes-0.3.1-cp39-cp39-win32.whl (415.8 kB view details)

Uploaded CPython 3.9Windows x86

powerboxes-0.3.1-cp39-cp39-musllinux_1_1_x86_64.whl (831.6 kB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ x86-64

powerboxes-0.3.1-cp39-cp39-musllinux_1_1_aarch64.whl (771.8 kB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ ARM64

powerboxes-0.3.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (609.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

powerboxes-0.3.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (634.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

powerboxes-0.3.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (754.0 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

powerboxes-0.3.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (678.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

powerboxes-0.3.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (615.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

powerboxes-0.3.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (595.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

powerboxes-0.3.1-cp39-cp39-macosx_11_0_arm64.whl (535.8 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

powerboxes-0.3.1-cp39-cp39-macosx_10_12_x86_64.whl (576.7 kB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

File details

Details for the file powerboxes-0.3.1.tar.gz.

File metadata

  • Download URL: powerboxes-0.3.1.tar.gz
  • Upload date:
  • Size: 550.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.12

File hashes

Hashes for powerboxes-0.3.1.tar.gz
Algorithm Hash digest
SHA256 84a30386c6c16ed8de227ede3d654c6dc423e22f960e6401def5ca84259a94a5
MD5 aed5a839ae314c90e3294b53016753e7
BLAKE2b-256 27fe6a990d45213af84f4a0f3080d07bbac4aeee92df693e79a94f7949eefdba

See more details on using hashes here.

File details

Details for the file powerboxes-0.3.1-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: powerboxes-0.3.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 415.2 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.12

File hashes

Hashes for powerboxes-0.3.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 b92e3a912b8e854475bb4bbe38988458832aafa502c7c470f89b57a863f0ecb1
MD5 84603855da41b7c05f648fc7aa35fb11
BLAKE2b-256 fd829407382b3dfebbd81850b7c868b2fa55127983278ad3d364b1ef2b62f84e

See more details on using hashes here.

File details

Details for the file powerboxes-0.3.1-cp313-cp313-win32.whl.

File metadata

  • Download URL: powerboxes-0.3.1-cp313-cp313-win32.whl
  • Upload date:
  • Size: 411.0 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.12

File hashes

Hashes for powerboxes-0.3.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 7f8d0385588fdd47db38640e0af7b6b4c903c3785ab5e6775e27c4cf9b9b2b93
MD5 abf446d629fe74b762e70e6371fe6e17
BLAKE2b-256 b59c9bbd8350fc304e8efac9449f08e2b54da999f41a61da2ecb57c4419449c4

See more details on using hashes here.

File details

Details for the file powerboxes-0.3.1-cp313-cp313-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for powerboxes-0.3.1-cp313-cp313-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 2e28a5d910d75651643dc4170dbf0f9424a2c609ec680ee383f374f768bbc2bc
MD5 65a1832cf3017f7ea9e8a26351ad9e63
BLAKE2b-256 f597d700d4f21ba60f2fc8c19779aeed9530d4d9ed3d620155d138f96dba501e

See more details on using hashes here.

File details

Details for the file powerboxes-0.3.1-cp313-cp313-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for powerboxes-0.3.1-cp313-cp313-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 795e6498d67e02a67698c4b4abba1c02f0320aa08a901d1fc3398a5c266406f8
MD5 a765e1f2c49f4b9124e5007adc1d37cf
BLAKE2b-256 8097d3ff7084320b0f9462253bc1b7c388a9b955348b55fcb44cfdba89dd5c20

See more details on using hashes here.

File details

Details for the file powerboxes-0.3.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for powerboxes-0.3.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 074701d0e77bb66f47bc030ea4793e3b1f51c9e7350d01ae06ebdb2b18b1d158
MD5 cb92607145132c3a776f5cbf4563d239
BLAKE2b-256 f5a34fa68668809e60d45579a1e5a03367fc5049a5d678a46187a3ab267f1016

See more details on using hashes here.

File details

Details for the file powerboxes-0.3.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for powerboxes-0.3.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 cd864fe6ba7f1c208b86e0dd887882807ce019811706c32e2eff383c8fe7c4c0
MD5 b43125b9d0d9517237eb9e2275d72057
BLAKE2b-256 a3d60edd0339fb86479b4e0dea9cf3c35371263737c6a3d4bea0d46858bed3dd

See more details on using hashes here.

File details

Details for the file powerboxes-0.3.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for powerboxes-0.3.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4c531e4a9e07e861c48f775ce23aed075c1cd5a9ab3717ac29a50cb1475d13d7
MD5 f95cfd6a498d16491f196c37b5f18847
BLAKE2b-256 cc2c008d191a82d4ad9c7f09851054f1021afcbfda0398ba7ee35e42a9599988

See more details on using hashes here.

File details

Details for the file powerboxes-0.3.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for powerboxes-0.3.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 88225125519c9e36953af4bee811b813faf1908e3ad24d146f0d6c561cac4c76
MD5 a2c80205b987b1b305956b260277e1f3
BLAKE2b-256 0b1a855b5ffd716aa257438f73f99301fbc53819679f60a9a77bc4f6ee9cc8f2

See more details on using hashes here.

File details

Details for the file powerboxes-0.3.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for powerboxes-0.3.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d2a1c7a9d9adc027277b1467d25c820bc249369a80ed0dbecebeaf315c153142
MD5 702167d6cf59f3620ef94efbb9a43d7b
BLAKE2b-256 0fa3f09f2f528b3f1c8af0675714653b9fa83c96caebdcb93482b31f47fda2e0

See more details on using hashes here.

File details

Details for the file powerboxes-0.3.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for powerboxes-0.3.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f265863a8b36aec9d1224fdbe4ef884e97c990d410bb3d9e16104667db11788e
MD5 730ac0ed9c7a650dafeb5b3c8f470abe
BLAKE2b-256 5f08a5ca14213c0b09daf19aa7235321097727c26aea7587591ab2d17691391d

See more details on using hashes here.

File details

Details for the file powerboxes-0.3.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for powerboxes-0.3.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6fd1662854c2227bf9d96e676d99bbe698cab0b364d99eb65453576f823386b1
MD5 5ce44402f58fb3b651286c4e26a1c0a8
BLAKE2b-256 8eb02408b4af423016f8a1d0bf6b04235fe21c373a814ef6e459de3f08b80b83

See more details on using hashes here.

File details

Details for the file powerboxes-0.3.1-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for powerboxes-0.3.1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 759820c4ef5e209c052c47cf7ce6275ca4298a63a283cccaf91505372143c865
MD5 b717c62a27012dfb94d2230b013b0c30
BLAKE2b-256 8d31120477d5ae1becc3438b2e24bd2053114dd03179e370519d6726edf1d010

See more details on using hashes here.

File details

Details for the file powerboxes-0.3.1-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: powerboxes-0.3.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 413.0 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.12

File hashes

Hashes for powerboxes-0.3.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 a2bb4bc353375f071c389c562b40ab80b736677a87d7af599041b70ed6f42e3b
MD5 20e99079993ede62cbe2e3b6bbd9dbb6
BLAKE2b-256 d7543fa806d0ae62b473bafa496a4253aa3d3a93b91d64615f5c0f988f35cf5d

See more details on using hashes here.

File details

Details for the file powerboxes-0.3.1-cp312-cp312-win32.whl.

File metadata

  • Download URL: powerboxes-0.3.1-cp312-cp312-win32.whl
  • Upload date:
  • Size: 411.5 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.12

File hashes

Hashes for powerboxes-0.3.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 261e7cbc981001c59c72e68d36f898621087024edc0891d6959bc8048e276cd2
MD5 4fd4756a2d49b3eef2ce9068151a0977
BLAKE2b-256 6ee35a859d0fb6f69819cda3c45a943acab1d4c6c9ec5f66a02e76b6ba5a6516

See more details on using hashes here.

File details

Details for the file powerboxes-0.3.1-cp312-cp312-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for powerboxes-0.3.1-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 c20656151734e582ad8b33ed8e03ceaf9a063ca88f725cf379068c5a96424b46
MD5 f6c3e8c63e280381fe8506f5825923e6
BLAKE2b-256 e64c1b2556ef740f7720720a448c17f78c33ef2cca53e49288ebfc768e800b48

See more details on using hashes here.

File details

Details for the file powerboxes-0.3.1-cp312-cp312-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for powerboxes-0.3.1-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 89903fe01b132318f67c7d6dcdc8224abd6f47ae99459bae21b33e1e0196dace
MD5 85c37971ae7bdf2ae7bcdab250b41aec
BLAKE2b-256 1ad33b6ad828f8e22bff93beb61043fd2467f865e71c5faf56fec2e402a8d7a5

See more details on using hashes here.

File details

Details for the file powerboxes-0.3.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for powerboxes-0.3.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 841e265eb062252b58222bffb781a19bb3b87d0e301805da78f5d481f5fe554e
MD5 f7d9b5118a2e7887d8f831c8ee3beff8
BLAKE2b-256 2bb55565a48b74e6dc48103bbe6c256e310483d18797534cb2438eced608054e

See more details on using hashes here.

File details

Details for the file powerboxes-0.3.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for powerboxes-0.3.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 54c3295a843a4296dd94a149fd67663ad7651fb5e1821a8542ea47fbabaa6ec1
MD5 68c11677785e004f79d1ac785f215981
BLAKE2b-256 7e07b3576b3d13b5573354b1bccac747e81488a53c380988bdab733c718c989f

See more details on using hashes here.

File details

Details for the file powerboxes-0.3.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for powerboxes-0.3.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 120c939771e92816f74ec9b0af17498cb8e0cea50109d1df03a5c55ec1539e8b
MD5 6825276834b1c2b619e62f86ffbc2537
BLAKE2b-256 eb674786fd73acb9431eb14499a323dbd9bb9f60eb81088fcbe67d77c4a63c55

See more details on using hashes here.

File details

Details for the file powerboxes-0.3.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for powerboxes-0.3.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b6ffd6ea1f3a6a0cc864bd946a2e58c3e84ca6fa5af4e89a074ca350afe7b3ad
MD5 45325132008aa3b04e65e5c0dc3f393b
BLAKE2b-256 d92e349372c28a81cd03e848cb12e987d231fd015ad9f5f6cdfeb9e00b910ac1

See more details on using hashes here.

File details

Details for the file powerboxes-0.3.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for powerboxes-0.3.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 32e34883d461ad059a66e84a6cf93c51f1064832c96bb60c7085c6bd138b08f1
MD5 fe606ae89feedddf647edb2f74e53d3c
BLAKE2b-256 4f9cfbee7caade6f68b76668fab62d4b5bd043860cf92cf90f75f711c62d7088

See more details on using hashes here.

File details

Details for the file powerboxes-0.3.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for powerboxes-0.3.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3f511ab4e122b3fd004c3b51f0d3ad5b0076337c5a0e82c1f9dd04baa655c4b0
MD5 0e79df98fa059328ca410c08074e1fa6
BLAKE2b-256 d6b606fc69500aa3f89693622e19d626cd08b842e6f78fd9b90607a29fbdd3d7

See more details on using hashes here.

File details

Details for the file powerboxes-0.3.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for powerboxes-0.3.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 77a379325c8494c032c19cf5203d4f1136e68514cc14c8abb0c008af689c485b
MD5 7928d9011cfa7a87d4ff67006009a5a9
BLAKE2b-256 905a743ffb049b7043a4a0548f35f7b39cbd20cd975bfb263b5740625226bea2

See more details on using hashes here.

File details

Details for the file powerboxes-0.3.1-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for powerboxes-0.3.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3f1d1ac10872efb2ddef25c9a0f8ff58494a056154cb8ed7ac79a8ff303618d0
MD5 7e9c09b3cc1feec1c041b7998afebc44
BLAKE2b-256 ac736f5a796bb73ddc2d374cdae524ba79ce840e300c6c9cf4895fc4f15d1237

See more details on using hashes here.

File details

Details for the file powerboxes-0.3.1-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: powerboxes-0.3.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 417.7 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.12

File hashes

Hashes for powerboxes-0.3.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 e07744859f37c88e6a8e7ffdcc58c4f403d0b9c47334a25ec635be6e1be856b2
MD5 20e6d174da8f1362e115cae90cd2d8f0
BLAKE2b-256 495e6324f80d07f3b86e4815b8e4604eb3a9ef80d8d8ffbbbf90b4c887cc85a2

See more details on using hashes here.

File details

Details for the file powerboxes-0.3.1-cp311-cp311-win32.whl.

File metadata

  • Download URL: powerboxes-0.3.1-cp311-cp311-win32.whl
  • Upload date:
  • Size: 414.1 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.12

File hashes

Hashes for powerboxes-0.3.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 e7a0cf9c0180ba0fc81bb50782d17b4d94108f4e775f2a40a32f7fb0872535bc
MD5 0a56a79f8b4b430c7c33eaab92c8bd77
BLAKE2b-256 2bc14b677cbca3aa6052251fae2a38f35eb43670b4673e1a9cba6a11d5e8496e

See more details on using hashes here.

File details

Details for the file powerboxes-0.3.1-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for powerboxes-0.3.1-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 9852b5ebe4cfe7acba702ef1f3702c52f631f0e5ec1681128de7ff6b3d77c7d2
MD5 18755449a07a77e1b031bfa3bdf99179
BLAKE2b-256 96e36a3bc61e95d92fa5a71f6386566a89777157baeb5399338dc9a680587946

See more details on using hashes here.

File details

Details for the file powerboxes-0.3.1-cp311-cp311-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for powerboxes-0.3.1-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 0efd29cfa3095e35d97146b307f8d647b315a24b3a2c41bafdb99241da991f38
MD5 014db6fa9d2bb762b88caecca1a1aa37
BLAKE2b-256 16453fa4dcda92e5cdb15619628251e998355b50e561daf32e6c8ae7749a9851

See more details on using hashes here.

File details

Details for the file powerboxes-0.3.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for powerboxes-0.3.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 788be06ad7d41a167d8aada91f4375a87bc207fabbe7cae1a7942d4411413470
MD5 d2f4ac4ccdf7696b27cf06ffa4586b06
BLAKE2b-256 45f4f9e1ceae396172b90a7c76368e6f4e8b0c87d2e1f325cd7add6c0ca3f3ce

See more details on using hashes here.

File details

Details for the file powerboxes-0.3.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for powerboxes-0.3.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 aeea82b1cd878d8961252509d70d41b2440c2f0d39ac631fc132c8e761202fa6
MD5 9ca567f4501cd43febe60775ccd2ca8a
BLAKE2b-256 b9b932c39ef34193f2090cf9df5f76ec1959c4d90c4e5ce4ce6b2952bfab0292

See more details on using hashes here.

File details

Details for the file powerboxes-0.3.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for powerboxes-0.3.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a396dda8953917035b7c1a0cf5b998efee7edbd5785f74bce44830c85f8189bd
MD5 420c8edb0021ae64950e42817f252482
BLAKE2b-256 94227e0ac40efdcf4dce8d7aabd4a550cabd9903cce942ca31e5af1aabbbf15a

See more details on using hashes here.

File details

Details for the file powerboxes-0.3.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for powerboxes-0.3.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4915e470c94b98f1ecc0543a9832839bd7636e18de4908a7a83529613be00e09
MD5 ff6169c198d357fac9d0c40c32528bac
BLAKE2b-256 6b503a9c7d214db80c8db295c1ef62c9ff9b8a7dfacb00ec9ff647201ef3dab2

See more details on using hashes here.

File details

Details for the file powerboxes-0.3.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for powerboxes-0.3.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9f1b465ba1877fea2436ed8b548f91bc7bb6d7fd5d88083ae67e4b371b547ba5
MD5 de6dabc3480ce00a5456687b575c0b47
BLAKE2b-256 83f42e804a0ced0743746434bcfb25e3418d864cc148f661829cefaf7b28128e

See more details on using hashes here.

File details

Details for the file powerboxes-0.3.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for powerboxes-0.3.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 09a1edb7c0d562e03f4a643fa617f1223f7fdb7d03fb6ddee1c58f9726921186
MD5 bb8552e209d342ca2473b6d21ec13d1d
BLAKE2b-256 a2143368ab7034a532615253823c9cf71a738e05e551b49333688540da3ac22f

See more details on using hashes here.

File details

Details for the file powerboxes-0.3.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for powerboxes-0.3.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 05723ba34046482164bb39c9a67ef5a65c845878c38ac521c0a4323401ad800c
MD5 51110cde976686bcbc4807c159dc7252
BLAKE2b-256 2964d3916cfc261380d9e5b59e39c20863258c65286f4fb4204557d1bf768fc3

See more details on using hashes here.

File details

Details for the file powerboxes-0.3.1-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for powerboxes-0.3.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 98e13a5636646ca257cf1ed082f90376ff1711a498d3b2825b5a55d6f9b1f57f
MD5 50f2e887f2891cc1f09fbb5932dbe024
BLAKE2b-256 3ce629f6f0d7d946d3fae91eab144871c82a45ad7f1fbf6415f6e6a7dfa92572

See more details on using hashes here.

File details

Details for the file powerboxes-0.3.1-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: powerboxes-0.3.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 416.7 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.12

File hashes

Hashes for powerboxes-0.3.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 d5eea2b714e3c6a47fb56e05de3fb40ee0334f1a65be58cbe3f15029cc62dc3a
MD5 4620b8f7ba125c60cbbec4b6dd902e81
BLAKE2b-256 190eba83dd1e5735430863da531e3c397df796e7bdaa68ecd6627676c758c545

See more details on using hashes here.

File details

Details for the file powerboxes-0.3.1-cp310-cp310-win32.whl.

File metadata

  • Download URL: powerboxes-0.3.1-cp310-cp310-win32.whl
  • Upload date:
  • Size: 414.0 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.12

File hashes

Hashes for powerboxes-0.3.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 78f7e781ec81bd005c79f85e2e31a45ed964711b1fcefc17a9cbb8c5e8b0f5e7
MD5 a88fef4bb112af1ee6d8cb39926d4a5b
BLAKE2b-256 20b2612f8b0589ab0847b41e73324cd8737988eab5e76697ebb496dc28363dec

See more details on using hashes here.

File details

Details for the file powerboxes-0.3.1-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for powerboxes-0.3.1-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 24e8a13d0c8ba8cb6f2932815126b14eae63b773b4391abbe0b6b4ff23ef8c6e
MD5 d296c3990f26ec73e5ee0fb36dac4bbe
BLAKE2b-256 3237e6e988c8d7c59cf9afb46ae9f0ec88db6116e2f4e1e7010191f88f27e4bd

See more details on using hashes here.

File details

Details for the file powerboxes-0.3.1-cp310-cp310-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for powerboxes-0.3.1-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 47b064383f3dd7e63129d5803846c70edeb3d380017aa4070afa75a9cf0980b1
MD5 6c5ab23531978578075a7ac18212d627
BLAKE2b-256 6dd7c11be81431c7e75ceb29c7220e6230e6697560003e9f55963961221e16ac

See more details on using hashes here.

File details

Details for the file powerboxes-0.3.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for powerboxes-0.3.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 eeade239b6029a788ce23553c6c8d87db6d3280cd006aadf262fc73f0c5bd870
MD5 09b06a9b4335100f93074ab677c9d8ee
BLAKE2b-256 2a31a94e09f5660071535d90d483eafff54e66bec28fdaf6a4310554bba10052

See more details on using hashes here.

File details

Details for the file powerboxes-0.3.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for powerboxes-0.3.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e2bc95e1a7af9f695fb65fc3589679549a1f8716615edc1f02314d44483a0506
MD5 c18643d489cb82c12734aa85633e3468
BLAKE2b-256 665525ed2b9c8de40a1ff98856859d4611fba8c16fe8f58b28981538fe266862

See more details on using hashes here.

File details

Details for the file powerboxes-0.3.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for powerboxes-0.3.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 bf7f14a4556cd8382c710bf649bbc056d2fb2feb51d62918ea73f9c3ac54f05c
MD5 20b1006adf35f54c161a5e988405d30c
BLAKE2b-256 0a5f5ecabe1320605977ffdc8bbfeca1b21fc8ca80e4fd3229bf10a7a49ad5be

See more details on using hashes here.

File details

Details for the file powerboxes-0.3.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for powerboxes-0.3.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 134b6d9bdccc384d6a849a80aeeded2f03a35efa00f0327fcddb67c27ed71cc6
MD5 c53e0c54177311b7914692333160dfee
BLAKE2b-256 6787fbbff055014107882e85452991feacd1779ee10fdac73276c06cce3b0960

See more details on using hashes here.

File details

Details for the file powerboxes-0.3.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for powerboxes-0.3.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 db5435f8abe5ba6c162005ed7eb7367788abb0ed39a36553adf078fd4921bfca
MD5 cfe1857c4d5377470f75ac33800ce4dc
BLAKE2b-256 29faccf36cdd781576505e405247137c2fb151b00468886229fb055346843253

See more details on using hashes here.

File details

Details for the file powerboxes-0.3.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for powerboxes-0.3.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 773e5c83270cf8e33a463b85a8184ee3684df97849e73013401efd4c9e699deb
MD5 0adde9bf272505a707fbaa239c37bd85
BLAKE2b-256 a3a7efd436c6801cb74c42a8808f95352e143ce67fc50591d18713deb3f02c7e

See more details on using hashes here.

File details

Details for the file powerboxes-0.3.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for powerboxes-0.3.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7b198c890d1ad704e24211866d06bd5f968b02f104cb7858b393cc0fcfeac55a
MD5 6841e2ddfc97437380c378509d7c8704
BLAKE2b-256 00e9b6f2200502bda03286ac7407be2b6c5a6767284c04390d9f559c539eeb22

See more details on using hashes here.

File details

Details for the file powerboxes-0.3.1-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for powerboxes-0.3.1-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 69702de10cd9c6febd782900a3745e8780c0232523f196cc6e3b94908a5dcd18
MD5 ae8865c57e44887ee5af84afd30c1006
BLAKE2b-256 007a2f568283dec55ebc34c7d721fedf4a833cda01aa224a4da8dc70edc4dd60

See more details on using hashes here.

File details

Details for the file powerboxes-0.3.1-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: powerboxes-0.3.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 418.7 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.12

File hashes

Hashes for powerboxes-0.3.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 69a68796600c279cbee750991aab93b3a70b1ed8ad52a6eb4e9f9296785b03ee
MD5 073a1cd84705812c8bddd11ca32e00ec
BLAKE2b-256 f94d50bcdf54ffd0bb2d4b1873f96c42ce3eb0e2d48deeed407310bca77d4523

See more details on using hashes here.

File details

Details for the file powerboxes-0.3.1-cp39-cp39-win32.whl.

File metadata

  • Download URL: powerboxes-0.3.1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 415.8 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.12

File hashes

Hashes for powerboxes-0.3.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 31c639c4d1707cedaaededd1d045633effdbdde3bba1d1bd86fc469e52cb90cc
MD5 e0d98e06e8feba58c827ff7fd12ee976
BLAKE2b-256 37799c8024a0642281f89c3207d5c51b430e2490adcfe46b9dd99a240d00d767

See more details on using hashes here.

File details

Details for the file powerboxes-0.3.1-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for powerboxes-0.3.1-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 ab132c9c5cb129b3c08689a445c7dd2bee3500faa864aeefab75a9d914321be6
MD5 fbc02dce0aea1a30e314eb71d4e12d02
BLAKE2b-256 a1574b75dc0254c90a4be7478b21d7fd786886f3a48ef605d7d143ea478a09a1

See more details on using hashes here.

File details

Details for the file powerboxes-0.3.1-cp39-cp39-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for powerboxes-0.3.1-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 3d5522980206507e32a6c94eddb5ead23f50dc881f4aca142edf5863e3466051
MD5 d8646e00cbf57b3ee3106f47bc7d233a
BLAKE2b-256 1b0dbffa8b245d4885b8dd1231330273857a82e7f3d94cb60bbd8193d32cebf3

See more details on using hashes here.

File details

Details for the file powerboxes-0.3.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for powerboxes-0.3.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 724b1745c86fad033f813d2b81e42209fcfc645eb55aec1f67f69837ebf1b959
MD5 c8d92ca714cfa6a3319136b15fbec67f
BLAKE2b-256 519931788b7eb03d4018293b128933cbc5598e76a74833dadeaf4ca1e942cc36

See more details on using hashes here.

File details

Details for the file powerboxes-0.3.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for powerboxes-0.3.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 bf57034d31977528b9c3a78f5d707db08e5ef02cb6c4f3036d735ab9aed16a65
MD5 46cca6b3685a68f0765f0ef8845149a8
BLAKE2b-256 5664de4532bf44b581182784c71553fdb581b53f408cdc4eaebe0070c688bf6d

See more details on using hashes here.

File details

Details for the file powerboxes-0.3.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for powerboxes-0.3.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9e588f28cb1f3edc7d516ca4f6add1a84115c213cf10851a838c500a5a3b07a5
MD5 5df552fde8beeec8cdaf632f8ffa2665
BLAKE2b-256 8228f1cc3a0218602a23f6436d39475a8d8b7dc282a927cc4c8fb64d00da0741

See more details on using hashes here.

File details

Details for the file powerboxes-0.3.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for powerboxes-0.3.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a4932c4acaae1dbf0f79911eded96116638ca8225cf3724a2e82652bf72dd534
MD5 a55fc18afce5d4e9efc3ea271a47a4ac
BLAKE2b-256 e9f3a5e67afa4b6e1e4c0a8c90b087ed36746d60cac54a5455466dc9e546c587

See more details on using hashes here.

File details

Details for the file powerboxes-0.3.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for powerboxes-0.3.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 38924805f674f995249df23aea51730975a973ed7664206a203ad712e362d31e
MD5 2363c12a87aa5719fc6001ceb79389ed
BLAKE2b-256 90ad2ea979ee055455a5d5f5606f95c7e6dfd11a5dfc8a8a09de44a14f7ddbc4

See more details on using hashes here.

File details

Details for the file powerboxes-0.3.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for powerboxes-0.3.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f069f38a8a0b939dab1f242576d69e46f585800dfb9512192515ebbe59154c34
MD5 8a10d1c46acaa38780b824c44763c854
BLAKE2b-256 695b4d9a4fd595dc674355cf6588e57a5c247c55578aa7c73c607fe742e4eb51

See more details on using hashes here.

File details

Details for the file powerboxes-0.3.1-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for powerboxes-0.3.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 48120c3851b38b267a50d0e3c6295d798d144a75348f36b19191f20655a394f4
MD5 60749c7ca5a370c5cd44d44cd8fd544c
BLAKE2b-256 dad92a22dcf417c565273601995ff6f107df1a7fbdc97cda0617a0d08d3ffac0

See more details on using hashes here.

File details

Details for the file powerboxes-0.3.1-cp39-cp39-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for powerboxes-0.3.1-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f53be0a6b7b16c015ef839e7aba8d78cd2c9e33efe700658fa3a5455fa1d772a
MD5 3bb130b66a7767f6f2754da7189b6add
BLAKE2b-256 33fb1f4a77a30e9a2a8652c6e7a48ea5b22604a4614701a54944079bfc145e44

See more details on using hashes here.

Supported by

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