Skip to main content

Very fast, constant memory-footprint cardinality approximation, including intersection

Project description

Hyperminhash for Python

Docs PyPI

Very fast, constant memory-footprint cardinality approximation, including intersection and union operation.

The class Sketch can be used to count unique elements that were encountered during the instance's lifetime. Unlike e.g. when using a set, the memory consumed by the Sketch-instance does not grow as elements are added; each Sketch-instance consumes approximately 32kb of memory, independent of the number of elements.

Installation

pip install pyhyperminhash

Basic usage

# Construct an empty Sketch
sk = pyhyperminhash.Sketch()
assert not sk  # The Sketch is empty
sk.add('Foo')  # Add elements
sk.add('Bar')
sk.add(42)
assert sk  # The Sketch is not empty
assert float(sk) == sk.cardinality()  # Approximately 3.0
assert int(sk) == len(sk)  # Approximately 3
# Sketches can be combined...

sk2 = pyhyperminhash.Sketch()
sk2.add('Foobar')
sk2 |= sk  # sk2 now holds all elements that were in `sk` or `sk2`

sk3 = pyhyperminhash.Sketch()
sk3.add(42)
sk3.add('Foo')
assert sk3.intersection(sk2) > 0.0  # Approximately 1.0, due to `Foo`

# `fast=True` uses the faster upstream estimate with a slightly looser
# correction model; for most inputs the difference is tiny.
assert sk3.intersection(sk2, fast=True) > 0.0
assert sk3.similarity(sk2, fast=True) > 0.0

# Compare one Sketch against many others
others = [sk, sk2, sk3]
assert sk3.intersection_many(others) == [sk3.intersection(other) for other in others]
assert sk3.similarity_many(others) == [sk3.similarity(other) for other in others]
# Sketches can be stored for later use

buf = sk.save()  # Serialize the Sketch into a bytes-buffer
new_sk = pyhyperminhash.Sketch.load(buf)  # Deserialize a Sketch
assert len(new_sk) == len(sk)
# Sketches can be constructed from iterators directly, which avoids
# materializing all objects simultaneously.

# This is also faster than adding elements one by one.
sk = pyhyperminhash.Sketch.from_iter(iter(range(100)))

# Read all lines; uses binary mode to avoid Unicode encoding+decoding
with open('complaints.txt', 'rb') as f:
    sk = pyhyperminhash.Sketch.from_iter(f)

# Add an entire file-like object
with open('complaints.txt', 'rb') as f:
    sk.add_reader(f)
# Entry-objects can be used to construct what represents a single
# object from multiple parts. They consume very little memory.

# Add sub-objects that don't fit into memory
e = pyhyperminhash.Entry()
with open('complaints.txt', 'rb') as f:
    e.add(f.read(4096))  # Add two parts to this Entry
    e.add(f.read(4096))
    sk.add_entry(e)  # This counts as one object

sk2 = pyhyperminhash.Sketch()
sk2.add_entry(e)  # Entry-objects can be added to multiple Sketches

# Entry-objects can be "forked" at the state they are currently at
e2 = e.fork()
e2.add("Foo")
sk.add_entry(e2)  # This is a new object in `Sketch`...

e3 = e.fork()
e3.add("Bar")
sk.add_entry(e3)  # So is this, without re-computing `e`

It is very much preferred to provide bytes to Sketch.add() and Entry.add(), in order to avoid double-hashing the content. Also, notice that the Python interpreter probably randomizes hash-values at interpreter-startup (in order to prevent certain kinds of DOS-attacks). The randomness introduced here means that the count-approximation provided by this package may not be stable from run to run.

See the documentation for the underlying implementation for additional information.

Usage as a sqlite3 aggregate function

class PyHyperminhashCounter:
    def __init__(self):
        self.sk = pyhyperminhash.Sketch()

    def step(self, *args) -> None:
        self.sk += args

    def finalize(self) -> int:
        return int(self.sk)


