Skip to main content

No project description provided

Project description

Library to avoid overlap of graphical objects.

TLDR;

from nooverlap import push_text_free
push_text_free(fig, ax)

image

And fast enough to run in real-time:

https://github.com/user-attachments/assets/b0fc651f-8964-4481-a8b3-dd749a5bd3fe

Steps:

  • define "Pusher"
  • add boxes
  • push
  • get new box positions

Algorithm:

  • loop over all boxes combinations (n^2)
  • if boxes overlap: push then away from eachother by the overlapping distance in the direction of overlap
  • but maximize the horizontal and vertical push distances to the user-provided factor times the average widht or height
  • repeat until there is no overlap anymore.

User setttings:

  • maximum push distance in vertical direction per iteration as fraction of the box size
  • maximum push distance in horizontal direction per iteration as fraction of the box size Set one of the two to zero to get only horizontal or vertical shift.

Example use for matplotlib:

import matplotlib.pyplot as plt
import random

from nooverlap import push_text_free

random_words = """Bravely bold Sir Robin rode forth from Camelot. He was not afraid to die, O brave Sir Robin. He was not at all afraid to be killed in nasty ways, Brave, brave, brave, brave Sir Robin!
He was not in the least bit scared to be mashed into a pulp, Or to have his eyes gouged out and his elbows broken, To have his kneecaps split and his body burned away And his limbs all hacked and mangled, brave Sir Robin!
His head smashed in and his heart cut out And his liver removed and his bowels unplugged And his nostrils raped and his bottom burned off And his pen""".split(
    ' ')

def random_text():
    n = len(random_words)
    i = random.randint(0, n - 1)
    return random_words[i]

# Create a figure and axes
fig, ax = plt.subplots()

# Add 100 random text elements
texts = []
for _ in range(100):
    x = random.random()
    y = random.random()
    text = random_text()
    ax.text(x, y, text, ha='center', va='center')

ax.set_xlabel('X')
ax.set_ylabel('Y')

push_text_free(fig, ax)

plt.show()

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

nooverlap-0.2.0.tar.gz (6.9 kB view details)

Uploaded Source

Built Distributions

nooverlap-0.2.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (416.6 kB view details)

Uploaded PyPy musllinux: musl 1.2+ x86-64

nooverlap-0.2.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl (438.9 kB view details)

Uploaded PyPy musllinux: musl 1.2+ i686

