Skip to main content

Pack a set of rectangles into a bounding box with minimum area

Project description

Pack a set of rectangles into a bounding box with minimum area

Welcome to rectangle-packer

PyPI-Versions PyPI-Wheel Build-Status Read-the-Docs GitHub-License

PyPI-Downloads

Primary use: Given a set of rectangles with fixed orientations, find a bounding box of minimum area that contains them all with no overlap.

This project is inspired by Matt Perdeck’s blog post Fast Optimizing Rectangle Packing Algorithm for Building CSS Sprites.

  • The latest documentation is available on Read the Docs.

  • The source code is available on GitHub.

Installation

Install latest version from PyPI:

$ python3 -m pip install rectangle-packer

Or clone the repository and install with:

$ python3 setup.py install

Basic usage

# Import the module
>>> import rpack

# Create a bunch of rectangles (width, height)
>>> sizes = [(58, 206), (231, 176), (35, 113), (46, 109)]

# Pack
>>> positions = rpack.pack(sizes)

# The result will be a list of (x, y) positions:
>>> positions
[(0, 0), (58, 0), (289, 0), (289, 113)]

The output positions are the lower left corner coordinates of each rectangle in the input.

These positions will yield a packing with no overlaps and enclosing area as small as possible (best effort).

Examples

Example A:

pack10

Example B:

packphi

Example C: Sometimes the input rectangles simply cannot be packed in a good way. Here is an example of low packing density:

pack10bad

Example D: The image below is contributed by Paul Brodersen, and illustrates a solution to a problem discussed at stackoverflow.

PaulBrodersenExampleImage

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

rectangle_packer-2.0.4.tar.gz (99.6 kB view details)

Uploaded Source

Built Distributions

rectangle_packer-2.0.4-cp313-cp313-win_amd64.whl (68.5 kB view details)

Uploaded CPython 3.13Windows x86-64

rectangle_packer-2.0.4-cp313-cp313-win32.whl (62.1 kB view details)

Uploaded CPython 3.13Windows x86