con = sqlite3.connect(":memory:")
# Create the function for the current connection
con.create_aggregate("pyhmh", -1, PyHyperminhashCounter)

# Some dummy data
cur = con.execute("CREATE TABLE test(i, j)")
cur.executemany("INSERT INTO test(i, j) VALUES(?, ?)",
                ((f'foo{i % 4291}bar', i % 819)
                 for i in range(1000000)))

# Returns exactly 502047
cur.execute("SELECT COUNT(*) FROM (SELECT DISTINCT i, j FROM test)")
print(cur.fetchone()[0])

# Returns approximately 500000, but faster
cur.execute("SELECT pyhmh(i, j) FROM test")
print(cur.fetchone()[0])

Performance examples

Reading a file of 50 million lines, ~1,000,000 unique elements, 20 characters per line.

Method Wall-clock time Memory consumed Count
Count lines 2.3 seconds nil 50,000,000
set() 14.99 seconds ~144 megabytes 1,048,576
Sketch.from_iter() 1.8 seconds ~32 kilobytes 1,041,936

For repeatable local benchmarks of the Python-facing API, use the pyperf suite:

python3 -m venv .venv
source .venv/bin/activate
maturin develop -r
pip install pyperf
python3 examples/bench.py

FAQ

  • Can I extract an element that was previously added from a Sketch?
    • No.
  • Can I check if an element has previously been added to a Sketch?
    • No.
  • Wow, why use this, then?
    • It's very fast at counting unique things. And it does not use much memory.

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

pyhyperminhash-0.2.0.tar.gz (16.2 kB view details)

Uploaded Source

Built Distributions

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

pyhyperminhash-0.2.0-cp314-cp314t-win_arm64.whl (182.6 kB view details)

Uploaded CPython 3.14tWindows ARM64

pyhyperminhash-0.2.0-cp314-cp314t-win_amd64.whl (187.1 kB view details)

Uploaded CPython 3.14tWindows x86-64

pyhyperminhash-0.2.0-cp314-cp314t-win32.whl (180.9 kB view details)

Uploaded CPython 3.14tWindows x86