nooverlap-0.2.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (518.0 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARMv7l

nooverlap-0.2.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (433.7 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARM64

nooverlap-0.2.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (249.4 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

nooverlap-0.2.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (289.4 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

nooverlap-0.2.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (285.1 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

nooverlap-0.2.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (262.1 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

nooverlap-0.2.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (257.6 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

nooverlap-0.2.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (264.5 kB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

nooverlap-0.2.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (416.5 kB view details)

Uploaded PyPy musllinux: musl 1.2+ x86-64

nooverlap-0.2.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl (439.4 kB view details)

Uploaded PyPy musllinux: musl 1.2+ i686

nooverlap-0.2.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl (518.6 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARMv7l

nooverlap-0.2.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (433.8 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARM64

nooverlap-0.2.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (249.0 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

nooverlap-0.2.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (289.5 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

nooverlap-0.2.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (285.4 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

nooverlap-0.2.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (262.8 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

nooverlap-0.2.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (257.7 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

nooverlap-0.2.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl (267.3 kB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

nooverlap-0.2.0-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl (416.7 kB view details)

Uploaded PyPy musllinux: musl 1.2+ x86-64

nooverlap-0.2.0-pp38-pypy38_pp73-musllinux_1_2_i686.whl (439.5 kB view details)

Uploaded PyPy musllinux: musl 1.2+ i686

nooverlap-0.2.0-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl (518.4 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARMv7l

nooverlap-0.2.0-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl (434.7 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARM64

nooverlap-0.2.0-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (289.7 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

nooverlap-0.2.0-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (285.7 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

nooverlap-0.2.0-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (262.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

nooverlap-0.2.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (258.0 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

nooverlap-0.2.0-cp312-none-win_amd64.whl (119.6 kB view details)

Uploaded CPython 3.12 Windows x86-64

nooverlap-0.2.0-cp312-none-win32.whl (113.4 kB view details)

Uploaded CPython 3.12 Windows x86

nooverlap-0.2.0-cp312-cp312-musllinux_1_2_x86_64.whl (415.2 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ x86-64

nooverlap-0.2.0-cp312-cp312-musllinux_1_2_i686.whl (437.3 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

nooverlap-0.2.0-cp312-cp312-musllinux_1_2_armv7l.whl (516.6 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARMv7l

nooverlap-0.2.0-cp312-cp312-musllinux_1_2_aarch64.whl (433.0 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARM64

nooverlap-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (248.0 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

nooverlap-0.2.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (288.2 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

nooverlap-0.2.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (284.6 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

nooverlap-0.2.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (262.0 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARMv7l

nooverlap-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (256.8 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

nooverlap-0.2.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (264.2 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.5+ i686

nooverlap-0.2.0-cp312-cp312-macosx_11_0_arm64.whl (215.1 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

nooverlap-0.2.0-cp312-cp312-macosx_10_12_x86_64.whl (219.2 kB view details)

Uploaded CPython 3.12 macOS 10.12+ x86-64

nooverlap-0.2.0-cp311-none-win_amd64.whl (120.3 kB view details)

Uploaded CPython 3.11 Windows x86-64

nooverlap-0.2.0-cp311-none-win32.whl (113.6 kB view details)

Uploaded CPython 3.11 Windows x86

nooverlap-0.2.0-cp311-cp311-musllinux_1_2_x86_64.whl (416.2 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ x86-64

nooverlap-0.2.0-cp311-cp311-musllinux_1_2_i686.whl (438.5 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

nooverlap-0.2.0-cp311-cp311-musllinux_1_2_armv7l.whl (517.6 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARMv7l

nooverlap-0.2.0-cp311-cp311-musllinux_1_2_aarch64.whl (433.9 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

nooverlap-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (248.9 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

nooverlap-0.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (289.0 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

nooverlap-0.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (285.3 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

nooverlap-0.2.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (262.1 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARMv7l

nooverlap-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (257.7 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

nooverlap-0.2.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (264.5 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.5+ i686

nooverlap-0.2.0-cp311-cp311-macosx_11_0_arm64.whl (215.8 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

nooverlap-0.2.0-cp311-cp311-macosx_10_12_x86_64.whl (220.3 kB view details)

Uploaded CPython 3.11 macOS 10.12+ x86-64

nooverlap-0.2.0-cp310-none-win_amd64.whl (120.4 kB view details)

Uploaded CPython 3.10 Windows x86-64

nooverlap-0.2.0-cp310-none-win32.whl (113.6 kB view details)

Uploaded CPython 3.10 Windows x86

nooverlap-0.2.0-cp310-cp310-musllinux_1_2_x86_64.whl (416.3 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ x86-64

nooverlap-0.2.0-cp310-cp310-musllinux_1_2_i686.whl (438.7 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

nooverlap-0.2.0-cp310-cp310-musllinux_1_2_armv7l.whl (517.9 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARMv7l

nooverlap-0.2.0-cp310-cp310-musllinux_1_2_aarch64.whl (434.1 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARM64

nooverlap-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (249.1 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

nooverlap-0.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (289.6 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

nooverlap-0.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (285.5 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

nooverlap-0.2.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (262.3 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARMv7l

nooverlap-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (258.0 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

nooverlap-0.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (264.6 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.5+ i686

nooverlap-0.2.0-cp310-cp310-macosx_11_0_arm64.whl (216.0 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

nooverlap-0.2.0-cp39-none-win_amd64.whl (120.4 kB view details)

Uploaded CPython 3.9 Windows x86-64

nooverlap-0.2.0-cp39-none-win32.whl (113.8 kB view details)

Uploaded CPython 3.9 Windows x86

nooverlap-0.2.0-cp39-cp39-musllinux_1_2_x86_64.whl (417.1 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ x86-64

nooverlap-0.2.0-cp39-cp39-musllinux_1_2_i686.whl (438.9 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

nooverlap-0.2.0-cp39-cp39-musllinux_1_2_armv7l.whl (518.1 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARMv7l

nooverlap-0.2.0-cp39-cp39-musllinux_1_2_aarch64.whl (435.0 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARM64

nooverlap-0.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (249.4 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

nooverlap-0.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (289.9 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

nooverlap-0.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (286.2 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

nooverlap-0.2.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (263.1 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARMv7l

nooverlap-0.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (258.2 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

nooverlap-0.2.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (265.5 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.5+ i686

nooverlap-0.2.0-cp39-cp39-macosx_11_0_arm64.whl (216.4 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

nooverlap-0.2.0-cp38-none-win_amd64.whl (120.2 kB view details)

Uploaded CPython 3.8 Windows x86-64

nooverlap-0.2.0-cp38-none-win32.whl (113.7 kB view details)

Uploaded CPython 3.8 Windows x86

nooverlap-0.2.0-cp38-cp38-musllinux_1_2_x86_64.whl (417.2 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ x86-64

nooverlap-0.2.0-cp38-cp38-musllinux_1_2_i686.whl (439.0 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ i686

nooverlap-0.2.0-cp38-cp38-musllinux_1_2_armv7l.whl (518.2 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ ARMv7l

nooverlap-0.2.0-cp38-cp38-musllinux_1_2_aarch64.whl (434.8 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ ARM64

nooverlap-0.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (249.5 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

nooverlap-0.2.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (290.0 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

nooverlap-0.2.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (286.5 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

nooverlap-0.2.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (262.9 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARMv7l

nooverlap-0.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (258.2 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

nooverlap-0.2.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (265.1 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.5+ i686

File details

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

File metadata

  • Download URL: nooverlap-0.2.0.tar.gz
  • Upload date:
  • Size: 6.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.7.1

File hashes

Hashes for nooverlap-0.2.0.tar.gz
Algorithm Hash digest
SHA256 e67b8f8c7f43eb6e11ff57e08de3946e98132d09c70ac86d32a9e5b2643c3ad5
MD5 de9f5b3b0c472298bd9067948e04dcf7
BLAKE2b-256 5bcda09961505d65b3afc8f3df76caa386c341f36f683d4a9ad3688030b6b660

See more details on using hashes here.

File details

Details for the file nooverlap-0.2.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for nooverlap-0.2.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7e0fabe6e62e5dbf68624ec22adf70342c447f7ab94e55e41c4d0f6fd9325ffe
MD5 6733d172dfec0e033a31e7e67006b211
BLAKE2b-256 6be2ee440642d5d548bb15648b17fcd3e065c5c12cd14e998308f0172f521aed

See more details on using hashes here.

File details

Details for the file nooverlap-0.2.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for nooverlap-0.2.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d6d4d8ee4e6daa28ecd291edc8d8898b0c207870c7b5fbe77308ab52bba2a7c2
MD5 73d284e7aeef26347ff5e5ad47d00380
BLAKE2b-256 cf70a3c969e61acd940eeb73f2d58756432e224de406c5719a0fcdfba48c6c56

See more details on using hashes here.

File details

Details for the file nooverlap-0.2.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for nooverlap-0.2.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a1125e7575d82a09948c1512c14e7bc8248da9d43f9007205bfb41e091b940e0
MD5 c2e8afa25504fb347c7643e8ebbb0c85
BLAKE2b-256 8373e4c6285c1fbb4eeaed1e98cd683fdf45cbca6066dacc2f42b6c333df61c9

See more details on using hashes here.

File details

Details for the file nooverlap-0.2.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for nooverlap-0.2.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9db9bbae5b326d9ad4670fb13e9b36a9feb0fefbba2b237d33991e75d958e0e6
MD5 06f30db17cdbca9f993243e11c8faf53
BLAKE2b-256 305ee6a8b29066df396de57d60e53582b17d2661472f11c164cd13ec4b620a8c

See more details on using hashes here.

File details

Details for the file nooverlap-0.2.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for nooverlap-0.2.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0cc5411ecc4da6d9308a2559c5ab23c5a9027bffd3e9933c4c189ea4a1a3d448
MD5 cf491233b512a137ebea52b939f9f7e7
BLAKE2b-256 787975f162a0ba8be15dec2c26eac52398b496a5f0938d7f3fccf8f71b03df53

See more details on using hashes here.

File details

Details for the file nooverlap-0.2.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for nooverlap-0.2.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b4e02a149fca5e1864c8bc661533bfc4d07681c91a98d429ae931c64b27c6f79
MD5 4bb9dc1b1fa2b4663c9e1d774498d0e8
BLAKE2b-256 09cbace4ea1d563cafa2fee263e3d2b8ecc6452153b4c354539e9660a48b97ce

See more details on using hashes here.

File details

Details for the file nooverlap-0.2.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for nooverlap-0.2.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1ef5d0d1ca863b0e2747b6f969e034f34a77dd585c699eb7a53919ecacb6eaad
MD5 6bf4d87424fe68a6f421b16e7601c299
BLAKE2b-256 5af882fda4edc572b6a32d55e8d30cc40bc747644ac9f56a93851324fd855a0a

See more details on using hashes here.

File details

Details for the file nooverlap-0.2.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for nooverlap-0.2.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 bd183b72316f5260839a453295e2b903028bbc6eb6d8657c722e07b120bcfa9a
MD5 36735a734500529e1ccdbb562ec98dd9
BLAKE2b-256 98567ca9a0b77e71650febad06c078d622e2f7b2023f824894b3b03316f1001d

See more details on using hashes here.

File details

Details for the file nooverlap-0.2.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for nooverlap-0.2.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cf243b7577b0c3a42537329ac1c7decb5f4b3a461be4168f51907712b5a74467
MD5 c414383d1655aed95bc9e0e29db2d34c
BLAKE2b-256 67883351dc557cadace82ed552d375bdeedb54945c16df8afe8c9682b138210b

See more details on using hashes here.

File details

Details for the file nooverlap-0.2.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for nooverlap-0.2.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 375d2f828fdea48efb34886650cba30b0e1192792139658d538d4f98449ae882
MD5 d341d965294bc87dbeb4598bcecb114b
BLAKE2b-256 17f24828fdf1bbbdd5cb614d073cf8ebcffa6bb5d3d5b66bb24e9804712a59b2

See more details on using hashes here.

File details

Details for the file nooverlap-0.2.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for nooverlap-0.2.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 aa39f40202b5b06ffa3b4fb4fc38a493f6e5cc9f823033c5afb005b47b035875
MD5 3bc1aa90bfabc581b944f8875772beb4
BLAKE2b-256 1651bef8d188614af91ea9017ec69d460321cdc054997de70b939a5633c9fac7

See more details on using hashes here.

File details

Details for the file nooverlap-0.2.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for nooverlap-0.2.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2813ea16767a0bb2a801daad69d53230eda581c435dc5072544b70421f9a9fdd
MD5 e4c3d668863675fcdd9bc42d585456ad
BLAKE2b-256 4c5cf2fc7d95c51856dc1e04d41473d080143c0ec49be44711b8bcde7e26824c

See more details on using hashes here.

File details

Details for the file nooverlap-0.2.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for nooverlap-0.2.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6851f7d2f5d4f49f5c06a590f52a707028a18a7231b6bf4a5f78e5c63f146aad
MD5 cb0eef720bfc96453dccfd90a766dcd5
BLAKE2b-256 ae2daf5d44adfdbf63c4077e27e54d5fa4fe5d589217cce8e6ac562cfe1648a3

See more details on using hashes here.

File details

Details for the file nooverlap-0.2.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for nooverlap-0.2.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 88023f7087640f5fd0d912fe2cc2cd5299cb2f887cea18f375f8495ba758b73d
MD5 391f6e35955e4ee7b3fcff426397d794
BLAKE2b-256 e908e6bda0058f9716483a2d6ad1159379e4839a9b590f2b6739243b58d15b39

See more details on using hashes here.

File details

Details for the file nooverlap-0.2.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for nooverlap-0.2.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 780704303e67bc0ff678b7b91704177de0e08a628c8a2fab318b1fcb59037131
MD5 eec6e8b9978759ba2d91c3fd751c9b2e
BLAKE2b-256 6f5b5261c94e8a01d6abc98bce3ecb7df3e4d6359c71d9f1f8e5593796d88f2d

See more details on using hashes here.

File details

Details for the file nooverlap-0.2.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for nooverlap-0.2.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 cec37c531dd7320f925fbfde7fdf792a9ab0d0dd7f18672698c4b333d538efb4
MD5 78545241306fe1d5b85a448402e0eccf
BLAKE2b-256 76a250a7499048e129151091dee09c71867e53f12bd03bb55e8ac9138f34b540

See more details on using hashes here.

File details

Details for the file nooverlap-0.2.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for nooverlap-0.2.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3651007d30703783bae35cc632a6a5b3817e66d14eedb3fc68a2a8e13b34c49b
MD5 e965d80ae38d6bc478171d6a14cd138c
BLAKE2b-256 cd3d8355b585f42a6259c30e9c4b6754b455094826a60cab4c9b96e45e8bb5ab

See more details on using hashes here.

File details

Details for the file nooverlap-0.2.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for nooverlap-0.2.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 df9ff4e165c1ef573d68757490e58aa48904e94a1ac690779c5d5d4b38a9ddf8
MD5 f0f36f32dfe315a5948eccd7f79c27a6
BLAKE2b-256 1421de2affa717ae5db22f88070ff14efcedd3ef2f2fd2c236c9b2bd12b39519

See more details on using hashes here.

File details

Details for the file nooverlap-0.2.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for nooverlap-0.2.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ef49a012c38080f18bbb91f4b506ed863cdc0611fb72209bc445eecfd569b0c6
MD5 e555b468282ab3165e91c91b52f151b1
BLAKE2b-256 c278a996cdfcd3a365f595ef502eae144e5cfc5b46da776e121ae313cfafd767

See more details on using hashes here.

File details

Details for the file nooverlap-0.2.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for nooverlap-0.2.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 9fda306819ac781c32264d23cb9e58a31d060d28ff1accce9bdf5c4fb578e302
MD5 25eaf7c752cc1b2175b77c56ad36e6cf
BLAKE2b-256 04615a4760021ed993ac562f78a5b194c91a68f37486adfcdc232dbfaf63e426

See more details on using hashes here.

File details

Details for the file nooverlap-0.2.0-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for nooverlap-0.2.0-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f9ec5306703c9925486d849cc452a984c54e48e552152afdd4fbcda3171ba707
MD5 999ce8ff880ab90f7ddfecad11a994cb
BLAKE2b-256 456452473bea6192b64526391daecd7f7eef68e2738a04f1e3d2437709f06827

See more details on using hashes here.

File details

Details for the file nooverlap-0.2.0-pp38-pypy38_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for nooverlap-0.2.0-pp38-pypy38_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 696e8167500a116076ff74e507d91b1750f0ad22b64a9e964d57d3fe94dd2514
MD5 22d537306c5f2f5fc4c8a8e2bd339a5d
BLAKE2b-256 b5097b24cff16dbff43767b6128d41e9706565eeeed363d23cdfaa2168d8fd2b

See more details on using hashes here.

File details

Details for the file nooverlap-0.2.0-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for nooverlap-0.2.0-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6c8a375268d05bab06bd703a615bfab7174acf9fd172fa713c93b7a1f9718c09
MD5 41890df5a7380ab0de714301f5342c28
BLAKE2b-256 a77afeb9616a56274b6ff7368f8ed3775b9d30b73102ea32fd349247c1851226

See more details on using hashes here.

File details

Details for the file nooverlap-0.2.0-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for nooverlap-0.2.0-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 795045adec92d4df6a91228e72ed9f7416d94985b8a0a753022a985006b37356
MD5 16b572c02c32fb5c82353261375612ea
BLAKE2b-256 395360ee7d809fb37f5ce76b80eca108637056ba0cec372a2408e5b2269efcd7

See more details on using hashes here.

File details

Details for the file nooverlap-0.2.0-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for nooverlap-0.2.0-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 cb05d7ea2a446a7b6821a4eb1b68ee7be70c8f0a3de67f85dd53f5c2b448e19a
MD5 f4b4a1842b2302672470044a4273854f
BLAKE2b-256 582a87db884d90a6348535aaf2792ec22aa25a60bd040560fa27f52ea99583d8

See more details on using hashes here.

File details

Details for the file nooverlap-0.2.0-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for nooverlap-0.2.0-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b89b350fe5242746144f2d162bc2c35ceebff1efeae21ae9c6a240e29db8bcb9
MD5 dcb136863b36ed24bd42b8c4b3008a73
BLAKE2b-256 f58e5b636d7a77bef90d106f105386ef47760408828313397252a5707accb960

See more details on using hashes here.

File details

Details for the file nooverlap-0.2.0-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for nooverlap-0.2.0-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 bd95e99155f9d891ab4ca0a800a97dfb162768585c794a093034f208840cb085
MD5 eefa222956454a997b15813d322dcb0e
BLAKE2b-256 aa76257bd1dcf665982cf13014264aa9a86523a70d03d4194c679f60943a6476

See more details on using hashes here.

File details

Details for the file nooverlap-0.2.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for nooverlap-0.2.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f839b1b25954016a574afdf51e7c7d55913f8b905467e35e4bc4945efb4df9b6
MD5 0acf7b041eafe6f8eddd8bf75f43c038
BLAKE2b-256 da01abf30456390fc30c38d4c67bd7535f6491976cc1c9426c58da259e929820

See more details on using hashes here.

File details

Details for the file nooverlap-0.2.0-cp312-none-win_amd64.whl.

File metadata

File hashes

Hashes for nooverlap-0.2.0-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 5d81016a6f09648259349a46b198cbbd18f7b452ac6d9fcf55995a88f62309ad
MD5 abd76fd13ea70eae57e28c56537eb9f3
BLAKE2b-256 d9ef7b4390af4464f9c8409673cfb88c832c805a5b2834ec2b25bc0e25da602f

See more details on using hashes here.

File details

Details for the file nooverlap-0.2.0-cp312-none-win32.whl.

File metadata

  • Download URL: nooverlap-0.2.0-cp312-none-win32.whl
  • Upload date:
  • Size: 113.4 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.7.1

File hashes

Hashes for nooverlap-0.2.0-cp312-none-win32.whl
Algorithm Hash digest
SHA256 21a896b1b4c2f22535909297e7334a946bf01056fda4c5ccf1e5b2e38951cc9b
MD5 ee350af57ae3861ae0bdaae4dfce3058
BLAKE2b-256 e7c55ff3c74b33f4701ef1972699d3ed438f249d0a54dc3d059dca195bbe9a5f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for nooverlap-0.2.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 02b93d7afb194babb5eecb63e78c7cf1c9d358ae7970cf5490ac7c1cc4fab916
MD5 8c61fe34557bb066261161c77e34d9c4
BLAKE2b-256 f131ab6f27a583adeac8ad1c320a1084c689e8d66e8ae0ede234f87b84029ef8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for nooverlap-0.2.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3da8a9515fd7d3e334d4cbe8906548ed30b725610f3e69ce1d3a3115417ae0f2
MD5 f04e26ec35978821f9093f704019cf4c
BLAKE2b-256 1e638f3f477a76f7d8446b3acbed191715fbbd539077f957c24ef6787caccfe2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for nooverlap-0.2.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7b7a08123f5b7dfd7b0d08a2e7abd46a8fc0a01e70be8a740e0749bfa7d1b394
MD5 70ae17f2bf6bf6fe15cf8dca8e8bd7e7
BLAKE2b-256 a34fdd1e514a55b3b6f9df22d4ab4589bd49a87d3c707cce2b2b076ce933bec1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for nooverlap-0.2.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 acd6d96b2028ddff63ab9c8feb32bd5b64ac3d8444ec678697901376f47a930f
MD5 90da282bbeec19557103052deaad5d29
BLAKE2b-256 0d542ff9a742ccb5c8bb14ce52cde87e3c254d52fc083589a6cc68b762fe623b

See more details on using hashes here.

File details

Details for the file nooverlap-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for nooverlap-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8df2f92d48a01ad52996c90fd7493a9a441d116206ba75a9a20f5e21aebee84c
MD5 b9dcf0f8772352da67526f76b90c40dc
BLAKE2b-256 37131cbba3bbc2a4a469a3eaee97a0972d82aff8be5d304189c67e1f3ee0e6c4

See more details on using hashes here.

File details

Details for the file nooverlap-0.2.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for nooverlap-0.2.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f9c354040855b5921ad7a716234146ae982b903b02f6816de13c74efd6726a0e
MD5 b5cd85b8b9eca3b6b410c511169489e1
BLAKE2b-256 ffaf7333cf7451a57316f64777f6d70be64b38a7e85bb98d3a5c7fb9a3fef77b

See more details on using hashes here.

File details

Details for the file nooverlap-0.2.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for nooverlap-0.2.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d117126fe13dbf38d3c0d6bbc3f3c1b7ed2fe59dec55fb4eb6658b4cea65e98e
MD5 0b8e45054af4e77b0fa6a804b0c8b5fc
BLAKE2b-256 ba515408441e521d451e03dacd5e489b8ede9a0d8e72f146a14d8bfd4786fe5f

See more details on using hashes here.

File details

Details for the file nooverlap-0.2.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for nooverlap-0.2.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 58a306e5135ef87fe222b32715962f9f5090cc6195c3e8cb40e137fcc3dc3e60
MD5 28344d78e047ff9baea1c9bec2298f33
BLAKE2b-256 a9db894e23a8601ca79bf4e6aaabbc87480c718c5837d2701873d20f791e2ba6

See more details on using hashes here.

File details

Details for the file nooverlap-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for nooverlap-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a143a88a2f1aa0c6da713deef2ecccfdc5f659d3a58ba38ed1b4ee1e78b957e8
MD5 7aed22e5442895b580bc1edb3ed5b5a6
BLAKE2b-256 bcf908811fa50ec6179a37ee18ce0a9215b33a6d81c6133900b065087a412385

See more details on using hashes here.

File details

Details for the file nooverlap-0.2.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for nooverlap-0.2.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 5100aebac007bbca43a4bf4babab98062ad85e746168d321234f2e793af338ba
MD5 dd994d0b73ca1949f32008ac03de1d78
BLAKE2b-256 8ef480dee4f6803b27563a724e289d09f6ae9b4da7166af21dda8ca3024f3055

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for nooverlap-0.2.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a0e54e917ac275c34d6d84f5299b597982153e231d3cecba742172140704c345
MD5 f2e892dd178da6c2a2c0c687b4113587
BLAKE2b-256 f8e24ed7247664227f219a2a73556aa68adfb01a5bcad737ecd8836f52f39042

See more details on using hashes here.

File details

Details for the file nooverlap-0.2.0-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for nooverlap-0.2.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 94a8d9be4f7a8f5fe3526d74e97785a692e117bab1e9cd864b71b81de92813c7
MD5 d3063b5b7907de553161e5a26ada114b
BLAKE2b-256 9141617467646d2fe43c3fda0149549d9bd11b624db22a3966cdfdb9d6bdc72e

See more details on using hashes here.

File details

Details for the file nooverlap-0.2.0-cp311-none-win_amd64.whl.

File metadata

File hashes

Hashes for nooverlap-0.2.0-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 bcb539471ad60b269ba88c3bc8cb1a028ffc60312bac96de31dc7b6b33e2003b
MD5 3724ad9381e88d0f917f89461adcfdf4
BLAKE2b-256 35e9e89cef84670efa16a2cf5c947d72ad2ff2ed18b766219db25d32b2edca77

See more details on using hashes here.

File details

Details for the file nooverlap-0.2.0-cp311-none-win32.whl.

File metadata

  • Download URL: nooverlap-0.2.0-cp311-none-win32.whl
  • Upload date:
  • Size: 113.6 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.7.1

File hashes

Hashes for nooverlap-0.2.0-cp311-none-win32.whl
Algorithm Hash digest
SHA256 7f7fb930f95b1efe7b5c7b5b5fcf303b3e3017f283f796e3d1028ad667dfb01f
MD5 05a635cb33d9467de67093ae0b895a27
BLAKE2b-256 49e4601278558c4fba9bb040c18f5bb7441f0b3fd04bbd25b7f928891cfcd0bd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for nooverlap-0.2.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6c63b66b97eed466bff8c95aa19b4f9985424c60b00523eb3aecd030bbdff9d5
MD5 f9269f1158721f04942aa40d40c8e6dc
BLAKE2b-256 9d304a77ba9378c63a707144ed5fece6b688e689716984c3bdf4c29c9bc09de1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for nooverlap-0.2.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 36c8b7e73859d23fbb020148c463d8aff995231f0bf8c3cf504462ab41bd7c41
MD5 d980f89b397e09bbe6d793eb895fdb7b
BLAKE2b-256 df932719848b98a3bcc82db0aecda7fc8e2effd8bfc9fbb2a3bf28a23ffd53c8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for nooverlap-0.2.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 915284f27ecbf88d185338f0b926c1673c0c5db1c56edfffb36ed07d6935d4bc
MD5 a927f7856ce1adcd9835a15afffd730a
BLAKE2b-256 d841a22d4ef77c8ef78687e074618f3f806e876051a916fcb48a77ba998719b9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for nooverlap-0.2.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9be710ddd8f336ef8deaeaa31f87669abdcc657928fb16108738d13d0ef93b34
MD5 4f8b9d38736aed33de08021ab4ee6e7a
BLAKE2b-256 7c76e33cc9597d99dee00690b1a14503fa0915754a4c98b59e5f9bd19205d101

See more details on using hashes here.

File details

Details for the file nooverlap-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for nooverlap-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3d8423270ff51e75c1ce30bf1c374976134d3a8625d9d9088a6a4a2677896e7c
MD5 766eb07261948b5fdbb89603b9770666
BLAKE2b-256 8c678262d9b119f22d19ec1c601a6e2d92ff92947232f4196f71ee5d9b53e25f

See more details on using hashes here.

File details

Details for the file nooverlap-0.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for nooverlap-0.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0f27e7ddb03b13db653764c3856c9023d0e62292c858104eda18625f69cbfe19
MD5 6a997bcf9e4aa8d91fa2e31b66363c62
BLAKE2b-256 d0311c4001a94743c962816ee60a19308b4434157b479ec56483a8a67572d4c5

See more details on using hashes here.

File details

Details for the file nooverlap-0.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for nooverlap-0.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b7a80ff43944b7903a54e1302a52ba0ee6a05fb1fc824cd07ca7850136e20f6e
MD5 6d771a1e91e18ffbf20b8ca1917ea5d9
BLAKE2b-256 a9d8f500fa17e2af4fe7ab477bef6023a3ec8bea93819d9feceacf638b2e0821

See more details on using hashes here.

File details

Details for the file nooverlap-0.2.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for nooverlap-0.2.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 990cd638f590e3a02a870ccdee03e15a651bcaf5560e25b84046dfdfbe58ab13
MD5 936d7c1cb7fb045f62f435aad9c547a5
BLAKE2b-256 aad9bf3961591769bfa1d72b4bbad0384745c83ce3334b40f3ab51b46a5ee27b

See more details on using hashes here.

File details

Details for the file nooverlap-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for nooverlap-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6a1e19ba3283a33d8b341b2dd148bc412e8c46127afab026a087fb004c340567
MD5 a26f6e343e7474cd3104c12efa8bc96a
BLAKE2b-256 5aadede4c79b7b6b711f8364765a7e3f525c99c50274357414771108d0fd3896

See more details on using hashes here.

File details

Details for the file nooverlap-0.2.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for nooverlap-0.2.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 995aad30d977143110a65761efed7ce7ff87fa9ae13437a0ebb94a8b408bdd6a
MD5 2783e8c77a014da40ae78c8ac31b556d
BLAKE2b-256 bac9d12b335fa57502e99fc3e24113e9d9379dba475b5e2f85a412db35a7f90b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for nooverlap-0.2.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 01f313af6f6e93fe9253c7970047a9b7f97009b79afedd1dd1948c7e2edaf3ad
MD5 ea28929044a6da8b5875716306bd8d27
BLAKE2b-256 d79a2b0adf232be14619bbad673d6b4b6d3f718507c1a449b44bed8ca28360f7

See more details on using hashes here.

File details

Details for the file nooverlap-0.2.0-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for nooverlap-0.2.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3d06f27f7c67acb58f6d96f1c488d0f8b3dd560601b0eb2086b2725ea7f0f86d
MD5 c94cdc115d403aa698b626b901919d4b
BLAKE2b-256 e264d07ad0d98299970599b330fbbcef58e8caf33da88eeedf3290821a6830b4

See more details on using hashes here.

File details

Details for the file nooverlap-0.2.0-cp310-none-win_amd64.whl.

File metadata

File hashes

Hashes for nooverlap-0.2.0-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 99531433ba0bb62b2c7361da06fce03b45750a805ae4c5c98ae363804b6bfdac
MD5 d46cacb4829696982fb8f23416229133
BLAKE2b-256 7dc175e36fb8f1fde46ad5ab56a4d4d1adcce94accebb3a868eae245117cfbba

See more details on using hashes here.

File details

Details for the file nooverlap-0.2.0-cp310-none-win32.whl.

File metadata

  • Download URL: nooverlap-0.2.0-cp310-none-win32.whl
  • Upload date:
  • Size: 113.6 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.7.1

File hashes

Hashes for nooverlap-0.2.0-cp310-none-win32.whl
Algorithm Hash digest
SHA256 afb4020a41528d53b67711e27be5c4fe0880ec6a877f555f0a74671fec60f6c9
MD5 00e4e339220a2de150a17edf9d61d24b
BLAKE2b-256 a19c6fb470fe658ffd733600a57df53471d2ba130227046f2a155278d4afccbe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for nooverlap-0.2.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 93d94b9f9e2f7745dd141b3a944c932d4e262bd965c29a865d06793e0b67bcdc
MD5 d524b764f043dc04e1830e93240e3718
BLAKE2b-256 0c403c4b314c1777439caa39711bf1eba9e823dd8cb7bd8492a2307bb6ae58b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for nooverlap-0.2.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 986d27ceb4bb5a86941b2f2e3d58ef452da4844ead60a85b46f45df1ed8d3dc0
MD5 3b40efc936443d08f900a790c4d70cc8
BLAKE2b-256 a905ab5bcf48c8b1b2722c0b869ef32d2536155a45e0078d17dec2046569adc0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for nooverlap-0.2.0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f3f026be4c6270c4f40f91e9ac959d5c4a70df02ccd45f398e30540da6b60128
MD5 866d24fc12017fbd2daffd3b3761827b
BLAKE2b-256 9c31dd352d15e920d9ffcc20dc23818c3da598672476979310103fd25999b554

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for nooverlap-0.2.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fb72349b35e13aee5521883f916b83568026ec82aeb324bfec52c572fb45bcec
MD5 6079365eb6ab5af9e370191e4ab78d92
BLAKE2b-256 32776f2f1c06cee51d288430333ca54bccc7c0a461e302c03cec1e764b3f9b05

See more details on using hashes here.

File details

Details for the file nooverlap-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for nooverlap-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bf39cc925004f41f9f34ce047aabf74e6b6cfbe69dcfc1e87eb0dfb3932cdfb7
MD5 453da013eb57eeb48c38e567c33a0e4f
BLAKE2b-256 81dda6bbcf83985240901f364e51d22653a6f2741bd960cbd7e474618fe5651e

See more details on using hashes here.

File details

Details for the file nooverlap-0.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for nooverlap-0.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 cc11029816842ce0b796ebbdd186984027fdb12353a590d6aae88655e23a9d6c
MD5 e818f29c7fa374dbf8efd83b5e80fd71
BLAKE2b-256 967fef9d6de0075b53b6229532698552c63ec0696f4193123d54f19c259f50af

See more details on using hashes here.

File details

Details for the file nooverlap-0.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for nooverlap-0.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 fba3d4c0487d83d70f7716c7adcbbc6e603b360067a1417bccef189e396239d4
MD5 f2268cb350c0cbcf145999b598ec5713
BLAKE2b-256 644fae7d63258fe9ccab8c8397a1256bd725981f8fe2a2dfe6d84ea17b2a85b2

See more details on using hashes here.

File details

Details for the file nooverlap-0.2.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for nooverlap-0.2.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a0bb7ebc554566cda40f263b1fa2383f7920bb14a01572335f6fdcf9dce7aee7
MD5 673ce6f91e05aac3b18dad5dd9750b87
BLAKE2b-256 65db61831138ca972fcf0944d00c53f0242fea1dbcb8b3126f84e7c86abd2be6

See more details on using hashes here.

File details

Details for the file nooverlap-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for nooverlap-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a2f44b252f048a770e5726147dcc358c74cce4277a256395680cc9d2744db8ae
MD5 c44994b4f8768e41c879a2bcaea0a679
BLAKE2b-256 8bc606f971727abf523d779fae5ba39943731aaca0b4d371bee14680974e3a64

See more details on using hashes here.

File details

Details for the file nooverlap-0.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for nooverlap-0.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 ec094cbe5afff0df0290baddb4d9b77c4fab6f516913a2667fbe546bfe15ffd8
MD5 1e1488dc570ba7c53731cfc14250b8e3
BLAKE2b-256 7660aac2de121111e59d5cba4924928b2d21b4672c6cf17701dacaf149a4410b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for nooverlap-0.2.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 582a9960f9b26494ed967fe4fd9adc6804507260dcd10878ef66386029b58b64
MD5 6ea9e877a3a205e20183b14f15a041ce
BLAKE2b-256 ec9c0f6f1ed417e0585d733ce9312ff4544c9993b79470d1a813466a0db6e9a7

See more details on using hashes here.

File details

Details for the file nooverlap-0.2.0-cp39-none-win_amd64.whl.

File metadata

File hashes

Hashes for nooverlap-0.2.0-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 54a2383b2674f0d6bbd2abee2aca41dbd4305d1b1621540b0de75ee59079837d
MD5 d614f1ea4aef440fabb1057b50af3857
BLAKE2b-256 f518eef51d70d7c560f48ca0d16cb6946704159635fec47a0b775857c34200e6

See more details on using hashes here.

File details

Details for the file nooverlap-0.2.0-cp39-none-win32.whl.

File metadata

  • Download URL: nooverlap-0.2.0-cp39-none-win32.whl
  • Upload date:
  • Size: 113.8 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.7.1

File hashes

Hashes for nooverlap-0.2.0-cp39-none-win32.whl
Algorithm Hash digest
SHA256 c8c73f5640fe9b3405465bd4605551a0579874f72d19a773d73ba2e9cf81672f
MD5 be2b268e3a0dc19517905339eb53dae5
BLAKE2b-256 944d87297f62028c4ae1b6c7c77565bc7f8daa78c54460c3f48f37767c963b89

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for nooverlap-0.2.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2c6ce76d1c3c7e5e85f4aaa0b0e6a2fd8b559333f25c4962ada555db49d34b32
MD5 00aeb94c7c05a6d10608a5b3e668caea
BLAKE2b-256 abdce76d87aa228122a52a3d121d64e2697d30cd798fee7373e8e21a248c6dc7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for nooverlap-0.2.0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5ec886d8b2e070cbbff00f2c87460dff45f882deef632ca315272af3e89d8e3d
MD5 742c3667355e3b1469f079a022d04c59
BLAKE2b-256 8cc1003fbe8fa5604f6918508a3c7384424b37834a0ee41cbe3a0de2b27bfa33

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for nooverlap-0.2.0-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a471a6c88e9bd7086c2577c8225829a4eacd30ce64431132492ae558b323a760
MD5 1f393f2af900896bd86e8f69dc5bc7ec
BLAKE2b-256 3239af42c8d5c06e1cb155dde7679501cce2bb3db949b93379cc1bd6665001fe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for nooverlap-0.2.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e34429ccf7d9bcc46f5353de49dcf6ddb17c577a6ab3ffb5c26a5aafd97fa27b
MD5 2d91a437287562385d70c631cc850d42
BLAKE2b-256 e92820e3e720cc7c2a2b14021f2a0296233b81f901c961f48b640a3e5564250f

See more details on using hashes here.

File details

Details for the file nooverlap-0.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for nooverlap-0.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8e00509a16fdba01e11acc133763a9c6221aefe848466812ad2e4194ee370f0f
MD5 28d8240b6f7bb374a17b3fc5bc2efe74
BLAKE2b-256 9a4f3e52c691fd686877be121bc12b901ab9445903f987609d033f02bfb4e19a

See more details on using hashes here.

File details

Details for the file nooverlap-0.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for nooverlap-0.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 175476fdd85a5110b15256b6aafcc15af4571f206008e8bdfa3ec99141917de8
MD5 8569b27ebd3f4ba0f410f109fb64ffdb
BLAKE2b-256 7e844ca17bab8a3dc051d32facb3581ebf3f32172e638fd3030074f5b056aa1f

See more details on using hashes here.

File details

Details for the file nooverlap-0.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for nooverlap-0.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 be0ad632cb2dc1875c2179a0e1cf21ba6bbd74195f9009ca3530901f5743551e
MD5 ddeb11ebdc5f8007275f983003d0b689
BLAKE2b-256 2edf6a931b36304bac42440de0b2287c6025bb3e9749331a29dbf04104f51755

See more details on using hashes here.

File details

Details for the file nooverlap-0.2.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for nooverlap-0.2.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 89dc0dfe0e2a4e31447d3f96bfcf21c45c28abd053460d23710aae9f8d94d083
MD5 0056c987296eb09e50c59ad08eac4c49
BLAKE2b-256 bdd1dad70aed010f020665cfda2857eced73819ca88216a7d880022bcdbd5474

See more details on using hashes here.

File details

Details for the file nooverlap-0.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for nooverlap-0.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6c620be17080dffde95138e358d4dae3cedf3cfa1f3a8a456f84972bf89babce
MD5 11fecfc66cf6710a7f08cf2fa8b199d8
BLAKE2b-256 48296d2a78d2f1d3eceda10816fc520697428e4c21291ce5cfa3b37ac2448edc

See more details on using hashes here.

File details

Details for the file nooverlap-0.2.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for nooverlap-0.2.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 66b74cc326269ce2535ab1dbce4bd5b45f989df08c0b256c8620b1e3a3268458
MD5 d7c88ced81f12d9168a552f0af23b4c5
BLAKE2b-256 b7845d6120769871ce25184c699802e0b5378ffe28194de8ec1da0dfb9d741e9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for nooverlap-0.2.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f6dbaa41224f940d8f80e2100efc4340a4e81d836b0d83386338433cd2ad4b82
MD5 181853c065d7e6d7dd439d9859e53b21
BLAKE2b-256 6944b66c452ded72c71d1faa4c91c5bece3448205f914a3ad37c78f053e4245f

See more details on using hashes here.

File details

Details for the file nooverlap-0.2.0-cp38-none-win_amd64.whl.

File metadata

File hashes

Hashes for nooverlap-0.2.0-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 ed1b622d62041c21d1561e62b33b1066d2b4e3a5c261dc6260384ac8866c427d
MD5 717ba232165005a130174136815a0a88
BLAKE2b-256 167562b07a73b5bfa05ca8a1f0e209f71a569b7bf24f743eaf137f9212c08816

See more details on using hashes here.

File details

Details for the file nooverlap-0.2.0-cp38-none-win32.whl.

File metadata

  • Download URL: nooverlap-0.2.0-cp38-none-win32.whl
  • Upload date:
  • Size: 113.7 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.7.1

File hashes

Hashes for nooverlap-0.2.0-cp38-none-win32.whl
Algorithm Hash digest
SHA256 329c2aa3d495b0f6c48f315a63c6073e6545c106ca5b4a7404a856ddc1d76e05
MD5 6dbdf4485513e3f45a47c48525512f36
BLAKE2b-256 472376f984b80ef1924b99afc24556e604b576427de926eff530aa8d811d46ff

See more details on using hashes here.

File details

Details for the file nooverlap-0.2.0-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for nooverlap-0.2.0-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4afd1d957826dda95b2cc09e1534cd8331e341a32709cac70bebc15d8112bbe5
MD5 db02d8b6db52784c955add3513993be3
BLAKE2b-256 ebf2ea853c011fd6d5c89ffec809297d82d574255512c19ce3879644fa79500e

See more details on using hashes here.

File details

Details for the file nooverlap-0.2.0-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for nooverlap-0.2.0-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e906998fd4bc6eac01c9210f818bb8bc83099ef80ecf07280610664128aa7ab4
MD5 a4ec1c41f6b4eba6dc47a3ea45363e42
BLAKE2b-256 8515a70f97e983cbed57404a34e8375533eb71e4d55ddac815fd6ea515fa4c13

See more details on using hashes here.

File details

Details for the file nooverlap-0.2.0-cp38-cp38-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for nooverlap-0.2.0-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 dad9293ed92c300b36fbe31f2163895cf2d9fe49ed5bfb71b520837bb2808f07
MD5 70ee29d370823a56117c6130947bc1d0
BLAKE2b-256 58dfba56ef38debda88b624792ee218c97bfeef3fd8d83cd860442406fcde9a3

See more details on using hashes here.

File details

Details for the file nooverlap-0.2.0-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for nooverlap-0.2.0-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4bacb0d71f7983768bd0d0edc77d3d68d50987ae3c6aed600718d8007e6c27d9
MD5 cef7806c12a3e3622c74458a89dbc0c6
BLAKE2b-256 f41cd801da6702a420ef1d8210e48a8b50df14b62c90a64fab30a2ef443a9105

See more details on using hashes here.

File details

Details for the file nooverlap-0.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for nooverlap-0.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 196411ba478ab47ac6f7007b4d8d3dae48279147d39ed7a828b66ff62b76e455
MD5 5f39e4668829aee3d4ac7e9c5efcd500
BLAKE2b-256 f9efcdfe51b07a2a244ea457570624b13849af0d9cfa0fa56d1bfc38282e9604

See more details on using hashes here.

File details

Details for the file nooverlap-0.2.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for nooverlap-0.2.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 127d3f45aecc6f41d3904becff1e08d2efd258852ac7017524cc9c5358766832
MD5 c21050ed56b75c8dd81870458a4a31a8
BLAKE2b-256 6652cdaeda2fe23c1afcc867b9318308c3343d41f1ef5941d99c81ce44f30647

See more details on using hashes here.

File details

Details for the file nooverlap-0.2.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for nooverlap-0.2.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ceb69e93fc7cb5213e7e6b7fbf6f979af3c9a88bc48773c7787a3b3259a5898a
MD5 742fa027081471dfc280d9dc7bf76ad8
BLAKE2b-256 6ca03a22df4e4baa85a5932010b88b95959f91d7181765ae0b0c338ae28242d4

See more details on using hashes here.

File details

Details for the file nooverlap-0.2.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for nooverlap-0.2.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1e37697e1fd9528870f4a36dbcbae386caed5b9ccbab183fdccb1dfdb8508572
MD5 7ded99d6d1bf303f034b316ac9ffa5c0
BLAKE2b-256 632f595ed9be7fc0a98f223f4e0ee9f7463acc363aa848c37b15074784d05a0d

See more details on using hashes here.

File details

Details for the file nooverlap-0.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for nooverlap-0.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d75d72cb14db15ae1e3dcf651255525a73485b1f284b1e156e8c42fc1c7497c7
MD5 b2131e44cce19fd5d2728ba1884f2e19
BLAKE2b-256 7de064136eca3499fb172c4775ffbdfa29ddcf6ef64d995057eb704d265b20fc

See more details on using hashes here.

File details

Details for the file nooverlap-0.2.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for nooverlap-0.2.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 793bcd134befaac643db5d05443b3c8a5fe281f1ebeaa4861865933702283790
MD5 20ab2fb6a9f239df3a741b9a483fe0f1
BLAKE2b-256 48ba7645a6511db543a7c7eeb11d31dcdd9ad9bf70a210f1ad69df3f8c9c0705

See more details on using hashes here.

Supported by

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