rectangle_packer-2.0.4-cp313-cp313-musllinux_1_2_x86_64.whl (353.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

rectangle_packer-2.0.4-cp313-cp313-musllinux_1_2_i686.whl (352.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

rectangle_packer-2.0.4-cp313-cp313-musllinux_1_2_aarch64.whl (341.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

rectangle_packer-2.0.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (340.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

rectangle_packer-2.0.4-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (342.4 kB view details)

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

rectangle_packer-2.0.4-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (332.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

rectangle_packer-2.0.4-cp313-cp313-macosx_11_0_arm64.whl (68.3 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

rectangle_packer-2.0.4-cp313-cp313-macosx_10_13_x86_64.whl (71.0 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

rectangle_packer-2.0.4-cp312-cp312-win_amd64.whl (69.0 kB view details)

Uploaded CPython 3.12Windows x86-64

rectangle_packer-2.0.4-cp312-cp312-win32.whl (62.4 kB view details)

Uploaded CPython 3.12Windows x86

rectangle_packer-2.0.4-cp312-cp312-musllinux_1_2_x86_64.whl (356.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

rectangle_packer-2.0.4-cp312-cp312-musllinux_1_2_i686.whl (353.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

rectangle_packer-2.0.4-cp312-cp312-musllinux_1_2_aarch64.whl (343.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

rectangle_packer-2.0.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (340.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

rectangle_packer-2.0.4-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (342.8 kB view details)

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

rectangle_packer-2.0.4-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (332.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

rectangle_packer-2.0.4-cp312-cp312-macosx_11_0_arm64.whl (69.3 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

rectangle_packer-2.0.4-cp312-cp312-macosx_10_13_x86_64.whl (72.1 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

rectangle_packer-2.0.4-cp311-cp311-win_amd64.whl (69.5 kB view details)

Uploaded CPython 3.11Windows x86-64

rectangle_packer-2.0.4-cp311-cp311-win32.whl (62.7 kB view details)

Uploaded CPython 3.11Windows x86

rectangle_packer-2.0.4-cp311-cp311-musllinux_1_2_x86_64.whl (349.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

rectangle_packer-2.0.4-cp311-cp311-musllinux_1_2_i686.whl (349.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

rectangle_packer-2.0.4-cp311-cp311-musllinux_1_2_aarch64.whl (340.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

rectangle_packer-2.0.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (337.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

rectangle_packer-2.0.4-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (339.3 kB view details)

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

rectangle_packer-2.0.4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (329.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

rectangle_packer-2.0.4-cp311-cp311-macosx_11_0_arm64.whl (69.4 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

rectangle_packer-2.0.4-cp311-cp311-macosx_10_9_x86_64.whl (71.2 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

rectangle_packer-2.0.4-cp310-cp310-win_amd64.whl (69.6 kB view details)

Uploaded CPython 3.10Windows x86-64

rectangle_packer-2.0.4-cp310-cp310-win32.whl (62.8 kB view details)

Uploaded CPython 3.10Windows x86

rectangle_packer-2.0.4-cp310-cp310-musllinux_1_2_x86_64.whl (332.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

rectangle_packer-2.0.4-cp310-cp310-musllinux_1_2_i686.whl (330.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

rectangle_packer-2.0.4-cp310-cp310-musllinux_1_2_aarch64.whl (322.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

rectangle_packer-2.0.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (316.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

rectangle_packer-2.0.4-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (318.3 kB view details)

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

rectangle_packer-2.0.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (310.4 kB view details)

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

rectangle_packer-2.0.4-cp310-cp310-macosx_11_0_arm64.whl (69.5 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

rectangle_packer-2.0.4-cp310-cp310-macosx_10_9_x86_64.whl (71.2 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

rectangle_packer-2.0.4-cp39-cp39-win_amd64.whl (69.6 kB view details)

Uploaded CPython 3.9Windows x86-64

rectangle_packer-2.0.4-cp39-cp39-win32.whl (62.8 kB view details)

Uploaded CPython 3.9Windows x86

rectangle_packer-2.0.4-cp39-cp39-musllinux_1_2_x86_64.whl (331.9 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

rectangle_packer-2.0.4-cp39-cp39-musllinux_1_2_i686.whl (330.4 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

rectangle_packer-2.0.4-cp39-cp39-musllinux_1_2_aarch64.whl (323.9 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

rectangle_packer-2.0.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (317.0 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

rectangle_packer-2.0.4-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (318.9 kB view details)

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

rectangle_packer-2.0.4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (311.5 kB view details)

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

rectangle_packer-2.0.4-cp39-cp39-macosx_11_0_arm64.whl (69.7 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

rectangle_packer-2.0.4-cp39-cp39-macosx_10_9_x86_64.whl (71.5 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

Details for the file rectangle_packer-2.0.4.tar.gz.

File metadata

  • Download URL: rectangle_packer-2.0.4.tar.gz
  • Upload date:
  • Size: 99.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for rectangle_packer-2.0.4.tar.gz
Algorithm Hash digest
SHA256 bddc7f8d94a08bed320b33392bfd00015e18ee315f6bc7b3deefcf35f7609c60
MD5 9e46886f7f3334ceafabe96d2e9786e3
BLAKE2b-256 1793307479e1ae9bc3ea7c6f50975d95e3ac391c9439c0cd4b3e26ed3dc75432

See more details on using hashes here.

Provenance

The following attestation bundles were made for rectangle_packer-2.0.4.tar.gz:

Publisher: build_wheels.yml on Penlect/rectangle-packer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rectangle_packer-2.0.4-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for rectangle_packer-2.0.4-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 be88cff1de041d4b14bcee09b6910580c8f891065332f64bf4ea79ff9c64a516
MD5 f091740abae86e5a93478ae55f72aca6
BLAKE2b-256 c3e99239ba456fedd77092a5bfbd39904bf26092231f4070ce15cdc3579cecf0

See more details on using hashes here.

Provenance

The following attestation bundles were made for rectangle_packer-2.0.4-cp313-cp313-win_amd64.whl:

Publisher: build_wheels.yml on Penlect/rectangle-packer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rectangle_packer-2.0.4-cp313-cp313-win32.whl.

File metadata

File hashes

Hashes for rectangle_packer-2.0.4-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 58b94d2aa98594c02d8b848a128c9b34f293fa709daa79cdca9d4916375e4048
MD5 883b352446e2f2ab3985b90af34eafd3
BLAKE2b-256 d79795d98b9a68da63a6bf8f5339d4bd306e482fca24389618765236f870b04a

See more details on using hashes here.

Provenance

The following attestation bundles were made for rectangle_packer-2.0.4-cp313-cp313-win32.whl:

Publisher: build_wheels.yml on Penlect/rectangle-packer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rectangle_packer-2.0.4-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rectangle_packer-2.0.4-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 928e1d4c48187d0c9d7a8449e3cb3d2705f51dffa114bb24bdb3195bf5c0fcf9
MD5 48276205045bf5c2b363ac29d7cc8700
BLAKE2b-256 b4cc8e44b928d69eb538b3aa93c1400ce449f98fee55fed765904ca8adf9b766

See more details on using hashes here.

Provenance

The following attestation bundles were made for rectangle_packer-2.0.4-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on Penlect/rectangle-packer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rectangle_packer-2.0.4-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for rectangle_packer-2.0.4-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ce13ccd45b101d04d6eb514789dbe5c7ef927d7d1d4527d46a682b65339d5c8c
MD5 3122b5b12b76c9daa4f8c16084323403
BLAKE2b-256 2261d57e69a5d464a81d56e291536a68fd9dfa45cbefc7c39926385f8ad953a2

See more details on using hashes here.

Provenance

The following attestation bundles were made for rectangle_packer-2.0.4-cp313-cp313-musllinux_1_2_i686.whl:

Publisher: build_wheels.yml on Penlect/rectangle-packer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rectangle_packer-2.0.4-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rectangle_packer-2.0.4-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d9a732ae26f09e067a11074d5f56b9a6e6beca9c15c4588ea3eb422e1e58455f
MD5 cbada707f73a556dd62b47a139b8ce31
BLAKE2b-256 0fa34ce9f762e72771e78c86a67318bbf93f2fbaf0653e228f7b5f4bc07df566

See more details on using hashes here.

Provenance

The following attestation bundles were made for rectangle_packer-2.0.4-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: build_wheels.yml on Penlect/rectangle-packer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rectangle_packer-2.0.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rectangle_packer-2.0.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 097b0b8655dc2da8c45a0e5efff465a2b154680383bfacb3a893f2f459ad1d15
MD5 726fb39e3ff3bb85aa930b2e89385661
BLAKE2b-256 bfbd17292a1545ef86d23428c0220cdff3478c0e7a603b8224bd55790acbb89e

See more details on using hashes here.

Provenance

The following attestation bundles were made for rectangle_packer-2.0.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: build_wheels.yml on Penlect/rectangle-packer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rectangle_packer-2.0.4-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rectangle_packer-2.0.4-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ecef96aa7a63b8eba12ee22412830a7feed9d6504a87c50708fdf33bb5151e1a
MD5 d9176d52ef24cb20802efcb3b4097607
BLAKE2b-256 ef3bbcb06b6969c8f020db6da3739e1e45fa4527d5edcb3be420e47f9e50a31a

See more details on using hashes here.

Provenance

The following attestation bundles were made for rectangle_packer-2.0.4-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build_wheels.yml on Penlect/rectangle-packer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rectangle_packer-2.0.4-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for rectangle_packer-2.0.4-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 507089254bcf7b3c88338b857b076c5206e9ee90de7b4e1a668b2cf943dbb5c7
MD5 73cee892a9ad64fe64cfb6400c6d4cba
BLAKE2b-256 31f5ef96c0aad5acef2a80bc75097e759e8eba8b5a30ea2c9ebb8bd1262767ff

See more details on using hashes here.

Provenance

The following attestation bundles were made for rectangle_packer-2.0.4-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: build_wheels.yml on Penlect/rectangle-packer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rectangle_packer-2.0.4-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rectangle_packer-2.0.4-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 84a0c386496264aaa0ab688e66c7952e1d0115edaf761b3b85feb1b8b718c98a
MD5 cde41673c92aa669c594f80aabc9211d
BLAKE2b-256 b7c920c6d19f4541f5b70a8b08aca6e7ef27a90e7872b1f99e9bf85c731d7009

See more details on using hashes here.

Provenance

The following attestation bundles were made for rectangle_packer-2.0.4-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on Penlect/rectangle-packer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rectangle_packer-2.0.4-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for rectangle_packer-2.0.4-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 e7a668c44776ff8db9edb0df17f996d4eac6b1842d9a23ddd48bf7f0968744e4
MD5 3d4deafbd10695cd9694c86967e7691a
BLAKE2b-256 89b0706b823fd7597264506f33fa920ed560359d92ecc5dd9f645639d3a4a9ed

See more details on using hashes here.

Provenance

The following attestation bundles were made for rectangle_packer-2.0.4-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: build_wheels.yml on Penlect/rectangle-packer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rectangle_packer-2.0.4-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for rectangle_packer-2.0.4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 731c1e028963d1fefd263a774984f2f4cfe044fb427e034829765723f118e512
MD5 15da1e73ea6850a5b4408219ec2812bb
BLAKE2b-256 3596f2c395c18a0244690204071586a90f65faabf050d8dca09b6ad6775df438

See more details on using hashes here.

Provenance

The following attestation bundles were made for rectangle_packer-2.0.4-cp312-cp312-win_amd64.whl:

Publisher: build_wheels.yml on Penlect/rectangle-packer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rectangle_packer-2.0.4-cp312-cp312-win32.whl.

File metadata

File hashes

Hashes for rectangle_packer-2.0.4-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 14438726c635a040b35726a69b887372f8422c3a122ecf14b161be8649527745
MD5 3df3835ea07bba4cc410fa26b33fdde2
BLAKE2b-256 c4f70f57adabe8b831ab35516f2272aafc9dc76797899f73e488939723114940

See more details on using hashes here.

Provenance

The following attestation bundles were made for rectangle_packer-2.0.4-cp312-cp312-win32.whl:

Publisher: build_wheels.yml on Penlect/rectangle-packer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rectangle_packer-2.0.4-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rectangle_packer-2.0.4-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 37482c91f7331e4dab5b97029fdc23f398529ca5aedccfd16ca01b287b4af89a
MD5 60a282fd446195a7ca811df17086efcd
BLAKE2b-256 775462cdd787fb5c12dfe2ca83f975acc11521ae0961da432ecd64666cc6a485

See more details on using hashes here.

Provenance

The following attestation bundles were made for rectangle_packer-2.0.4-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on Penlect/rectangle-packer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rectangle_packer-2.0.4-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for rectangle_packer-2.0.4-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f9b592cb7de1d5d9fb520d335e328e9a7758cbf20a42356824dd1acc9867e5b4
MD5 04b69e0e5046c4c7b338fad7744c29f8
BLAKE2b-256 ef8681973fe5276fd1ad098f72d60100593b5b97c16c9714d6d72ec61ce2e674

See more details on using hashes here.

Provenance

The following attestation bundles were made for rectangle_packer-2.0.4-cp312-cp312-musllinux_1_2_i686.whl:

Publisher: build_wheels.yml on Penlect/rectangle-packer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rectangle_packer-2.0.4-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rectangle_packer-2.0.4-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e6125ca6d4a4ebafb8ab13fe5ace716668a6011a3859cc12c68f0803c327b072
MD5 48c213f95e8a518d57b56bc6ccff3fb9
BLAKE2b-256 730629d485c8325d07b54abcc4866a3a34402852bb6876211d0e8141429aa196

See more details on using hashes here.

Provenance

The following attestation bundles were made for rectangle_packer-2.0.4-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: build_wheels.yml on Penlect/rectangle-packer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rectangle_packer-2.0.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rectangle_packer-2.0.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b89e6ddd1c73900885b38b2e9517b9f8bec09f9118dbc29e1b8a6ca4a259dba1
MD5 50117f5c7f875fec191f79f5b3741a82
BLAKE2b-256 b96e6e5d4a0bd8df40e2de0e03395a3508da77462225fe7a30f933cd95d05b54

See more details on using hashes here.

Provenance

The following attestation bundles were made for rectangle_packer-2.0.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: build_wheels.yml on Penlect/rectangle-packer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rectangle_packer-2.0.4-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rectangle_packer-2.0.4-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d4b55f724eab7e82b70680ac7275c0c96d59acece8bd947285ff3dd024fd7cd2
MD5 4b49c9cc7f0b7755471454e4ad0ae32f
BLAKE2b-256 83bd63ea937d9f4b3daffdae9efac172f466a1e6bf6988f8a44f3d450f1f6486

See more details on using hashes here.

Provenance

The following attestation bundles were made for rectangle_packer-2.0.4-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build_wheels.yml on Penlect/rectangle-packer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rectangle_packer-2.0.4-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for rectangle_packer-2.0.4-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 fde37f3d84b3aea256b1b1446d212e309f5e7c86e803e2a673fecea422ba78ba
MD5 b0c29e3609ca3fd4eb5fee1842d07b0c
BLAKE2b-256 d337bb33c4dd305094aaaa15f66fa0f0e9f4c9e91c2cdd8ad81398082aceda9c

See more details on using hashes here.

Provenance

The following attestation bundles were made for rectangle_packer-2.0.4-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: build_wheels.yml on Penlect/rectangle-packer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rectangle_packer-2.0.4-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rectangle_packer-2.0.4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0e9df8c1f126e38e65ac3d543300df9d6ec7debbca44619eb913fb7adc7a5cc3
MD5 88049d429a346da33b9c712b70238aa6
BLAKE2b-256 4934bd79f040a7448758a0e880a83c81978ed7f6f48b2cca71b893efe1f399c2

See more details on using hashes here.

Provenance

The following attestation bundles were made for rectangle_packer-2.0.4-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on Penlect/rectangle-packer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rectangle_packer-2.0.4-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for rectangle_packer-2.0.4-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 30e3a5f20f1e9520aeef1229972865c0b6a7475b4f0c6dde70be5b7edd7ae60e
MD5 05fbddf1d01bed13a8c95bf055a92f98
BLAKE2b-256 aafcfa5629d8d1eccc6b4f860b6fc4134460e457faa6f048d5e5fb5d6d85a8fa

See more details on using hashes here.

Provenance

The following attestation bundles were made for rectangle_packer-2.0.4-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: build_wheels.yml on Penlect/rectangle-packer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rectangle_packer-2.0.4-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for rectangle_packer-2.0.4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 0c1d1cf44f9f0c424e4ba1d321308697c6496c91ab7c18c78fe973e8d7e8ad5a
MD5 008feede13aa1b3fa1e87062e4882ea4
BLAKE2b-256 6afc658dde90d53b77b7b503342f96f39cac1f125994cdb0c06d44ba29f2ce03

See more details on using hashes here.

Provenance

The following attestation bundles were made for rectangle_packer-2.0.4-cp311-cp311-win_amd64.whl:

Publisher: build_wheels.yml on Penlect/rectangle-packer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rectangle_packer-2.0.4-cp311-cp311-win32.whl.

File metadata

File hashes

Hashes for rectangle_packer-2.0.4-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 703dfdd894fc2500e06487847708e3c4483396a19b0b91dacbb8e4449e82e6a2
MD5 17c755fb961016938f5e5210a261f1d9
BLAKE2b-256 9873744e2338237a6d1f65e34a4299cc42e411e2f6817f90057307d618e25a55

See more details on using hashes here.

Provenance

The following attestation bundles were made for rectangle_packer-2.0.4-cp311-cp311-win32.whl:

Publisher: build_wheels.yml on Penlect/rectangle-packer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rectangle_packer-2.0.4-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rectangle_packer-2.0.4-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 004053f8252cb33679a342a070dfde507d4c9d8a7b3d797599699f8433aca4e4
MD5 cf7b5e65a7f1265574ba2e380c457bf5
BLAKE2b-256 15d7310c320f27359d0e5ba28ea5049b4ad922b50b7b210e548ea5bed08c4e60

See more details on using hashes here.

Provenance

The following attestation bundles were made for rectangle_packer-2.0.4-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on Penlect/rectangle-packer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rectangle_packer-2.0.4-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for rectangle_packer-2.0.4-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1d60d0755b4220275b25fb01620304ce7c76d9cc1fcce71e643be4cbc2be70d2
MD5 be91f2b31f56e057693f7cd9ac91f158
BLAKE2b-256 26d2635b7feb8476557fdca7c5546fbd5dbf95aa535fef80c64072a256f04710

See more details on using hashes here.

Provenance

The following attestation bundles were made for rectangle_packer-2.0.4-cp311-cp311-musllinux_1_2_i686.whl:

Publisher: build_wheels.yml on Penlect/rectangle-packer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rectangle_packer-2.0.4-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rectangle_packer-2.0.4-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4a4f59f53fc49f683d07933905b8190d3e2800165b0af2a6304ec5dc304c7809
MD5 62c34cca8b4a4f9e713a57f3a2eb3572
BLAKE2b-256 14bf42cbcf7f98ae320ebc3c0fe1dbaa29ca06bbcbdba931f0fbf2af69fd74ee

See more details on using hashes here.

Provenance

The following attestation bundles were made for rectangle_packer-2.0.4-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: build_wheels.yml on Penlect/rectangle-packer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rectangle_packer-2.0.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rectangle_packer-2.0.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b1e521c6394596fc45820f1ec1d1f00c2979862269b0f323513ddc9db3141dd6
MD5 eb6352ffa7303607dc7cb7ee2e5460a0
BLAKE2b-256 c6060ce5e6a606ac5176ab1b8a7461c58ac9c94d77ae9cfd6086b89525d26aca

See more details on using hashes here.

Provenance

The following attestation bundles were made for rectangle_packer-2.0.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: build_wheels.yml on Penlect/rectangle-packer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rectangle_packer-2.0.4-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rectangle_packer-2.0.4-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fed3211d6f737f3a60683ea8cd2e0ef7abb061e987eddfaee283790737728430
MD5 ca0b62d4f5de22f88264a5b805b51576
BLAKE2b-256 46d195c2f0c75eda745fd5c19e180d605da74961b62f42e91906a4176aba31e6

See more details on using hashes here.

Provenance

The following attestation bundles were made for rectangle_packer-2.0.4-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build_wheels.yml on Penlect/rectangle-packer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rectangle_packer-2.0.4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for rectangle_packer-2.0.4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 80db358b60080dcff7cf3b00772f36c4ceabb75be2cdb0b904766f8d711f3d7e
MD5 18219b5fb6c610ff322ffbf9d8363df9
BLAKE2b-256 aecfd30e261986d8a63774d79f9f5bd35835884f0914785399e0e841482fb7da

See more details on using hashes here.

Provenance

The following attestation bundles were made for rectangle_packer-2.0.4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: build_wheels.yml on Penlect/rectangle-packer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rectangle_packer-2.0.4-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rectangle_packer-2.0.4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fd2bc7c0d170b0d98933af79ad8908efb8ce4c149da6fbe69b8047047ad4edc6
MD5 ec8e3a98ca7b5619bca8b30563ccb0ef
BLAKE2b-256 40c7cf2fe8865c9aeb69d3d80fdeb81c03fd7e22cd752473272ebdda919c5c33

See more details on using hashes here.

Provenance

The following attestation bundles were made for rectangle_packer-2.0.4-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on Penlect/rectangle-packer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rectangle_packer-2.0.4-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for rectangle_packer-2.0.4-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9a79ae6cfabed29946c68c883d7e47218c52060c26447c526529938d26ee7ec8
MD5 28cc5ebee13c34dec8a0c784125918ae
BLAKE2b-256 ee57b3ee6ce884cecdeb34b6bee8b6d2ba0151f3d87d6a2ecc06ea91ac34c209

See more details on using hashes here.

Provenance

The following attestation bundles were made for rectangle_packer-2.0.4-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: build_wheels.yml on Penlect/rectangle-packer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rectangle_packer-2.0.4-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for rectangle_packer-2.0.4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 1ef4bfc3695ccf6ceacfd6198a9b4854e73fa590c80da72c59e9872faf7bdd0e
MD5 b18ea01934b95b48f22371c1d14e13eb
BLAKE2b-256 ef8bce015ef393fce8a83fbed5ac043899a5f64651db33e120d6360934f5aff5

See more details on using hashes here.

Provenance

The following attestation bundles were made for rectangle_packer-2.0.4-cp310-cp310-win_amd64.whl:

Publisher: build_wheels.yml on Penlect/rectangle-packer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rectangle_packer-2.0.4-cp310-cp310-win32.whl.

File metadata

File hashes

Hashes for rectangle_packer-2.0.4-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 a3b6216f8f42ffda7e871fc32b02ad1bd3612bc3020da42dfd3d408131809f4d
MD5 7a5153337b9929b3e58454a33b2cf4c5
BLAKE2b-256 10598e1970ce12b589418bd3f73d5fb459b5f1a522cefd5678b18817dc169d90

See more details on using hashes here.

Provenance

The following attestation bundles were made for rectangle_packer-2.0.4-cp310-cp310-win32.whl:

Publisher: build_wheels.yml on Penlect/rectangle-packer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rectangle_packer-2.0.4-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rectangle_packer-2.0.4-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8e63a4f02d13a9b1517e270f090914e88a5c8819d1c038636eb0c24d9910d734
MD5 68706acb5a8f4de8b28d97d93c847726
BLAKE2b-256 d064ccc3e17d50949f255eca505f8d8054ddf0a28769f2136a8daaab5175f513

See more details on using hashes here.

Provenance

The following attestation bundles were made for rectangle_packer-2.0.4-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on Penlect/rectangle-packer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rectangle_packer-2.0.4-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for rectangle_packer-2.0.4-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 36091942b97cf5865232f69052f08ea77b8ce2720515830f7fcfb64fdc7a7b70
MD5 be7bbfd41711e5b8a2e9cecf69d9a25e
BLAKE2b-256 516269749d01c014fa20cacada96615310c4d2972d34e1846bd7a426497ac78d

See more details on using hashes here.

Provenance

The following attestation bundles were made for rectangle_packer-2.0.4-cp310-cp310-musllinux_1_2_i686.whl:

Publisher: build_wheels.yml on Penlect/rectangle-packer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rectangle_packer-2.0.4-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rectangle_packer-2.0.4-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6e4db77f4a2f57e695624e72c1645f342cfddac67a33fe4bef91074ce04434c4
MD5 c03c5a039e80375e39af1d968732f357
BLAKE2b-256 f6daa3b73c935c0b4fbd8d96eb7fd9ad5b8f34b4fb596957dcb48ded4ecc6eed

See more details on using hashes here.

Provenance

The following attestation bundles were made for rectangle_packer-2.0.4-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: build_wheels.yml on Penlect/rectangle-packer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rectangle_packer-2.0.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rectangle_packer-2.0.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 dd8271ae3faf1b9a6644ba098ccaa07ff421517bff266420ea3f81f56fa7d2a9
MD5 d7b1124b9721b49767d3584ee815e00b
BLAKE2b-256 cb5039da56ec537baa52d1ab97315ba5dd6e4f3c3453df418df6ea269ccb141e

See more details on using hashes here.

Provenance

The following attestation bundles were made for rectangle_packer-2.0.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: build_wheels.yml on Penlect/rectangle-packer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rectangle_packer-2.0.4-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 rectangle_packer-2.0.4-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 babe18f1f0cb59e52ce012ff9275c8b5524e6340135c4eccbd8ffe404c99d2bd
MD5 568a749af0d61cae8d2398bb2913861b
BLAKE2b-256 d8d2e8956f33199b4060c76035cf6c958431041fee380a679f71497ed4d78f0e

See more details on using hashes here.

Provenance

The following attestation bundles were made for rectangle_packer-2.0.4-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build_wheels.yml on Penlect/rectangle-packer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rectangle_packer-2.0.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for rectangle_packer-2.0.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2a86cc7bc32e1edddbcf7c90a524697a2dd081ed0236064e390b81f3bb88b1ad
MD5 ed4fb27b0835a5047f0b65f9c4f0d3f9
BLAKE2b-256 1fa815510ce688af8e65458718445d1c4498821418f3360e65652e0da9795da9

See more details on using hashes here.

Provenance

The following attestation bundles were made for rectangle_packer-2.0.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: build_wheels.yml on Penlect/rectangle-packer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rectangle_packer-2.0.4-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rectangle_packer-2.0.4-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ed26f3acc089c373a37e797419c8bac1a0c3bf1f59a0f4e6c0bf989f013dcc82
MD5 4ccc9b0a3961f28994eec271ae335926
BLAKE2b-256 cc271b0522aa0210fb8b4a73c22e923d0a5ccf74c651fb1d426e0fa08300254c

See more details on using hashes here.

Provenance

The following attestation bundles were made for rectangle_packer-2.0.4-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on Penlect/rectangle-packer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rectangle_packer-2.0.4-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for rectangle_packer-2.0.4-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 34568e0fa129aede346bdadcc50928e0da1f97b44682d571840932e5f54659e5
MD5 4bcf8d1ccfc876aee4b18e81136ac1ab
BLAKE2b-256 a9ecd5a309982dc99f56bd32f3ebdbb0937d30bfbfab680a4aa265357c9d4e5f

See more details on using hashes here.

Provenance

The following attestation bundles were made for rectangle_packer-2.0.4-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: build_wheels.yml on Penlect/rectangle-packer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rectangle_packer-2.0.4-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for rectangle_packer-2.0.4-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 dfc1f76577ce85b63dfc90bf80ee3d042d7ea2fc41f24138797cf4b5e24b40e6
MD5 c815226dc98c2aa10960ed1572034d2f
BLAKE2b-256 289bc0ab6ce90ff40b4af8ad6365260cfc9920442b68018a5a243e9f307be3fb

See more details on using hashes here.

Provenance

The following attestation bundles were made for rectangle_packer-2.0.4-cp39-cp39-win_amd64.whl:

Publisher: build_wheels.yml on Penlect/rectangle-packer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rectangle_packer-2.0.4-cp39-cp39-win32.whl.

File metadata

File hashes

Hashes for rectangle_packer-2.0.4-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 7db427e237cc91795c0367d113173980cd5506e8cc0cd0e53338e0bcdf637366
MD5 836a975fef2b998fe70f4efda8a228ea
BLAKE2b-256 c2bfee293121c45da2999b8177fb98ee1aa688b23914fde1d5b82235ea4992cc

See more details on using hashes here.

Provenance

The following attestation bundles were made for rectangle_packer-2.0.4-cp39-cp39-win32.whl:

Publisher: build_wheels.yml on Penlect/rectangle-packer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rectangle_packer-2.0.4-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rectangle_packer-2.0.4-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5da4a96f43805c000ec6234cf40b768d6d58bf04ab085aed4e38bb70ffb9d6b6
MD5 9cdd80371c1f35a3f17c3b517fe57ea3
BLAKE2b-256 00e60fe6d0b7e023055267fd55c4403f345d4ff47800b5b2b5232e997e7b3f8b

See more details on using hashes here.

Provenance

The following attestation bundles were made for rectangle_packer-2.0.4-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on Penlect/rectangle-packer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rectangle_packer-2.0.4-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for rectangle_packer-2.0.4-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 bb0a560311924bda8ca8035530b97f72d6bde7d3cb85a838b135d3bceb5a348e
MD5 af3d82c6b2f0da8cf6b1f1ce6e3ce51a
BLAKE2b-256 f89af55300bdbe25f3e1859dd50ee347c557beae01e6155057fd26663dfe0f4e

See more details on using hashes here.

Provenance

The following attestation bundles were made for rectangle_packer-2.0.4-cp39-cp39-musllinux_1_2_i686.whl:

Publisher: build_wheels.yml on Penlect/rectangle-packer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rectangle_packer-2.0.4-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rectangle_packer-2.0.4-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ea64c7ce27f812d4408adc2cf2a7ccf9cd53f6caa46965b04d2087de0be920bc
MD5 e7e4d831ecc64e92343db74424d83804
BLAKE2b-256 e047f22dcc1edfc2c00ffa878ae312137a125ebedd5118196c06d176a564aeaf

See more details on using hashes here.

Provenance

The following attestation bundles were made for rectangle_packer-2.0.4-cp39-cp39-musllinux_1_2_aarch64.whl:

Publisher: build_wheels.yml on Penlect/rectangle-packer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rectangle_packer-2.0.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rectangle_packer-2.0.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d33dea467acacf28888709623256e81fd935a45c2fbff875ffd2552cf1ed072f
MD5 27a8d0588fd97f205271482978a43c42
BLAKE2b-256 7d393149b84087002f84625eb67b9e95f865f8385974eae8fbf7fbe3ab04c56e

See more details on using hashes here.

Provenance

The following attestation bundles were made for rectangle_packer-2.0.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: build_wheels.yml on Penlect/rectangle-packer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rectangle_packer-2.0.4-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 rectangle_packer-2.0.4-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 87a5331b82c66157f70cbb2825067200c8c3e767b537b21ac5d071369549e010
MD5 f19af20e5aafbbebb337b711411dbb21
BLAKE2b-256 5360362de5f092874900a2f45d1a71a46bc78b2f198f99c35b0b88418c59a6d5

See more details on using hashes here.

Provenance

The following attestation bundles were made for rectangle_packer-2.0.4-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build_wheels.yml on Penlect/rectangle-packer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rectangle_packer-2.0.4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for rectangle_packer-2.0.4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 066220fcab8aca3d6cb8387213ce8776b632fcd4302d17e7e29bf10a67e81a80
MD5 ef6b43c8f4b7d66929f0edd0cbc41726
BLAKE2b-256 9800a155f55eddc94c33ae525f06a8462bc0adc1c0ea53a110d2f491b840757d

See more details on using hashes here.

Provenance

The following attestation bundles were made for rectangle_packer-2.0.4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: build_wheels.yml on Penlect/rectangle-packer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rectangle_packer-2.0.4-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rectangle_packer-2.0.4-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7601279304ddb5fc24538fb9367d84083f07e0766359a2da49fb2d4edbdfce51
MD5 acb4a9e1cdc186a2145a3b3ddb6ccb39
BLAKE2b-256 faa3d167ddc9bd1e33ae3cc67851c121d91ab9739a5469490ac12aaa86482c42

See more details on using hashes here.

Provenance

The following attestation bundles were made for rectangle_packer-2.0.4-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on Penlect/rectangle-packer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rectangle_packer-2.0.4-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for rectangle_packer-2.0.4-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 099244b4d278a0738dc211ae26be2a181ad67fd2b5dab24fe6e0fb5e99a2a91c
MD5 ae96afdcc0af1ec935e112dfcf23ca1a
BLAKE2b-256 61f27c756b1df897628ad07be775bba0c5a204b5b38d5559fd31193f8f5949a9

See more details on using hashes here.

Provenance

The following attestation bundles were made for rectangle_packer-2.0.4-cp39-cp39-macosx_10_9_x86_64.whl:

Publisher: build_wheels.yml on Penlect/rectangle-packer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

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