pyhyperminhash-0.2.0-cp314-cp314t-musllinux_1_2_x86_64.whl (535.0 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

pyhyperminhash-0.2.0-cp314-cp314t-musllinux_1_2_i686.whl (571.9 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

pyhyperminhash-0.2.0-cp314-cp314t-musllinux_1_2_armv7l.whl (613.5 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

pyhyperminhash-0.2.0-cp314-cp314t-musllinux_1_2_aarch64.whl (504.5 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

pyhyperminhash-0.2.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (329.0 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

pyhyperminhash-0.2.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (352.8 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

pyhyperminhash-0.2.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (451.7 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

pyhyperminhash-0.2.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (338.9 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

pyhyperminhash-0.2.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (329.3 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

pyhyperminhash-0.2.0-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl (355.5 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.5+ i686

pyhyperminhash-0.2.0-cp314-cp314t-macosx_11_0_arm64.whl (297.8 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

pyhyperminhash-0.2.0-cp314-cp314t-macosx_10_12_x86_64.whl (306.0 kB view details)

Uploaded CPython 3.14tmacOS 10.12+ x86-64

pyhyperminhash-0.2.0-cp39-abi3-win_arm64.whl (190.1 kB view details)

Uploaded CPython 3.9+Windows ARM64

pyhyperminhash-0.2.0-cp39-abi3-win_amd64.whl (194.3 kB view details)

Uploaded CPython 3.9+Windows x86-64

pyhyperminhash-0.2.0-cp39-abi3-win32.whl (188.6 kB view details)

Uploaded CPython 3.9+Windows x86

pyhyperminhash-0.2.0-cp39-abi3-musllinux_1_2_x86_64.whl (544.1 kB view details)

Uploaded CPython 3.9+musllinux: musl 1.2+ x86-64

pyhyperminhash-0.2.0-cp39-abi3-musllinux_1_2_i686.whl (582.6 kB view details)

Uploaded CPython 3.9+musllinux: musl 1.2+ i686

pyhyperminhash-0.2.0-cp39-abi3-musllinux_1_2_armv7l.whl (623.0 kB view details)

Uploaded CPython 3.9+musllinux: musl 1.2+ ARMv7l

pyhyperminhash-0.2.0-cp39-abi3-musllinux_1_2_aarch64.whl (516.7 kB view details)

Uploaded CPython 3.9+musllinux: musl 1.2+ ARM64

pyhyperminhash-0.2.0-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (339.6 kB view details)

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

pyhyperminhash-0.2.0-cp39-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl (361.8 kB view details)

Uploaded CPython 3.9+manylinux: glibc 2.17+ s390x

pyhyperminhash-0.2.0-cp39-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (460.5 kB view details)

Uploaded CPython 3.9+manylinux: glibc 2.17+ ppc64le

pyhyperminhash-0.2.0-cp39-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (349.2 kB view details)

Uploaded CPython 3.9+manylinux: glibc 2.17+ ARMv7l

pyhyperminhash-0.2.0-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (340.3 kB view details)

Uploaded CPython 3.9+manylinux: glibc 2.17+ ARM64

pyhyperminhash-0.2.0-cp39-abi3-manylinux_2_5_i686.manylinux1_i686.whl (365.5 kB view details)

Uploaded CPython 3.9+manylinux: glibc 2.5+ i686

pyhyperminhash-0.2.0-cp39-abi3-macosx_11_0_arm64.whl (304.7 kB view details)

Uploaded CPython 3.9+macOS 11.0+ ARM64

pyhyperminhash-0.2.0-cp39-abi3-macosx_10_12_x86_64.whl (312.1 kB view details)

Uploaded CPython 3.9+macOS 10.12+ x86-64

File details

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

File metadata

  • Download URL: pyhyperminhash-0.2.0.tar.gz
  • Upload date:
  • Size: 16.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyhyperminhash-0.2.0.tar.gz
Algorithm Hash digest
SHA256 2c8e11fa32da35447b8aa5dbe40d95fe1ab88cd9c3a373b6e6e412fe18a627a1
MD5 55a645040c6ba7289f817ba4cd58ec89
BLAKE2b-256 aa7a88acc8a2f2221e56971f080dc179b19528413ae0b4179879d186c8f4c3c6

See more details on using hashes here.

File details

Details for the file pyhyperminhash-0.2.0-cp314-cp314t-win_arm64.whl.

File metadata

  • Download URL: pyhyperminhash-0.2.0-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 182.6 kB
  • Tags: CPython 3.14t, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyhyperminhash-0.2.0-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 ae1ed8a2204947d92c22a56ad0ba1fccafec111e48f445f94e767f2675c4680e
MD5 2902b14343299858b6a85ce22dbcc547
BLAKE2b-256 6c9dc00fb7484f0dbd28fc3261a6e8074b51a677621ce8cf9bf9192a58d2e775

See more details on using hashes here.

File details

Details for the file pyhyperminhash-0.2.0-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: pyhyperminhash-0.2.0-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 187.1 kB
  • Tags: CPython 3.14t, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyhyperminhash-0.2.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 49769fcfe8d525d18583edbfe29f5629ac0f6c6a7c1b04b8708babddd6083995
MD5 1ad4c52072bb36df2927d0f87f2eeb92
BLAKE2b-256 57d1e834c641a3f3b3c0e97f48e2de4dc00e22f1830276f7fe66e99984e82fb3

See more details on using hashes here.

File details

Details for the file pyhyperminhash-0.2.0-cp314-cp314t-win32.whl.

File metadata

  • Download URL: pyhyperminhash-0.2.0-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 180.9 kB
  • Tags: CPython 3.14t, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyhyperminhash-0.2.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 55557cc495305c220bc4d01b9758a2d7344a81e0f368e0906c748faa4413eb3b
MD5 9aeb3c4d123a7e62f1f59d33451646c0
BLAKE2b-256 ffd518327b631a1f134015af48c045d50d30b9dabc4c7a4c3e0df5f067796b0f

See more details on using hashes here.

File details

Details for the file pyhyperminhash-0.2.0-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: pyhyperminhash-0.2.0-cp314-cp314t-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 535.0 kB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyhyperminhash-0.2.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 adbe819319298193f62596c23a51d352c915e1b56d7c2580cf9e6781aeae9c84
MD5 1b34dba8a367f87515b9b7f42d501838
BLAKE2b-256 6565cd19fd694963d16a4522493bfc13e8a3148e765729170cacc0074478ec5e

See more details on using hashes here.

File details

Details for the file pyhyperminhash-0.2.0-cp314-cp314t-musllinux_1_2_i686.whl.

File metadata

  • Download URL: pyhyperminhash-0.2.0-cp314-cp314t-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 571.9 kB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyhyperminhash-0.2.0-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 aeb126579d00194b1eade0f168641ae4f3ea5a451986d851ca17efdcc18c93a4
MD5 964c24b9049a3d20e115df88a48de1cd
BLAKE2b-256 e8cde6c506fcde4a015e20f047cc60b882379919e56d26913688b76f2a2afcf0

See more details on using hashes here.

File details

Details for the file pyhyperminhash-0.2.0-cp314-cp314t-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: pyhyperminhash-0.2.0-cp314-cp314t-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 613.5 kB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyhyperminhash-0.2.0-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ebac3b4fbcb095309c969e7832320ea2e1b2bd52cabc68551126686a18fc65bc
MD5 376d85b4fb081b6dae4dd6a6392e6456
BLAKE2b-256 2d1971b0c12b71b0b3d3db2ad9230ef5553abd5ca1089cef9cec552966502a6a

See more details on using hashes here.

File details

Details for the file pyhyperminhash-0.2.0-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: pyhyperminhash-0.2.0-cp314-cp314t-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 504.5 kB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyhyperminhash-0.2.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 eb1cf184778e46530f7d21d91cf0043ebfff26ce1775f0b64393ce16886c2a4c
MD5 e7d9debe8e755d24bb8e76643013e4f6
BLAKE2b-256 a0e3f294e6e5004277e042e8ec41c017b525bc72fd48c0ef72180ee98e8bad64

See more details on using hashes here.

File details

Details for the file pyhyperminhash-0.2.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: pyhyperminhash-0.2.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 329.0 kB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyhyperminhash-0.2.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 48dff349737df73733340f2d0d8f96e92b25eae297e96da33db7c9d8094e6a57
MD5 8f971c79df3c52df825f7cb2e14748c0
BLAKE2b-256 05aafa197c85f8eabc58827840df0d2a0a35a6e9d8df8f595fecbbb89facb545

See more details on using hashes here.

File details

Details for the file pyhyperminhash-0.2.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

  • Download URL: pyhyperminhash-0.2.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 352.8 kB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyhyperminhash-0.2.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3ed90a5644c4136c1388ce2767d4d8e884c52ff1173f1904d30da8b86c8f9139
MD5 08838421bdc2c90a1edfa894f4084c2d
BLAKE2b-256 7258ceb82c33ba94b185d890752bfbfa4cdc07951f7bf5395e8f0fcaa671c716

See more details on using hashes here.

File details

Details for the file pyhyperminhash-0.2.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

  • Download URL: pyhyperminhash-0.2.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 451.7 kB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyhyperminhash-0.2.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 02b6d4f2d54ed7f734a69551d4578ab8926f024f0ffaffc9cbe55501e7665eb1
MD5 785c51f757e542eb8aef40b50f1d82cc
BLAKE2b-256 38f53094416e3c2489963019f2f6f68f6d3d41e77fa093ef429d4d7e6aa6d8f1

See more details on using hashes here.

File details

Details for the file pyhyperminhash-0.2.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: pyhyperminhash-0.2.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 338.9 kB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyhyperminhash-0.2.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c869a99ccd3f7200e50462a8f3b759ee3306e0811bb5eb51f37a422b87474530
MD5 550c1b0b937fc2a634779cbb779ed796
BLAKE2b-256 f31b4fae6be9fb319be23f7a6582effb8978fb6df92654c571a5824b5c57789d

See more details on using hashes here.

File details

Details for the file pyhyperminhash-0.2.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: pyhyperminhash-0.2.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 329.3 kB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyhyperminhash-0.2.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3b69610ac317fc559ccf03ea09b2a849cc82036b3689f94597326fa79bb8253e
MD5 e5ae638d5d99863d9e4dca7f182e9456
BLAKE2b-256 9be61ca7f7f0521cf52ac024ce89facfbdd864f1043bcaa899a6cb49314f1640

See more details on using hashes here.

File details

Details for the file pyhyperminhash-0.2.0-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

  • Download URL: pyhyperminhash-0.2.0-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 355.5 kB
  • Tags: CPython 3.14t, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyhyperminhash-0.2.0-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 99cd14b7f5ab98bebbe599f7abf788c50e04798e403e19fc0b21e40d3a86b64f
MD5 ac9f00152eea0627667bdcf473f8e0f6
BLAKE2b-256 595e6924cf99e34dbf8f74db492b108f0942d5343eb6593f84d9c70a664d5f3c

See more details on using hashes here.

File details

Details for the file pyhyperminhash-0.2.0-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

  • Download URL: pyhyperminhash-0.2.0-cp314-cp314t-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 297.8 kB
  • Tags: CPython 3.14t, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyhyperminhash-0.2.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2336ffab58b915c6c84d864eb8220954a5b832e6acbead903ac179d7ecc0fb89
MD5 b58627af2d62b4f3c701dfb397f2a301
BLAKE2b-256 f782658ab94383ffa778636b7a96097809bb0af4e5cbf97fc73de64df7b22b3c

See more details on using hashes here.

File details

Details for the file pyhyperminhash-0.2.0-cp314-cp314t-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: pyhyperminhash-0.2.0-cp314-cp314t-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 306.0 kB
  • Tags: CPython 3.14t, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyhyperminhash-0.2.0-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 18c8b932e9ca59df2d14aa56a667657c7cd11399475027ac125fd0a7817e0001
MD5 b73231a50e0e576ee6d55155132c3ebd
BLAKE2b-256 b109a1b115955b83cff3a070d30ca0905e56de91d5e24739f6ce637ceb8f83e8

See more details on using hashes here.

File details

Details for the file pyhyperminhash-0.2.0-cp39-abi3-win_arm64.whl.

File metadata

  • Download URL: pyhyperminhash-0.2.0-cp39-abi3-win_arm64.whl
  • Upload date:
  • Size: 190.1 kB
  • Tags: CPython 3.9+, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyhyperminhash-0.2.0-cp39-abi3-win_arm64.whl
Algorithm Hash digest
SHA256 bcec90e53891ec6ad42f42ead3bd62a3d699671fc2b0fbba10e7618ae5920e7c
MD5 f5ed3d6e0a681d3b5667a176513102c4
BLAKE2b-256 f08b4119701aee1475d351a29da4f30414035382af8eaf53f677da1bfddbe051

See more details on using hashes here.

File details

Details for the file pyhyperminhash-0.2.0-cp39-abi3-win_amd64.whl.

File metadata

  • Download URL: pyhyperminhash-0.2.0-cp39-abi3-win_amd64.whl
  • Upload date:
  • Size: 194.3 kB
  • Tags: CPython 3.9+, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyhyperminhash-0.2.0-cp39-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 e79c95e0698c4fe4f2f71b61f783d34344b7d118d2ac20dd59621e55967ed889
MD5 708dead621de15e660c811cf458f9f24
BLAKE2b-256 dd9614e655cd57d55e633a12f95034c39677409e409e8c794ab2c86b5659f184

See more details on using hashes here.

File details

Details for the file pyhyperminhash-0.2.0-cp39-abi3-win32.whl.

File metadata

  • Download URL: pyhyperminhash-0.2.0-cp39-abi3-win32.whl
  • Upload date:
  • Size: 188.6 kB
  • Tags: CPython 3.9+, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyhyperminhash-0.2.0-cp39-abi3-win32.whl
Algorithm Hash digest
SHA256 b6195d67499b5c93be42f52d6eaf6d7acadc58879e11f42be095805433886015
MD5 021f44d2683a7c54b2c3d4fe61016667
BLAKE2b-256 f545506e68353afe3979e33504ad0e275d487c7317325c309a4c1f6bc405e91a

See more details on using hashes here.

File details

Details for the file pyhyperminhash-0.2.0-cp39-abi3-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: pyhyperminhash-0.2.0-cp39-abi3-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 544.1 kB
  • Tags: CPython 3.9+, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyhyperminhash-0.2.0-cp39-abi3-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ac2b917ca254ad2641afb5fd0d012a14e70f80ce61ab044125874223e2d4dce3
MD5 d8e9add478c362e07e9b9bd194f0409b
BLAKE2b-256 6222ef0550776f89798cb26764ff78647da6a84bd8c312231a3f060c04d3a436

See more details on using hashes here.

File details

Details for the file pyhyperminhash-0.2.0-cp39-abi3-musllinux_1_2_i686.whl.

File metadata

  • Download URL: pyhyperminhash-0.2.0-cp39-abi3-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 582.6 kB
  • Tags: CPython 3.9+, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyhyperminhash-0.2.0-cp39-abi3-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 23139a030ea1566eebcdf5e98c1a5643b76b76afeba06cd0508b4ef156a8758f
MD5 23c540e789563c9d7f26fe38fff8455e
BLAKE2b-256 74fd98e32a267ca3040f870a5f6467693ee4224b6380a7b498487207df2d5dc1

See more details on using hashes here.

File details

Details for the file pyhyperminhash-0.2.0-cp39-abi3-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: pyhyperminhash-0.2.0-cp39-abi3-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 623.0 kB
  • Tags: CPython 3.9+, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyhyperminhash-0.2.0-cp39-abi3-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b853db8704f8eb2afde18b8ee0247967c542dccbe2006d5b26db5e6666cb2932
MD5 304ae9d87b83848a4410f3d79ffbb278
BLAKE2b-256 f7afd1570937fa86aeb38175c560652a55a3f88db9d6ce0b90730b3474ae2f5b

See more details on using hashes here.

File details

Details for the file pyhyperminhash-0.2.0-cp39-abi3-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: pyhyperminhash-0.2.0-cp39-abi3-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 516.7 kB
  • Tags: CPython 3.9+, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyhyperminhash-0.2.0-cp39-abi3-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 39f8fe97b18d6247497fb1524bb1368d7feccbbd33a6318274f84d7777578974
MD5 03d70e45723b7d8dacd441ec32352646
BLAKE2b-256 3f039a694d8bee8bd77347317f1962b91a132ea97e18896ac3144650afcc7a8a

See more details on using hashes here.

File details

Details for the file pyhyperminhash-0.2.0-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: pyhyperminhash-0.2.0-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 339.6 kB
  • Tags: CPython 3.9+, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyhyperminhash-0.2.0-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1952c34ce8226fac781d5ea9321d44960e85323fb8489f4d0df7a5bffae0cfd7
MD5 9c1e342131a51cd49f6249e703d28c88
BLAKE2b-256 92a5e5e284504aa2ade2f9273c47223780a765f5a33a5a57bcbc75737bfa8a58

See more details on using hashes here.

File details

Details for the file pyhyperminhash-0.2.0-cp39-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

  • Download URL: pyhyperminhash-0.2.0-cp39-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 361.8 kB
  • Tags: CPython 3.9+, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyhyperminhash-0.2.0-cp39-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 222ced846c29552facd8d02d0f226364c6e38fe25a2fbe4b9889901f4a03b071
MD5 bc443924b6badf570c1ccac234171665
BLAKE2b-256 e792ce067c5f9b46e477ccf63095919e7d1ba4616ebc411755d199ac9d612c65

See more details on using hashes here.

File details

Details for the file pyhyperminhash-0.2.0-cp39-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

  • Download URL: pyhyperminhash-0.2.0-cp39-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 460.5 kB
  • Tags: CPython 3.9+, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyhyperminhash-0.2.0-cp39-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 11a6901377c73715bffeecd9034997762d261e0178f9d4a1405ced5b1ecb09eb
MD5 b2fbc26c5b4d64d08486026fba5c632a
BLAKE2b-256 ed0155a35e6ca33e3c6c2d2ff80a956ecedc0383590170b512aa2e89a59c32f4

See more details on using hashes here.

File details

Details for the file pyhyperminhash-0.2.0-cp39-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: pyhyperminhash-0.2.0-cp39-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 349.2 kB
  • Tags: CPython 3.9+, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyhyperminhash-0.2.0-cp39-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 fdef281723b8c2d82efeb2a1827225611304de3f2f4b1b9bc01fe660107790a4
MD5 7df80f7a9a7f48c3a9f7d9cee075c53c
BLAKE2b-256 6fa7e9a0e975890ad36d3db48b181dd91d21cb205364ec9f916e6b461d92865b

See more details on using hashes here.

File details

Details for the file pyhyperminhash-0.2.0-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: pyhyperminhash-0.2.0-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 340.3 kB
  • Tags: CPython 3.9+, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyhyperminhash-0.2.0-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 232ae1e8ffd996afefd5ec238893ff0c6daa8792388424a18b82d5136fc83f52
MD5 f793e870b12ee46d2df38e0d642ea03c
BLAKE2b-256 239b95c2fbcabed50361926fdd88cedc7e35f56eeb69b09fce9c5768d3b45cc2

See more details on using hashes here.

File details

Details for the file pyhyperminhash-0.2.0-cp39-abi3-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

  • Download URL: pyhyperminhash-0.2.0-cp39-abi3-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 365.5 kB
  • Tags: CPython 3.9+, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyhyperminhash-0.2.0-cp39-abi3-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 4d2ab36696bf6b85cac00c49c844c0e73590161469e2c203ced4e0805e85d0c1
MD5 8d14c8770403e981a3cf93999746bb05
BLAKE2b-256 e204a02a17b67b000e27fedffbe75f68fb58898dc83c295b01b1009f07601ef4

See more details on using hashes here.

File details

Details for the file pyhyperminhash-0.2.0-cp39-abi3-macosx_11_0_arm64.whl.

File metadata

  • Download URL: pyhyperminhash-0.2.0-cp39-abi3-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 304.7 kB
  • Tags: CPython 3.9+, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyhyperminhash-0.2.0-cp39-abi3-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c513c0dec2234a0e073bfa17d94eece0a3cfa9dcd241dd6ae09b53400b10a075
MD5 90d9c22d00dec12a3bfb9ae00860307f
BLAKE2b-256 8fd60b0883daf5e3d5535057a369d02682d43fad81c9045018c7fad31eda3ba2

See more details on using hashes here.

File details

Details for the file pyhyperminhash-0.2.0-cp39-abi3-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: pyhyperminhash-0.2.0-cp39-abi3-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 312.1 kB
  • Tags: CPython 3.9+, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyhyperminhash-0.2.0-cp39-abi3-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0a17a6c8d85ac2602434822963e09a07e4c8f7832ab3643f77dc4bd258cfecd4
MD5 01e54227192cb7de78bef69f156883b9
BLAKE2b-256 04ee470cb50859bf6f8f9baa21d1d49c9158bc8efd0b58e7e84368b189eedff1

See more details on using hashes here.

Supported by

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