Skip to main content

Exact calculation of the overlap volume and area of spheres and mesh elements

Project description

Exact calculation of the overlap volume and area of spheres and mesh elements

Build Status codecov Quality Gate Status pre-commit
Release PyPI
C++ Python Version License: MIT DOI

Calculating the intersection or overlapping volume of a sphere and one of the typically used mesh elements such as a tetrahedron or hexahedron is surprisingly challenging. This header-only library implements a numerically robust method to determine this volume.

The mathematical expressions and algorithms used in this code are described in S. Strobl et al.: Exact calculation of the overlap volume of spheres and mesh elements, Journal of Computational Physics, 2016. So if you use the code in projects resulting in any publications, please cite this paper.

Employing the concepts and routines used for the calculation of the overlap volume, the intersection or overlap area of a sphere and the facets of a mesh element can also be calculated with this library.

Usage

Supported primitives

The overlap calculation directly supports these element types:

  • tetrahedra (4 nodes/vertices, data type Tetrahedron)
  • pentahedra/wedges/triangular prisms (6 nodes/vertices, data type Wedge)
  • hexahedra (8 nodes/vertices, data type Hexahedron)

The elements must be convex and have to be specified as a list of three-dimensional nodes/vertices, while the sphere (data type Sphere) requires a center point and the radius.

Node ordering

The element types of the overlap library follow the node numbering conventions of the CFD General Notation System (CGNS) project. Please refer to the CGNS documentation for the order of the nodes of hexahedral, tetrahedral, and pentahedral/wedge-shaped elements of linear order, respectively. Also the ordering of the faces uses the conventions of CGNS. This should make interfacing this library with existing codes rather easy, often even without the need to reorder nodes.

Dependencies

The compile-time dependencies of this code are:

The software is currently continuously compiled and tested with the following compilers on both x86-64 and ARM64:

Compiler Versions
GNU G++ 14.0.1, 13.2.0, 12.3.0, 11.4.0, 10.5.0, 9.5.0
Clang/LLVM 18.1.3, 17.0.6, 16.0.6, 15.0.7, 14.0.0, 13.0.1, 12.0.1, 11.1.0

Additionally, the Intel C++ compiler starting with version 19.0 should work, albeit this configuration is not part of the CI process. All the newer LLVM-based oneAPI compilers are expected to work.

C++

Try it online

The library is implemented as a header-only library written in C++17. To use it in your code, simply include the header file include/overlap/overlap.hpp and make sure the Eigen3 headers can be found by your compiler or build system. The library exposes two relevant type aliases, namely Scalar for double and Vector for Eigen::Matrix<Scalar, 3, 1, Eigen::DontAlign>, which are used in the public interface for scalar and vectorial quantities, respectively. In principle, these types can be adjusted to specific needs, yet reducing the numerical precision of the scalar floating point type will have a significant impact on the precision and stability of the calculations.

A minimal example calculating the overlap volume of a hexahedron with a side length of 2 centered at the origin and a sphere with radius 1 centered at a corner of the hexahedron could look something like this:

using namespace overlap;

const auto vertices = std::array<Vector, 8>{{
    {-1, -1, -1},
    { 1, -1, -1},
    { 1,  1, -1},
    {-1,  1, -1},
    {-1, -1,  1},
    { 1, -1,  1},
    { 1,  1,  1},
    {-1,  1,  1}
}};

const auto hex = Hexahedron{vertices};
const auto sphere = Sphere{Vector::Constant(1), 1};

const auto volume = overlap_volume(sphere, hex);

This code snippet calculates the correct result (π/6) for this simple configuration.

To obtain the overlap area of a sphere and the facets of a tetrahedron, the function overlap_area() can be employed as such:

using namespace overlap;

const auto vertices = std::array<Vector, 4>{{
    {-std::sqrt(3) / 6.0, -1.0 / 2.0, 0},
    { std::sqrt(3) / 3.0,  0.0, 0},
    {-std::sqrt(3) / 6.0,  1.0 / 2.0, 0},
    {0, 0, std::sqrt(6) / 3.0},
}};

const auto tet = Tetrahedron{vertices};
const auto sphere = Sphere{{0, 0, 1.5}, 1.25};

const auto result = overlap_area(sphere, tet);

std::cout << "surface area of sphere intersecting tetrahedron: " <<
    result.front() << "\n";

std::cout << "overlap areas per face:\n";
for(auto face_idx = 0u; face_idx < tet.faces.size(); ++face_idx) {
    std::cout << "  face #" << face_idx << ": " <<
        // the indices of the faces are NOT zero-based here!
        result[face_idx + 1] << "\n";
}

std::cout << "total surface area of tetrahedron intersecting sphere: " <<
    result.back() << "\n";

Python

The Python version of the overlap library is available via the Python Package Index (PyPI), so for most environments installation should be possible simply via pip install overlap.

In case no pre-built package or wheel is available for your system, compilation of the wrapper code is required which in turn requires the requirements listed above for the C++ version to be fulfilled.

The interface of Python version closely resembles the interface of the C++ version:

import numpy as np
import overlap

vertices = np.array(
    (
        (-1, -np.sqrt(1.0 / 3.0), -np.sqrt(1.0 / 6.0)),
        (1, -np.sqrt(1.0 / 3.0), -np.sqrt(1.0 / 6.0)),
        (0, np.sqrt(4.0 / 3.0), -np.sqrt(1.0 / 6.0)),
        (0, 0, np.sqrt(3.0 / 2.0)),
    )
)

tet = overlap.Tetrahedron(vertices)
sphere = overlap.Sphere((0, 0, 0.5), 1)
result = overlap.overlap_volume(sphere, tet)

Calculation of the overlap area instead of the overlap volume is possible via the function overlap_area() of the package.

License

The overlap library is distributed under the MIT license, please refer to the LICENSE file for the full license text.

This distribution uses external third-party software covered by separate license terms. For details, please consult the corresponding license terms of the respective package.

Package License
Eigen MPL2
pybind11 3-clause BSD
doctest MIT
nanobench MIT

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

overlap-0.2.0.tar.gz (53.6 kB view details)

Uploaded Source

Built Distributions

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

overlap-0.2.0-pp311-pypy311_pp73-win_amd64.whl (135.0 kB view details)

Uploaded PyPyWindows x86-64

overlap-0.2.0-pp311-pypy311_pp73-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (160.4 kB view details)

Uploaded PyPymanylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

overlap-0.2.0-pp311-pypy311_pp73-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (145.3 kB view details)

Uploaded PyPymanylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

overlap-0.2.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl (136.9 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

overlap-0.2.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl (155.3 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

overlap-0.2.0-pp310-pypy310_pp73-win_amd64.whl (133.9 kB view details)

Uploaded PyPyWindows x86-64

overlap-0.2.0-pp310-pypy310_pp73-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (159.7 kB view details)

Uploaded PyPymanylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

overlap-0.2.0-pp310-pypy310_pp73-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (144.0 kB view details)

Uploaded PyPymanylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

overlap-0.2.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl (135.4 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

overlap-0.2.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl (154.0 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

overlap-0.2.0-cp314-cp314-win_amd64.whl (139.2 kB view details)

Uploaded CPython 3.14Windows x86-64

overlap-0.2.0-cp314-cp314-win32.whl (127.2 kB view details)

Uploaded CPython 3.14Windows x86

overlap-0.2.0-cp314-cp314-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

overlap-0.2.0-cp314-cp314-musllinux_1_2_i686.whl (1.3 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

overlap-0.2.0-cp314-cp314-musllinux_1_2_armv7l.whl (986.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

overlap-0.2.0-cp314-cp314-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

overlap-0.2.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (165.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

overlap-0.2.0-cp314-cp314-manylinux_2_26_i686.manylinux_2_28_i686.whl (168.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.26+ i686manylinux: glibc 2.28+ i686

overlap-0.2.0-cp314-cp314-manylinux_2_26_armv7l.manylinux_2_31_armv7l.whl (128.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.26+ ARMv7lmanylinux: glibc 2.31+ ARMv7l

overlap-0.2.0-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (149.4 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

overlap-0.2.0-cp314-cp314-macosx_11_0_arm64.whl (138.6 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

overlap-0.2.0-cp314-cp314-macosx_10_15_x86_64.whl (157.4 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

overlap-0.2.0-cp313-cp313-win_amd64.whl (136.4 kB view details)

Uploaded CPython 3.13Windows x86-64

overlap-0.2.0-cp313-cp313-win32.whl (124.0 kB view details)

Uploaded CPython 3.13Windows x86

overlap-0.2.0-cp313-cp313-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

overlap-0.2.0-cp313-cp313-musllinux_1_2_i686.whl (1.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

overlap-0.2.0-cp313-cp313-musllinux_1_2_armv7l.whl (986.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

overlap-0.2.0-cp313-cp313-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

overlap-0.2.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (164.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

overlap-0.2.0-cp313-cp313-manylinux_2_26_i686.manylinux_2_28_i686.whl (168.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.26+ i686manylinux: glibc 2.28+ i686

overlap-0.2.0-cp313-cp313-manylinux_2_26_armv7l.manylinux_2_31_armv7l.whl (128.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.26+ ARMv7lmanylinux: glibc 2.31+ ARMv7l

overlap-0.2.0-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (148.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

overlap-0.2.0-cp313-cp313-macosx_11_0_arm64.whl (138.3 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

overlap-0.2.0-cp313-cp313-macosx_10_15_x86_64.whl (157.2 kB view details)

Uploaded CPython 3.13macOS 10.15+ x86-64

overlap-0.2.0-cp312-cp312-win_amd64.whl (136.3 kB view details)

Uploaded CPython 3.12Windows x86-64

overlap-0.2.0-cp312-cp312-win32.whl (124.0 kB view details)

Uploaded CPython 3.12Windows x86

overlap-0.2.0-cp312-cp312-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

overlap-0.2.0-cp312-cp312-musllinux_1_2_i686.whl (1.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

overlap-0.2.0-cp312-cp312-musllinux_1_2_armv7l.whl (986.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

overlap-0.2.0-cp312-cp312-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

overlap-0.2.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (165.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

overlap-0.2.0-cp312-cp312-manylinux_2_26_i686.manylinux_2_28_i686.whl (168.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.26+ i686manylinux: glibc 2.28+ i686

overlap-0.2.0-cp312-cp312-manylinux_2_26_armv7l.manylinux_2_31_armv7l.whl (128.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.26+ ARMv7lmanylinux: glibc 2.31+ ARMv7l

overlap-0.2.0-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (148.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

overlap-0.2.0-cp312-cp312-macosx_11_0_arm64.whl (138.2 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

overlap-0.2.0-cp312-cp312-macosx_10_15_x86_64.whl (157.1 kB view details)

Uploaded CPython 3.12macOS 10.15+ x86-64

overlap-0.2.0-cp311-cp311-win_amd64.whl (135.1 kB view details)

Uploaded CPython 3.11Windows x86-64

overlap-0.2.0-cp311-cp311-win32.whl (123.4 kB view details)

Uploaded CPython 3.11Windows x86

overlap-0.2.0-cp311-cp311-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

overlap-0.2.0-cp311-cp311-musllinux_1_2_i686.whl (1.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

overlap-0.2.0-cp311-cp311-musllinux_1_2_armv7l.whl (984.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

overlap-0.2.0-cp311-cp311-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

overlap-0.2.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (160.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

overlap-0.2.0-cp311-cp311-manylinux_2_26_i686.manylinux_2_28_i686.whl (166.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.26+ i686manylinux: glibc 2.28+ i686

overlap-0.2.0-cp311-cp311-manylinux_2_26_armv7l.manylinux_2_31_armv7l.whl (129.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.26+ ARMv7lmanylinux: glibc 2.31+ ARMv7l

overlap-0.2.0-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (145.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

overlap-0.2.0-cp311-cp311-macosx_11_0_arm64.whl (136.9 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

overlap-0.2.0-cp311-cp311-macosx_10_15_x86_64.whl (155.1 kB view details)

Uploaded CPython 3.11macOS 10.15+ x86-64

overlap-0.2.0-cp310-cp310-win_amd64.whl (134.4 kB view details)

Uploaded CPython 3.10Windows x86-64

overlap-0.2.0-cp310-cp310-win32.whl (122.3 kB view details)

Uploaded CPython 3.10Windows x86

overlap-0.2.0-cp310-cp310-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

overlap-0.2.0-cp310-cp310-musllinux_1_2_i686.whl (1.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

overlap-0.2.0-cp310-cp310-musllinux_1_2_armv7l.whl (984.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

overlap-0.2.0-cp310-cp310-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

overlap-0.2.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (161.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

overlap-0.2.0-cp310-cp310-manylinux_2_26_i686.manylinux_2_28_i686.whl (164.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.26+ i686manylinux: glibc 2.28+ i686

overlap-0.2.0-cp310-cp310-manylinux_2_26_armv7l.manylinux_2_31_armv7l.whl (128.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.26+ ARMv7lmanylinux: glibc 2.31+ ARMv7l

overlap-0.2.0-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (145.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

overlap-0.2.0-cp310-cp310-macosx_11_0_arm64.whl (135.5 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

overlap-0.2.0-cp310-cp310-macosx_10_15_x86_64.whl (153.7 kB view details)

Uploaded CPython 3.10macOS 10.15+ x86-64

overlap-0.2.0-cp39-cp39-win_amd64.whl (137.0 kB view details)

Uploaded CPython 3.9Windows x86-64

overlap-0.2.0-cp39-cp39-win32.whl (122.2 kB view details)

Uploaded CPython 3.9Windows x86

overlap-0.2.0-cp39-cp39-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

overlap-0.2.0-cp39-cp39-musllinux_1_2_i686.whl (1.3 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

overlap-0.2.0-cp39-cp39-musllinux_1_2_armv7l.whl (984.1 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

overlap-0.2.0-cp39-cp39-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

overlap-0.2.0-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (159.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

overlap-0.2.0-cp39-cp39-manylinux_2_26_i686.manylinux_2_28_i686.whl (165.0 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.26+ i686manylinux: glibc 2.28+ i686

overlap-0.2.0-cp39-cp39-manylinux_2_26_armv7l.manylinux_2_31_armv7l.whl (128.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.26+ ARMv7lmanylinux: glibc 2.31+ ARMv7l

overlap-0.2.0-cp39-cp39-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (145.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

overlap-0.2.0-cp39-cp39-macosx_11_0_arm64.whl (135.6 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

overlap-0.2.0-cp39-cp39-macosx_10_15_x86_64.whl (153.8 kB view details)

Uploaded CPython 3.9macOS 10.15+ x86-64

File details

Details for the file overlap-0.2.0.tar.gz.

File metadata

  • Download URL: overlap-0.2.0.tar.gz
  • Upload date:
  • Size: 53.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for overlap-0.2.0.tar.gz
Algorithm Hash digest
SHA256 db6c91a34e5b05455e0822214e4d888dc967286cdb8744354af81ebe4886cca1
MD5 c6ff38b4ad1b8b4ce6247ca25eafa422
BLAKE2b-256 42c3e39cd7015a9a9647595c759eb1f0b330e9b1ed9e18c661094e58f337cad2

See more details on using hashes here.

Provenance

The following attestation bundles were made for overlap-0.2.0.tar.gz:

Publisher: wheels.yaml on severinstrobl/overlap

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

File details

Details for the file overlap-0.2.0-pp311-pypy311_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for overlap-0.2.0-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 cec226e6d88ed6d460440637623db11908af69549c20dcfaa1798009935f6895
MD5 259f70a31b687e68cdf5336215e51ad4
BLAKE2b-256 bc29df0afe2f341b2792ec3e3700544d82c3e200ab41d33042ad7ba02c56a758

See more details on using hashes here.

Provenance

The following attestation bundles were made for overlap-0.2.0-pp311-pypy311_pp73-win_amd64.whl:

Publisher: wheels.yaml on severinstrobl/overlap

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

File details

Details for the file overlap-0.2.0-pp311-pypy311_pp73-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for overlap-0.2.0-pp311-pypy311_pp73-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 fbea4c90760b4c79afd19aac8da76395fa2892ebaeee3f42d387f15c6aa24508
MD5 47dc794d8d42288c660f3d3be0631d5d
BLAKE2b-256 0487d71de3e8bedebfe9a0cdd551c8e04d20758a6a63ddf94190bec36d5af5a7

See more details on using hashes here.

Provenance

The following attestation bundles were made for overlap-0.2.0-pp311-pypy311_pp73-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yaml on severinstrobl/overlap

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

File details

Details for the file overlap-0.2.0-pp311-pypy311_pp73-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for overlap-0.2.0-pp311-pypy311_pp73-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c53dac653aeda019543a5c9560c403c9c5b37e4349aff7003821c1a612f87d2e
MD5 a8835e0601ddb6e4399d580bf53d2dc9
BLAKE2b-256 6d85dc4f6080f32a0092edab3f6445a4cd90f7628c1594ff84fee23cd9ab8033

See more details on using hashes here.

Provenance

The following attestation bundles were made for overlap-0.2.0-pp311-pypy311_pp73-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: wheels.yaml on severinstrobl/overlap

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

File details

Details for the file overlap-0.2.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for overlap-0.2.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3d7d05f8f28f2a5207f03b8c048ec5820d2d0973996224b31d401923e3f95331
MD5 6fa07329c2cf2cfe282caea28870357f
BLAKE2b-256 b832fb288660521d2d23ddf659d846f60a0aa39d1ddfe63795bf9c468b0e62ba

See more details on using hashes here.

Provenance

The following attestation bundles were made for overlap-0.2.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl:

Publisher: wheels.yaml on severinstrobl/overlap

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

File details

Details for the file overlap-0.2.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for overlap-0.2.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 c7e925ec2c4b3d329ddadb0c2b3b90930d23d22efe01dc3fdac2a3f551012eec
MD5 e0cad55987bc8e2accab432019318c02
BLAKE2b-256 0a89309e2d092631c4c787eb4d24b58e32b53293bd5048b2df1b55f6990d00af

See more details on using hashes here.

Provenance

The following attestation bundles were made for overlap-0.2.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl:

Publisher: wheels.yaml on severinstrobl/overlap

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

File details

Details for the file overlap-0.2.0-pp310-pypy310_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for overlap-0.2.0-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 afb7960396da96ca4439d4d8ed9786b7d840dffd825310a2dce37746c7ea0adf
MD5 7ffb04e672fd80faa12d77acb189fc22
BLAKE2b-256 d4ec7325bd62efc50d78c79846587f79f2cc0188b59e962e35be6fe2bbc825a7

See more details on using hashes here.

Provenance

The following attestation bundles were made for overlap-0.2.0-pp310-pypy310_pp73-win_amd64.whl:

Publisher: wheels.yaml on severinstrobl/overlap

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

File details

Details for the file overlap-0.2.0-pp310-pypy310_pp73-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for overlap-0.2.0-pp310-pypy310_pp73-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 bac27a31dd7b797f4383c2a7c11f8b4980007a278a3df96ac2792e51e67d9432
MD5 32831f73e98d73b3c4020c1e7ee010ea
BLAKE2b-256 ba78ff30207af22a1fb97296e0523ae20c76badc2639b40b7442abc1952963b5

See more details on using hashes here.

Provenance

The following attestation bundles were made for overlap-0.2.0-pp310-pypy310_pp73-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yaml on severinstrobl/overlap

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

File details

Details for the file overlap-0.2.0-pp310-pypy310_pp73-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for overlap-0.2.0-pp310-pypy310_pp73-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 31d889b1b6ab585ec71ad9fba46f1132ef3402a09a3a08f986a98ca8065f5c3d
MD5 17ca70d6fda431dbaed0d2c6f163bd48
BLAKE2b-256 5048749f4a13f0687c119c0a7b950b94a4c2581cbd082b31ee1300f519f76fee

See more details on using hashes here.

Provenance

The following attestation bundles were made for overlap-0.2.0-pp310-pypy310_pp73-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: wheels.yaml on severinstrobl/overlap

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

File details

Details for the file overlap-0.2.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for overlap-0.2.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 60daa8f01bff0c346e4be7d73f325828484ec6da7bb64b4404888c850539a5f9
MD5 8d40e22f07266d26c1e682c82847970c
BLAKE2b-256 f50bb3d19282b568d282cb5b7fa4a1e89314e3c18049e563e6b95acee97b62d5

See more details on using hashes here.

Provenance

The following attestation bundles were made for overlap-0.2.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl:

Publisher: wheels.yaml on severinstrobl/overlap

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

File details

Details for the file overlap-0.2.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for overlap-0.2.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 bd2bbdc21224fd8d71c481bc7269033d740d36707e799dd974798c8d07816d1b
MD5 b2bee8371ad65f00a7da0f9ea2da417e
BLAKE2b-256 8cac1afe886647086bb0ce59d4c5f170da6106f5bf9c1ad4faa01708e12c1979

See more details on using hashes here.

Provenance

The following attestation bundles were made for overlap-0.2.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl:

Publisher: wheels.yaml on severinstrobl/overlap

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

File details

Details for the file overlap-0.2.0-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: overlap-0.2.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 139.2 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for overlap-0.2.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 b3c4eb637d2de21a9988d11d97d10b76c06c9877aad2f2966d1ffd95c5d88275
MD5 c479ed09c1304e674cb3be15de6246d3
BLAKE2b-256 119f29499760c9ef415004d3f37ee2ed98d4f8a5c4265024f18dc551aeff2e72

See more details on using hashes here.

Provenance

The following attestation bundles were made for overlap-0.2.0-cp314-cp314-win_amd64.whl:

Publisher: wheels.yaml on severinstrobl/overlap

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

File details

Details for the file overlap-0.2.0-cp314-cp314-win32.whl.

File metadata

  • Download URL: overlap-0.2.0-cp314-cp314-win32.whl
  • Upload date:
  • Size: 127.2 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for overlap-0.2.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 e4175d4f9325d2874ac5019052841e373af363d824f107d7946adfb09a9ce176
MD5 27b069552a575b55ab5199d350116871
BLAKE2b-256 ec31b86b711f2297841d2aa3bddb3e51beed07bac69e651cb52211806ff05873

See more details on using hashes here.

Provenance

The following attestation bundles were made for overlap-0.2.0-cp314-cp314-win32.whl:

Publisher: wheels.yaml on severinstrobl/overlap

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

File details

Details for the file overlap-0.2.0-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for overlap-0.2.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 282f437fb44e2f42162484779e591b454506cd6caeb6c8c2af9db550cbf68c52
MD5 4e823f75562c058022e2a77f0186bdc9
BLAKE2b-256 2531c68ddbe24ea79271af839ed27564d9b2bd0966d489fdaa013344ecbc3a70

See more details on using hashes here.

Provenance

The following attestation bundles were made for overlap-0.2.0-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: wheels.yaml on severinstrobl/overlap

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

File details

Details for the file overlap-0.2.0-cp314-cp314-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for overlap-0.2.0-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7c2caad6a447eb2bfaad856490679a3d84fbd9ef8a0c3253ba243156c14dffe1
MD5 3c96488494659e4d110205bb16784b4b
BLAKE2b-256 4203aed1c254b565aa174eb988c7357258c43a60e491aaf8b694f6ad97d3d867

See more details on using hashes here.

Provenance

The following attestation bundles were made for overlap-0.2.0-cp314-cp314-musllinux_1_2_i686.whl:

Publisher: wheels.yaml on severinstrobl/overlap

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

File details

Details for the file overlap-0.2.0-cp314-cp314-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for overlap-0.2.0-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8d10bdd747daf7a6efb1e1b5643cf4596bacfd5d0b689170c888af4586b09112
MD5 0d7b2caeda6e23eb98c9209aaff3c365
BLAKE2b-256 21c3755c0c2e9b51f54ef67d2193fbda676a1f66c197bc112ba48e29efd90592

See more details on using hashes here.

Provenance

The following attestation bundles were made for overlap-0.2.0-cp314-cp314-musllinux_1_2_armv7l.whl:

Publisher: wheels.yaml on severinstrobl/overlap

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

File details

Details for the file overlap-0.2.0-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for overlap-0.2.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cc4ed0c1567c422a9e5805249a1b88167dcfe234788e8ba1fb561d6760541188
MD5 70a514983d52a1821ee5e8512cfefbac
BLAKE2b-256 8b2662e8f4b7a83efbd287bb804cd984d6f24070ea6c59e62ad3ad135b967d64

See more details on using hashes here.

Provenance

The following attestation bundles were made for overlap-0.2.0-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: wheels.yaml on severinstrobl/overlap

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

File details

Details for the file overlap-0.2.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for overlap-0.2.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e220d5b7b32a4126f52d93393b5e76b710e6be9dcc97f7f706688ea41c552424
MD5 516b325c71d7ada8c9a729f60907ff1c
BLAKE2b-256 8763ddd8ceeda9edbe75e86164d52e31aa93967bdbff1a3beb996488f21a8ff6

See more details on using hashes here.

Provenance

The following attestation bundles were made for overlap-0.2.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yaml on severinstrobl/overlap

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

File details

Details for the file overlap-0.2.0-cp314-cp314-manylinux_2_26_i686.manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for overlap-0.2.0-cp314-cp314-manylinux_2_26_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 3d38f4c64a413f44b36b3c3213f4910d273f5b09f8e98d4148fbc1f2b8e5a5bf
MD5 ec2e49772587c4104d3d350efd03b22f
BLAKE2b-256 1611c64b4c44537bc833ef2ecfdc7c93ae2776677c7674d6239c82d7e3f56ed1

See more details on using hashes here.

Provenance

The following attestation bundles were made for overlap-0.2.0-cp314-cp314-manylinux_2_26_i686.manylinux_2_28_i686.whl:

Publisher: wheels.yaml on severinstrobl/overlap

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

File details

Details for the file overlap-0.2.0-cp314-cp314-manylinux_2_26_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for overlap-0.2.0-cp314-cp314-manylinux_2_26_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 076454b8e9f52752a137c96edfd443cec909a43ff682714fd9dca06c79d862b5
MD5 a7146a0716030cb783a6067f945cac8a
BLAKE2b-256 8926fa5899602cadd720e2ab7fd5d8871d601fafd48fd7c5fa7f6f80acfacc48

See more details on using hashes here.

Provenance

The following attestation bundles were made for overlap-0.2.0-cp314-cp314-manylinux_2_26_armv7l.manylinux_2_31_armv7l.whl:

Publisher: wheels.yaml on severinstrobl/overlap

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

File details

Details for the file overlap-0.2.0-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for overlap-0.2.0-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 db237346474fa418e524a31a4ce1bba1c835f9068d15b5e5abf46d05819473b2
MD5 eb0538c7162eb57f53596273c4c3b774
BLAKE2b-256 a80abd7a4fb68a875e4f3396264ce8addee5f4799058fe01390d7eb853af411f

See more details on using hashes here.

Provenance

The following attestation bundles were made for overlap-0.2.0-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: wheels.yaml on severinstrobl/overlap

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

File details

Details for the file overlap-0.2.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for overlap-0.2.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 703a8fd2d170696a04d638642ba15004937d175f87eef90007c8b048474eac72
MD5 cff9966d7deac3204d1bbc767d3cf7a3
BLAKE2b-256 382c617934910c8e8917856e8700ddf411d6685133d3468a59f1cbb73a1b96e7

See more details on using hashes here.

Provenance

The following attestation bundles were made for overlap-0.2.0-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: wheels.yaml on severinstrobl/overlap

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

File details

Details for the file overlap-0.2.0-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for overlap-0.2.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 af16cc42f582592b8383d76205dad495f1f939f61e5047731f268fb460518b9e
MD5 ef3d1b6375de5b458212cfb512fbad49
BLAKE2b-256 d6f668f3dd89573bf7b83969a24d57da9b1e31d0b8851f8e683700842ad5a1cf

See more details on using hashes here.

Provenance

The following attestation bundles were made for overlap-0.2.0-cp314-cp314-macosx_10_15_x86_64.whl:

Publisher: wheels.yaml on severinstrobl/overlap

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

File details

Details for the file overlap-0.2.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: overlap-0.2.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 136.4 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for overlap-0.2.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 6de8cf8cffed8ecf6e91d84f3fb4da692faea0d6c80092fafde2bf502517cfd5
MD5 1326a013fffa127905e43b5096580b72
BLAKE2b-256 039acb344821cf6207a49c983bcf40dd468e4288646435f68bad7b13b002c7c8

See more details on using hashes here.

Provenance

The following attestation bundles were made for overlap-0.2.0-cp313-cp313-win_amd64.whl:

Publisher: wheels.yaml on severinstrobl/overlap

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

File details

Details for the file overlap-0.2.0-cp313-cp313-win32.whl.

File metadata

  • Download URL: overlap-0.2.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 124.0 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for overlap-0.2.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 ccfa2b9462bb838ed8ad77e779a3eff7aba66b49c1d0ec4dc51f4b93fe286004
MD5 f22d5fd9a6cd4c9ba2cbd6c546689add
BLAKE2b-256 8e62d993cedd726d18ca981a027bee68940ef3834b1bfa9e6bac15cede1c8b38

See more details on using hashes here.

Provenance

The following attestation bundles were made for overlap-0.2.0-cp313-cp313-win32.whl:

Publisher: wheels.yaml on severinstrobl/overlap

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

File details

Details for the file overlap-0.2.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for overlap-0.2.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e8c55f8ca545dde91b2a423a4cae9be77bb85476a2a1b7e93538b8efd449f6a3
MD5 cde82cb1d2c46eb593942e7882c8dcaa
BLAKE2b-256 8195a7eb5dedc8aee84226eef85543b1f3d8b2800e58695c0de2076d24953386

See more details on using hashes here.

Provenance

The following attestation bundles were made for overlap-0.2.0-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: wheels.yaml on severinstrobl/overlap

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

File details

Details for the file overlap-0.2.0-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for overlap-0.2.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1d0626192309231c3419498abd20d75604396a9e368c1b4756eeceb083c9573a
MD5 3cac85b378013aa7071555767371167b
BLAKE2b-256 53cc09d8f7a3fe883cfb3e82659af5588af04827f5c89ea50f06fb7ab3948184

See more details on using hashes here.

Provenance

The following attestation bundles were made for overlap-0.2.0-cp313-cp313-musllinux_1_2_i686.whl:

Publisher: wheels.yaml on severinstrobl/overlap

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

File details

Details for the file overlap-0.2.0-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for overlap-0.2.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8de792f2cffcbe1eb227b56a40bbcd85d252a9ee79e5337b13f5684ac923ab93
MD5 db89bb8809089532a9c038ee6aabb97f
BLAKE2b-256 970c4569c7f411f17d16eea5f2cac07a0facb7222224532b01736eb82632c649

See more details on using hashes here.

Provenance

The following attestation bundles were made for overlap-0.2.0-cp313-cp313-musllinux_1_2_armv7l.whl:

Publisher: wheels.yaml on severinstrobl/overlap

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

File details

Details for the file overlap-0.2.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for overlap-0.2.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 63047d9f9972380fc7b9af81ba87a0f760815bedcfc49c49ce9a7476079e5dfe
MD5 7514d24238857f79a1a262e7726417ac
BLAKE2b-256 98d36870cfca0fe574b136ea7001392dd226581ce01cda715499c315d6cc6b18

See more details on using hashes here.

Provenance

The following attestation bundles were made for overlap-0.2.0-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: wheels.yaml on severinstrobl/overlap

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

File details

Details for the file overlap-0.2.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for overlap-0.2.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2d3d5981e76d023281ecc945f301c6d7a3018a7e583cffdf80ac797e39aca630
MD5 b6635eabc60a1baf04c565ee2eb80660
BLAKE2b-256 217f842add5abb582d78519f7cb26f643dec15f61ee66639ebaf720587f46aa1

See more details on using hashes here.

Provenance

The following attestation bundles were made for overlap-0.2.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yaml on severinstrobl/overlap

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

File details

Details for the file overlap-0.2.0-cp313-cp313-manylinux_2_26_i686.manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for overlap-0.2.0-cp313-cp313-manylinux_2_26_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 701df6156a605a8789f9b205d9cdff8f9cc1e926fa0e37fd79fc494a6cfee5dc
MD5 1550847343f33f2a675e497266610c98
BLAKE2b-256 133169b5b478bd87c716b6c27fdead5cef620c2848798007091fe011905126f4

See more details on using hashes here.

Provenance

The following attestation bundles were made for overlap-0.2.0-cp313-cp313-manylinux_2_26_i686.manylinux_2_28_i686.whl:

Publisher: wheels.yaml on severinstrobl/overlap

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

File details

Details for the file overlap-0.2.0-cp313-cp313-manylinux_2_26_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for overlap-0.2.0-cp313-cp313-manylinux_2_26_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 c66d43fa399ec06784c43133b4191de1a22937d2d30e3f2f28c8e1f66edaa0a3
MD5 4b3c28052eb4cac3d4ce096d38ceea14
BLAKE2b-256 c164a484528e3137e13bdaec3c682d2d8d451809b733e05adf84d8197f5f7b29

See more details on using hashes here.

Provenance

The following attestation bundles were made for overlap-0.2.0-cp313-cp313-manylinux_2_26_armv7l.manylinux_2_31_armv7l.whl:

Publisher: wheels.yaml on severinstrobl/overlap

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

File details

Details for the file overlap-0.2.0-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for overlap-0.2.0-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e6f90b5f33155d49428878b7713c9de3b00e04fdcc8c8b87bd36255d6972cbb2
MD5 7b8507165e66d2fec1c783b00ae92a5b
BLAKE2b-256 1f26f8f53c960990841e4c2552568a8538b54d133f31afaf83a603e864e09976

See more details on using hashes here.

Provenance

The following attestation bundles were made for overlap-0.2.0-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: wheels.yaml on severinstrobl/overlap

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

File details

Details for the file overlap-0.2.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for overlap-0.2.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b0a35669f567909b2a1eab31d3d2c00d6d302351d0f967ccae78b933979317ec
MD5 d9a60d3dc93de6d38b01550bbd34fccf
BLAKE2b-256 3699921085bb4bc1011ed50f13581a09a056b0d842578862b00e095e7b817dc0

See more details on using hashes here.

Provenance

The following attestation bundles were made for overlap-0.2.0-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: wheels.yaml on severinstrobl/overlap

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

File details

Details for the file overlap-0.2.0-cp313-cp313-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for overlap-0.2.0-cp313-cp313-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 0304ab6b569ae9e5b790a5f5ba4019ea8d4a4ee5c59a9bf579fd300f7c4b2574
MD5 6d62fabe8f22a9af9fa1c1e7b03df97d
BLAKE2b-256 ddfce481c7d3df74aa4310f22e3d8ed4a973d4bd81322a0a5703f6247e74d40b

See more details on using hashes here.

Provenance

The following attestation bundles were made for overlap-0.2.0-cp313-cp313-macosx_10_15_x86_64.whl:

Publisher: wheels.yaml on severinstrobl/overlap

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

File details

Details for the file overlap-0.2.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: overlap-0.2.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 136.3 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for overlap-0.2.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 df3a8d27922a4e765f45dd42171a52ad4ea07dcc1f5d06cd924d4b6fb79cb90c
MD5 8090d346580c66ac95651d9a76cebadb
BLAKE2b-256 3c28be746fba78dd0813c2d1b7b021c95dbe573baef01a8f12b422424910ca94

See more details on using hashes here.

Provenance

The following attestation bundles were made for overlap-0.2.0-cp312-cp312-win_amd64.whl:

Publisher: wheels.yaml on severinstrobl/overlap

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

File details

Details for the file overlap-0.2.0-cp312-cp312-win32.whl.

File metadata

  • Download URL: overlap-0.2.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 124.0 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for overlap-0.2.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 3761e2861c2d1bfcc91690c262c7c24759727b106bbd038cb94c2340cf9bb17c
MD5 3ff4ec5a18a0abec7774fb83dd57f667
BLAKE2b-256 234cc906a27b6f34716f8c15f9934fe1b9eac562a4a6b7c763524155a120fb61

See more details on using hashes here.

Provenance

The following attestation bundles were made for overlap-0.2.0-cp312-cp312-win32.whl:

Publisher: wheels.yaml on severinstrobl/overlap

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

File details

Details for the file overlap-0.2.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for overlap-0.2.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 93e1f8e0947e377859f887d411d59916b738f49d604ae63176f6a9af45b042e5
MD5 8ca58fdf2a73eebbdd83e43bfd59c87c
BLAKE2b-256 67e17490ab277675d1afe2b6b7d949f5224b104f3061ede94ef30106e5810be6

See more details on using hashes here.

Provenance

The following attestation bundles were made for overlap-0.2.0-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: wheels.yaml on severinstrobl/overlap

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

File details

Details for the file overlap-0.2.0-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for overlap-0.2.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 66557c044abd5285287ab90d270fcd29e033a5441df768f6baa7f9d32f1212bc
MD5 4c1b0a6c2fb73341057eef5ea8026b45
BLAKE2b-256 c206620ff56e12880826aafef50d708d64ee7c51509277f7415539279f9b3475

See more details on using hashes here.

Provenance

The following attestation bundles were made for overlap-0.2.0-cp312-cp312-musllinux_1_2_i686.whl:

Publisher: wheels.yaml on severinstrobl/overlap

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

File details

Details for the file overlap-0.2.0-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for overlap-0.2.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 fe678ee4bd0d6d6dddadb3df5d3a9990ea1fb9a61c056608cdc1ba470b2a9ff9
MD5 f3a1685a5350f2c9e9c75e085c451bed
BLAKE2b-256 5482a17b9d8cbce63ba3a3b58072573eb49f71d1c4ddc23f13bb0f20ef97c7b2

See more details on using hashes here.

Provenance

The following attestation bundles were made for overlap-0.2.0-cp312-cp312-musllinux_1_2_armv7l.whl:

Publisher: wheels.yaml on severinstrobl/overlap

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

File details

Details for the file overlap-0.2.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for overlap-0.2.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 aca783d11d8bcf1a0eca2d50ea39b429bbcff2daa096d3db45bb17eba47374bb
MD5 6edf39ce38341b6227bb5415cbc5f6b7
BLAKE2b-256 f8c7a898bc9eaf7c6818b0bfc255578e7300c0f7ccc124b7dc40ebfe72ffa6cb

See more details on using hashes here.

Provenance

The following attestation bundles were made for overlap-0.2.0-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: wheels.yaml on severinstrobl/overlap

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

File details

Details for the file overlap-0.2.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for overlap-0.2.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e8774a18963f038dfd88a3ff192be1187aa8b93e23f4485716daac2eb20dd7ac
MD5 3f86b700fe2cebd0301f8a38678d80fc
BLAKE2b-256 b5b0f730f07fca920186d960b97a5563af47e1af0a8b849e4330a7a8df0231fb

See more details on using hashes here.

Provenance

The following attestation bundles were made for overlap-0.2.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yaml on severinstrobl/overlap

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

File details

Details for the file overlap-0.2.0-cp312-cp312-manylinux_2_26_i686.manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for overlap-0.2.0-cp312-cp312-manylinux_2_26_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 4de1023c97edfcdce40c781e4541e1094278ac89b75676a363194f8913f2e062
MD5 a20ecd7d5076734e57b09d08b2da251d
BLAKE2b-256 3f03e69371eab397c27a35a8129eb68ecf30a14b368b6422611b1e409b09f8e0

See more details on using hashes here.

Provenance

The following attestation bundles were made for overlap-0.2.0-cp312-cp312-manylinux_2_26_i686.manylinux_2_28_i686.whl:

Publisher: wheels.yaml on severinstrobl/overlap

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

File details

Details for the file overlap-0.2.0-cp312-cp312-manylinux_2_26_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for overlap-0.2.0-cp312-cp312-manylinux_2_26_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 725892762b2e3297ecaecf39b95f090a31716bdf2463ad86f3cee725d7690a45
MD5 2fe8bbbda8935bde918be41d7c391e0c
BLAKE2b-256 6eb195a94b84972bd510d37081cb2d77d58705972f9bb18c7e1ea6231ca764f6

See more details on using hashes here.

Provenance

The following attestation bundles were made for overlap-0.2.0-cp312-cp312-manylinux_2_26_armv7l.manylinux_2_31_armv7l.whl:

Publisher: wheels.yaml on severinstrobl/overlap

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

File details

Details for the file overlap-0.2.0-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for overlap-0.2.0-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 29186db784f38d7dbb1f32ed4324954c5d5c1b124e7d395e8537900a0d9d1be8
MD5 c5ae5115544eda7163cdd3e14d58a704
BLAKE2b-256 63e35aff1a80f1cd931a666f0b0d81da9c207397755cf9878329f30c368fb6b0

See more details on using hashes here.

Provenance

The following attestation bundles were made for overlap-0.2.0-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: wheels.yaml on severinstrobl/overlap

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

File details

Details for the file overlap-0.2.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for overlap-0.2.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bc488de6af199c0a163ccdd3f3f51d590d803bc227776cadcfc5960f45b1d1ad
MD5 94dca101480a3d628eefae033b64c809
BLAKE2b-256 111079891a9e07f423c68a159b4f27ca2473e4ab475138cff36b5cb30f3917d4

See more details on using hashes here.

Provenance

The following attestation bundles were made for overlap-0.2.0-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: wheels.yaml on severinstrobl/overlap

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

File details

Details for the file overlap-0.2.0-cp312-cp312-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for overlap-0.2.0-cp312-cp312-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 88138c3ce7f70dc460168341b4f3fe1e403cba4b27b9479dc79d59504e18c5f4
MD5 8d4bf446415ef1a68fe4ef8387234f84
BLAKE2b-256 71b387697b3bd55e9bfadd7a25ca9f68162a5d3c8ad14bfd56f06885fe641ef5

See more details on using hashes here.

Provenance

The following attestation bundles were made for overlap-0.2.0-cp312-cp312-macosx_10_15_x86_64.whl:

Publisher: wheels.yaml on severinstrobl/overlap

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

File details

Details for the file overlap-0.2.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: overlap-0.2.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 135.1 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for overlap-0.2.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 a181c54ef0f7887dd1808ba9657f6608b83c008b2f5decff98f37e7f0c66bdc4
MD5 f25983d73e28519c83662550fffa2a3a
BLAKE2b-256 cdd062ce843ea485500e65e89176e6c45f768225a0cc90d4e77bfe2bba0b2a9f

See more details on using hashes here.

Provenance

The following attestation bundles were made for overlap-0.2.0-cp311-cp311-win_amd64.whl:

Publisher: wheels.yaml on severinstrobl/overlap

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

File details

Details for the file overlap-0.2.0-cp311-cp311-win32.whl.

File metadata

  • Download URL: overlap-0.2.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 123.4 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for overlap-0.2.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 e14dbdfed8e2d397d39f5bcc52b73b8a2a8184a74d5557a0bbea5ad07a683689
MD5 da3936c89854ed4b77ff18eead2a90d5
BLAKE2b-256 bae25cf48bacb4fb5f209d78b83b1dd04bf3058771fcecdfef3528dbc772de48

See more details on using hashes here.

Provenance

The following attestation bundles were made for overlap-0.2.0-cp311-cp311-win32.whl:

Publisher: wheels.yaml on severinstrobl/overlap

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

File details

Details for the file overlap-0.2.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for overlap-0.2.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9dfb2172ddd1c90b7b9941e4b03a34a171db63127e606929d1ddc799cf45ed7d
MD5 11f4bd8ecada8def3756c45f16fb0d2a
BLAKE2b-256 48ea388664facff638b0a0f233c907e747819465c6238300e691cb66afb65127

See more details on using hashes here.

Provenance

The following attestation bundles were made for overlap-0.2.0-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: wheels.yaml on severinstrobl/overlap

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

File details

Details for the file overlap-0.2.0-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for overlap-0.2.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1939f4833459d0782866e96170969eee043853c8dd92c016cf830eb70c9ad17d
MD5 063d15055b836d1686d1e0ea9cd9f7f7
BLAKE2b-256 4629801c5cbf5e3524e3e1e43ae1d43dbf3fdd769032110c0de38abc7c8689c7

See more details on using hashes here.

Provenance

The following attestation bundles were made for overlap-0.2.0-cp311-cp311-musllinux_1_2_i686.whl:

Publisher: wheels.yaml on severinstrobl/overlap

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

File details

Details for the file overlap-0.2.0-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for overlap-0.2.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f3c2f8f3ad5084641026d01ff70cec2035b36a02aad88505de052e534beae27e
MD5 ccdd46ccebe2ff3bfda10462b5bb1de9
BLAKE2b-256 30cafa9cea1dd02bac411e643ebf78d89ad174ad2e285c6e7c754efd094ccb5c

See more details on using hashes here.

Provenance

The following attestation bundles were made for overlap-0.2.0-cp311-cp311-musllinux_1_2_armv7l.whl:

Publisher: wheels.yaml on severinstrobl/overlap

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

File details

Details for the file overlap-0.2.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for overlap-0.2.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 83b28cd4555e43f1b3391b85ff0fd855ec68bebe9773edc23586d07d1b30c021
MD5 965b756fde190525d1f1fd1fa065b6c1
BLAKE2b-256 6759996cef377c3f30780633d9169ddfe3752be176a00f9a6a64d8d404ee5518

See more details on using hashes here.

Provenance

The following attestation bundles were made for overlap-0.2.0-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: wheels.yaml on severinstrobl/overlap

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

File details

Details for the file overlap-0.2.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for overlap-0.2.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4e114087c104f4afe2f741e1396e6e95e20120d6953142a29f7a1df75948e879
MD5 2fee542f4e376ffe6c18ff38ef88bdce
BLAKE2b-256 6eae363137a0629062e16cd97403afc48f34b86ef72fe2859b15f12f53690191

See more details on using hashes here.

Provenance

The following attestation bundles were made for overlap-0.2.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yaml on severinstrobl/overlap

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

File details

Details for the file overlap-0.2.0-cp311-cp311-manylinux_2_26_i686.manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for overlap-0.2.0-cp311-cp311-manylinux_2_26_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 08255596117ac098efee6caa3cf10bb14478a5a872d9e5adf3f0d809c7714dbb
MD5 7bfcd5874c96ee427870180f2694aed1
BLAKE2b-256 7b2432aa07b30b3d8f46df3e8a36c5f9beaae2d41f573522a3544eba8df83500

See more details on using hashes here.

Provenance

The following attestation bundles were made for overlap-0.2.0-cp311-cp311-manylinux_2_26_i686.manylinux_2_28_i686.whl:

Publisher: wheels.yaml on severinstrobl/overlap

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

File details

Details for the file overlap-0.2.0-cp311-cp311-manylinux_2_26_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for overlap-0.2.0-cp311-cp311-manylinux_2_26_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 c0ef2b3bd0fa3e54aa48eac1a30feade06a5418fa18f1ece7a13e444a8493061
MD5 68bd3eff16d5dfd86207c6628ead41eb
BLAKE2b-256 41bf4c55fed93e38743a1fb4140fe4ed3fa59385c447cafa631ea46a61447649

See more details on using hashes here.

Provenance

The following attestation bundles were made for overlap-0.2.0-cp311-cp311-manylinux_2_26_armv7l.manylinux_2_31_armv7l.whl:

Publisher: wheels.yaml on severinstrobl/overlap

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

File details

Details for the file overlap-0.2.0-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for overlap-0.2.0-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 458e1ed03b6a1ab5aa9d7bc928d0428c52856e2e0019a5d99a97d12c3f2ddce7
MD5 1b1dec3b6e8810ad1cc3128ad58d4d70
BLAKE2b-256 394119f38dee86e25c0ace93e965d4977652c6ee882fcbb5c3edb851b2076921

See more details on using hashes here.

Provenance

The following attestation bundles were made for overlap-0.2.0-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: wheels.yaml on severinstrobl/overlap

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

File details

Details for the file overlap-0.2.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for overlap-0.2.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 797d5a49356ded38d2771a87dce317a08c13645891916885bb7fec3366ce5a13
MD5 8d72641d17d43c25020e9624dd7fd554
BLAKE2b-256 fbfa8ccf534bb21ea3915b373e6a2791b80878d50e9b8ba3257555b8f7279254

See more details on using hashes here.

Provenance

The following attestation bundles were made for overlap-0.2.0-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: wheels.yaml on severinstrobl/overlap

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

File details

Details for the file overlap-0.2.0-cp311-cp311-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for overlap-0.2.0-cp311-cp311-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 994abfad0b9b547cb0a867f66dbb24afa53218fb358ead36159ad735ffab447a
MD5 32721b9cb42037333e5a839fb564e449
BLAKE2b-256 9f8cf56fee5646698501dd49b78de7f2a1eb3316ab834c15e3e1bca292b2c111

See more details on using hashes here.

Provenance

The following attestation bundles were made for overlap-0.2.0-cp311-cp311-macosx_10_15_x86_64.whl:

Publisher: wheels.yaml on severinstrobl/overlap

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

File details

Details for the file overlap-0.2.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: overlap-0.2.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 134.4 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for overlap-0.2.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 12b5d1aa09ef5502c0c8dac7529389950192d4d78b1e094ed8b13cdb9b7a9b26
MD5 ba80c8610a74cef1325c614fb45a30c4
BLAKE2b-256 da2fd4dd150d17813009c746f02d2d9dd82d75f1f395d8a1e9e33ca7e4bf67b6

See more details on using hashes here.

Provenance

The following attestation bundles were made for overlap-0.2.0-cp310-cp310-win_amd64.whl:

Publisher: wheels.yaml on severinstrobl/overlap

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

File details

Details for the file overlap-0.2.0-cp310-cp310-win32.whl.

File metadata

  • Download URL: overlap-0.2.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 122.3 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for overlap-0.2.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 95dbcf11b6772316400201a7b319704d8cda6c42760e8fd36b61148441e0dace
MD5 568898c71335b858cffa3072411f3ff2
BLAKE2b-256 3c10dc8538e16de0d9fe21437fc7f3e4f625d97139949efbdcc2f6fff65509ce

See more details on using hashes here.

Provenance

The following attestation bundles were made for overlap-0.2.0-cp310-cp310-win32.whl:

Publisher: wheels.yaml on severinstrobl/overlap

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

File details

Details for the file overlap-0.2.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for overlap-0.2.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 07a83d8c4764cbde1896d25020e075f4a326f7dc801ba3d95bc8bf0ac6c2fc0d
MD5 f523513b546760dede46a668533a13fe
BLAKE2b-256 b2549fbbbcf18a9380c2663518b6b3b3a3cd7601b97fd03eb8c1332caa590f6e

See more details on using hashes here.

Provenance

The following attestation bundles were made for overlap-0.2.0-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: wheels.yaml on severinstrobl/overlap

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

File details

Details for the file overlap-0.2.0-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for overlap-0.2.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 17a719dcc52e42fbbcbc71fcb337d2e7bff3dc027233c6dcb230300e905099d6
MD5 132b9ef4f173d3a4f666414172ba50d9
BLAKE2b-256 fec6c50622e51f54d9dc7cad2ee3cc69b6042c1c127d165ba2823a7f6418b5bb

See more details on using hashes here.

Provenance

The following attestation bundles were made for overlap-0.2.0-cp310-cp310-musllinux_1_2_i686.whl:

Publisher: wheels.yaml on severinstrobl/overlap

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

File details

Details for the file overlap-0.2.0-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for overlap-0.2.0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a7e3e34cfac70c021e44067b1217379e38b4371994bb0afabf33a789f6527655
MD5 04bbd74c993705d885c1ff79595e79c7
BLAKE2b-256 88d43e58806a92bea9eb9056df0a78090fbcea1225b1d2d5a05c8a542ee57275

See more details on using hashes here.

Provenance

The following attestation bundles were made for overlap-0.2.0-cp310-cp310-musllinux_1_2_armv7l.whl:

Publisher: wheels.yaml on severinstrobl/overlap

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

File details

Details for the file overlap-0.2.0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for overlap-0.2.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 25f4e8b4e0e36a633850763ca87a0768bd78a9a10aee575adf1d72cf1fb2593f
MD5 eec0aa975e1b932f643b9fd6f51a0f51
BLAKE2b-256 f8afbd7f37b3694091fdcc9143f12d0e29892804397b4544d303a02b68d3d5a2

See more details on using hashes here.

Provenance

The following attestation bundles were made for overlap-0.2.0-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: wheels.yaml on severinstrobl/overlap

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

File details

Details for the file overlap-0.2.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for overlap-0.2.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 dcb9151322e16521e83f8396e3266c31a03bac3fef484062a7806a8d28a0e6c7
MD5 3127b7048b663b9adbbdad04f6032440
BLAKE2b-256 cd6942e9ad57d1ac9af8ea60c5449fecf1241c80c131f2e16d8b054d9de01748

See more details on using hashes here.

Provenance

The following attestation bundles were made for overlap-0.2.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yaml on severinstrobl/overlap

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

File details

Details for the file overlap-0.2.0-cp310-cp310-manylinux_2_26_i686.manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for overlap-0.2.0-cp310-cp310-manylinux_2_26_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 f2a61a0d151e189fbf1544931e328412b9a404c6a748056a3833214236e1f66c
MD5 401b3e15d9688a1c23714481cb84eb4b
BLAKE2b-256 36097828ed38442a95e4ebb093ead86bb7d8169d2a54075f22fc628898d099b9

See more details on using hashes here.

Provenance

The following attestation bundles were made for overlap-0.2.0-cp310-cp310-manylinux_2_26_i686.manylinux_2_28_i686.whl:

Publisher: wheels.yaml on severinstrobl/overlap

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

File details

Details for the file overlap-0.2.0-cp310-cp310-manylinux_2_26_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for overlap-0.2.0-cp310-cp310-manylinux_2_26_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 3da585828d25c482bd723f0e70d9d85a69109a917aa60e6de973cdb2e0e0fee5
MD5 f2b0490cd59a7560bb71bcaf8cf7cd40
BLAKE2b-256 8f3f6d0d9c69a52ab94a7d5b7cff14854cdcef65443604b10f5a727a397f345d

See more details on using hashes here.

Provenance

The following attestation bundles were made for overlap-0.2.0-cp310-cp310-manylinux_2_26_armv7l.manylinux_2_31_armv7l.whl:

Publisher: wheels.yaml on severinstrobl/overlap

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

File details

Details for the file overlap-0.2.0-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for overlap-0.2.0-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 542b5aaa92635711734b3ce10d718ccd8aa7fc4a9ffb695817ed78cd4264426d
MD5 a3b2ff13d2ef43c50bcba22c03b78840
BLAKE2b-256 1b4484b082b197482cf8373ba9b4245a2f7756b8d8c294d9fe52ecb24d92b05e

See more details on using hashes here.

Provenance

The following attestation bundles were made for overlap-0.2.0-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: wheels.yaml on severinstrobl/overlap

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

File details

Details for the file overlap-0.2.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for overlap-0.2.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 052feca94d7d2fa5114cfc2f2524e8b6aa8a2e4d3de4de71d7eaa55dd5a00bea
MD5 3337f3f1a7d14f17010865e1f6e8eb99
BLAKE2b-256 9819a4d8b65b316b11d9909798de55597268b9b30398165c1f21b013a3960cc4

See more details on using hashes here.

Provenance

The following attestation bundles were made for overlap-0.2.0-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: wheels.yaml on severinstrobl/overlap

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

File details

Details for the file overlap-0.2.0-cp310-cp310-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for overlap-0.2.0-cp310-cp310-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 6f34a46b1801d74ee92c88936e550d2d9e9cde2d7dc77dde3c16502fe67fe886
MD5 f62a9811af9aba45b82b3ad16d474526
BLAKE2b-256 08d0dc1f0991bfeefac0151cb0d6e89528f9d3bc9a5cad29789efdf276358536

See more details on using hashes here.

Provenance

The following attestation bundles were made for overlap-0.2.0-cp310-cp310-macosx_10_15_x86_64.whl:

Publisher: wheels.yaml on severinstrobl/overlap

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

File details

Details for the file overlap-0.2.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: overlap-0.2.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 137.0 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for overlap-0.2.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 4a0556365bd2c615ccd965febe9fc3de5ed245bb4f5bbdda89eba5e8dc74f0e5
MD5 77681ad6cfe8f455bcc41431210a5911
BLAKE2b-256 a9900a3be67f38f0e0f085a9f80648fe70977c1c3db9d33425f6639868ed406f

See more details on using hashes here.

Provenance

The following attestation bundles were made for overlap-0.2.0-cp39-cp39-win_amd64.whl:

Publisher: wheels.yaml on severinstrobl/overlap

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

File details

Details for the file overlap-0.2.0-cp39-cp39-win32.whl.

File metadata

  • Download URL: overlap-0.2.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 122.2 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for overlap-0.2.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 291a44b61edaaca70284ade3d62b58d4daa7e5d1ce3b8f8e5a722e5d7ac6bf3f
MD5 a938464feae6488c9bbed65d40b77d55
BLAKE2b-256 13f5f092d273f242a55342c3ac1e44816c090ffe338f189e356077d5d6e701e4

See more details on using hashes here.

Provenance

The following attestation bundles were made for overlap-0.2.0-cp39-cp39-win32.whl:

Publisher: wheels.yaml on severinstrobl/overlap

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

File details

Details for the file overlap-0.2.0-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for overlap-0.2.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3740333fd28f27eb3987bdaea979a39334d512f23790149642a3ebb4642a5b4a
MD5 ffaa6d6b87d8b123d0e01838bf65599d
BLAKE2b-256 20829109e82526349bc4e1e58cc6c991a6d766000896730bb3e3ec6268db27f3

See more details on using hashes here.

Provenance

The following attestation bundles were made for overlap-0.2.0-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: wheels.yaml on severinstrobl/overlap

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

File details

Details for the file overlap-0.2.0-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for overlap-0.2.0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d5fd2f0271f5ae2247b17406a932e923a25628214ff543488000b1aff713be0b
MD5 9ed304028055227f46d4030883816b1d
BLAKE2b-256 9e0ae96ade6f54c766044f5e71448b521d91ab954b490ebe08623401f589221e

See more details on using hashes here.

Provenance

The following attestation bundles were made for overlap-0.2.0-cp39-cp39-musllinux_1_2_i686.whl:

Publisher: wheels.yaml on severinstrobl/overlap

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

File details

Details for the file overlap-0.2.0-cp39-cp39-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for overlap-0.2.0-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 fdf43dcad7e283660c146cd395b4ee17bc29ab93378486fc81ed14135b6f3387
MD5 efaa1f21fcbf9115e9419964606b240a
BLAKE2b-256 edd2bff0f2fec404c1cad81610e0f88d9d1f239b4bd31802c2f02513af11e367

See more details on using hashes here.

Provenance

The following attestation bundles were made for overlap-0.2.0-cp39-cp39-musllinux_1_2_armv7l.whl:

Publisher: wheels.yaml on severinstrobl/overlap

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

File details

Details for the file overlap-0.2.0-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for overlap-0.2.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 98b41a1a415e8d35694a6b6853bda23ad9436ffa9adb7c98486b243794b6dfe3
MD5 b1de24ac5da966ba8134b69b7137a8d3
BLAKE2b-256 77480243c169bee3f2b186a04a1150426871ff7193b87ee0714be39bd021ef3e

See more details on using hashes here.

Provenance

The following attestation bundles were made for overlap-0.2.0-cp39-cp39-musllinux_1_2_aarch64.whl:

Publisher: wheels.yaml on severinstrobl/overlap

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

File details

Details for the file overlap-0.2.0-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for overlap-0.2.0-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a816985fbdf11646490d7bdb2f30534e5c3c292e32eff5af67cf0c73d55ff5aa
MD5 cab942154e2e9e75d2a09499eb8786be
BLAKE2b-256 fe8c400a3a7ea21f4584b74bb05aa28ecc97946155b0b37b43c5f8199ff47c3c

See more details on using hashes here.

Provenance

The following attestation bundles were made for overlap-0.2.0-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yaml on severinstrobl/overlap

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

File details

Details for the file overlap-0.2.0-cp39-cp39-manylinux_2_26_i686.manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for overlap-0.2.0-cp39-cp39-manylinux_2_26_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 5293c39e019b9240cc3b3a00f559aecb68212530a36b771891509b3776541b01
MD5 e477ae54a72d2fd2a78ec168f0812a9b
BLAKE2b-256 fa5b79426cc9ab4de5dc2686a0627ebb09c9eeb90e53fbac43eb20fddd732083

See more details on using hashes here.

Provenance

The following attestation bundles were made for overlap-0.2.0-cp39-cp39-manylinux_2_26_i686.manylinux_2_28_i686.whl:

Publisher: wheels.yaml on severinstrobl/overlap

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

File details

Details for the file overlap-0.2.0-cp39-cp39-manylinux_2_26_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for overlap-0.2.0-cp39-cp39-manylinux_2_26_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 cffe503b0e7d3801f6cab1a3152c5e941a91231ae9041aa00c74a5000cd0341a
MD5 13b3db49e203e73d04d88c3607a1f80e
BLAKE2b-256 20a4fae825d036a8e44d45196f890e6f92bcfe57656cdbc6fa9860dd972a5666

See more details on using hashes here.

Provenance

The following attestation bundles were made for overlap-0.2.0-cp39-cp39-manylinux_2_26_armv7l.manylinux_2_31_armv7l.whl:

Publisher: wheels.yaml on severinstrobl/overlap

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

File details

Details for the file overlap-0.2.0-cp39-cp39-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for overlap-0.2.0-cp39-cp39-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c754a437f0f6842997b6364007bf9bf1967c7780a1b8b95d007799485d880c41
MD5 113f29f20aefb77b4aa516ca0e60d3bf
BLAKE2b-256 aa499347a3c6a9b82954326e02594ce2ad0f93ebb08a5d1a4f9e8aa756a4a8b6

See more details on using hashes here.

Provenance

The following attestation bundles were made for overlap-0.2.0-cp39-cp39-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: wheels.yaml on severinstrobl/overlap

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

File details

Details for the file overlap-0.2.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for overlap-0.2.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cfa937b673f2619c804152dc229feedec2fd1a77d7cba8adca077aa968d758a9
MD5 edff770d4086e8f6c56f66eec7e1129d
BLAKE2b-256 8ad27797d26311693c6393d8b55c8e3adfb7939aa6a9e3bb3f1d9d19e31dd3e0

See more details on using hashes here.

Provenance

The following attestation bundles were made for overlap-0.2.0-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: wheels.yaml on severinstrobl/overlap

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

File details

Details for the file overlap-0.2.0-cp39-cp39-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for overlap-0.2.0-cp39-cp39-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 63ab0015a9f9fc438e26945aaaf9503b775818dbada110d7b791cf641d6ca3f5
MD5 405cc1f7ee54d5ff26d4ea243939d1ef
BLAKE2b-256 092d71ad2ffd13d8f5d11d0e9b70cae03ba8c6ac8e132ed6bbc1f27c05be2813

See more details on using hashes here.

Provenance

The following attestation bundles were made for overlap-0.2.0-cp39-cp39-macosx_10_15_x86_64.whl:

Publisher: wheels.yaml on severinstrobl/overlap

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 Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page