Skip to main content

Polars plugin for pair-wise distance functions

Project description

Hellooo :)

This plugin is a work-in progress, main goal is to provide distance metrics on list, arrays and string datatypes.

The plugin provides three namespaces:

  • dist_str
    • hamming
    • levenshtein
  • dist_arr
    • euclidean
    • cosine
    • chebyshev
    • canberra
  • dist_list (these act as set similary metrics)
    • jaccard_index
    • sorensen_index
    • overlap_coef
    • cosine

Examples

import polars
import polars_distance as pld

df = pl.DataFrame({
    "foo":"hello",
    "bar":"hella world"
})

df.select(
    pld.col("foo").dist_str.hamming('bar').alias('dist')
)
┌──────┐
 dist 
 ---  
 u32  
╞══════╡
 1    
└──────┘


df.select(
    pld.col('foo').dist_str.levenshtein('bar').alias('dist')
)
┌──────┐
 dist 
 ---  
 u32  
╞══════╡
 6    
└──────┘



df = pl.DataFrame(
    {
        "arr": [[1, 2, 10]],
        "arr2": [[2, 5, 9]],
    },
    schema={
        "arr": pl.Array(inner=pl.Float64, width=3),
        "arr2": pl.Array(inner=pl.Float64, width=3),
    },
)
df.select(pld.col('arr').dist_arr.euclidean('arr2').alias('dist'))
shape: (1, 1)
┌──────────┐
 dist     
 ---      
 f64      
╞══════════╡
 3.316625 
└──────────┘

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

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

Uploaded Source

Built Distributions

polars_distance-0.2.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (7.5 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

polars_distance-0.2.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (5.8 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

polars_distance-0.2.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.7 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

polars_distance-0.2.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (7.5 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

polars_distance-0.2.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (5.4 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

polars_distance-0.2.0-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (5.8 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

polars_distance-0.2.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (5.3 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

polars_distance-0.2.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.7 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

polars_distance-0.2.0-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (7.5 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

polars_distance-0.2.0-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (5.4 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

polars_distance-0.2.0-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (5.8 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

polars_distance-0.2.0-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (5.3 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

polars_distance-0.2.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (7.5 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ s390x

polars_distance-0.2.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (5.4 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ppc64le

polars_distance-0.2.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (5.3 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARMv7l

polars_distance-0.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (5.1 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARM64

polars_distance-0.2.0-cp312-none-win_amd64.whl (3.1 MB view details)

Uploaded CPython 3.12 Windows x86-64

polars_distance-0.2.0-cp312-none-win32.whl (2.8 MB view details)

Uploaded CPython 3.12 Windows x86

polars_distance-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.7 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

polars_distance-0.2.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (7.5 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

polars_distance-0.2.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (5.4 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

polars_distance-0.2.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (5.8 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ i686

polars_distance-0.2.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (5.3 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARMv7l

polars_distance-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (5.1 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

polars_distance-0.2.0-cp312-cp312-macosx_11_0_arm64.whl (3.1 MB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

polars_distance-0.2.0-cp312-cp312-macosx_10_12_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.12 macOS 10.12+ x86-64

polars_distance-0.2.0-cp311-none-win_amd64.whl (3.1 MB view details)

Uploaded CPython 3.11 Windows x86-64

polars_distance-0.2.0-cp311-none-win32.whl (2.8 MB view details)

Uploaded CPython 3.11 Windows x86

polars_distance-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.7 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

polars_distance-0.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (7.5 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

polars_distance-0.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (5.4 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

polars_distance-0.2.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (5.8 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686

polars_distance-0.2.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (5.3 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARMv7l

polars_distance-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (5.1 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

polars_distance-0.2.0-cp311-cp311-macosx_11_0_arm64.whl (3.1 MB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

polars_distance-0.2.0-cp311-cp311-macosx_10_12_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.11 macOS 10.12+ x86-64

polars_distance-0.2.0-cp310-none-win_amd64.whl (3.1 MB view details)

Uploaded CPython 3.10 Windows x86-64

polars_distance-0.2.0-cp310-none-win32.whl (2.8 MB view details)

Uploaded CPython 3.10 Windows x86

polars_distance-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.7 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

polars_distance-0.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (7.5 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

polars_distance-0.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (5.4 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

polars_distance-0.2.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (5.8 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686

polars_distance-0.2.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (5.3 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARMv7l

polars_distance-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (5.1 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

polars_distance-0.2.0-cp310-cp310-macosx_11_0_arm64.whl (3.1 MB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

polars_distance-0.2.0-cp310-cp310-macosx_10_12_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.10 macOS 10.12+ x86-64

polars_distance-0.2.0-cp39-none-win_amd64.whl (3.1 MB view details)

Uploaded CPython 3.9 Windows x86-64

polars_distance-0.2.0-cp39-none-win32.whl (2.8 MB view details)

Uploaded CPython 3.9 Windows x86

polars_distance-0.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.7 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

polars_distance-0.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (7.5 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

polars_distance-0.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (5.4 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

polars_distance-0.2.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (5.8 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686

polars_distance-0.2.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (5.3 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARMv7l

polars_distance-0.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (5.1 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

polars_distance-0.2.0-cp38-none-win_amd64.whl (3.1 MB view details)

Uploaded CPython 3.8 Windows x86-64

polars_distance-0.2.0-cp38-none-win32.whl (2.8 MB view details)

Uploaded CPython 3.8 Windows x86

polars_distance-0.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.7 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

polars_distance-0.2.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (7.5 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

polars_distance-0.2.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (5.4 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

polars_distance-0.2.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (5.8 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686

polars_distance-0.2.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (5.3 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARMv7l

polars_distance-0.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (5.1 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

File details

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

File metadata

  • Download URL: polars_distance-0.2.0.tar.gz
  • Upload date:
  • Size: 16.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.4.0

File hashes

Hashes for polars_distance-0.2.0.tar.gz
Algorithm Hash digest
SHA256 f16296f15af4b80100b2be09c8ce4844510c77f1337b1330826e31397baba6b4
MD5 f0abaf83fa0f18b976b7778627caa17d
BLAKE2b-256 52a83767ee866d8d9cafcfa569a100864801d42e2fb1dcfe1ded32a9d8797e33

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.2.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6cc2d921d33c836b1d7efcf84047eaabe6ce8b2f53eea7d42a92c9169f586e3f
MD5 7a39f560b1e3184eec4872f1a414242a
BLAKE2b-256 a4f42d3bc3305e41785b6d7c71ace122838b7bdbaa0f4bd845ac159fe536c647

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.2.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 784bdf7e72b7fbe16f7c2ce9d8212cfa585ddd33b9e129f81abe3dd3725e6e43
MD5 ea9799309a0e479e666b06ae9621e052
BLAKE2b-256 0b9e1cc2d9f0192ef2db58c9b0f8f26b957f82a443b1031285d71c55ec06f138

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.2.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a010f3d995b73ba3e47534c8b986b771f57ff9ee2dac080792c20469d860b26f
MD5 664e41722e0bc642cd2db9d5f963eb10
BLAKE2b-256 99f10bff87df488e91bb6fec0d8d34d0251236ec99cb05076b70cdc973030415

See more details on using hashes here.

Provenance

File details

Details for the file polars_distance-0.2.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for polars_distance-0.2.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 13ac097a8d39bfa2d709869fe68aac5aac93febe1eaddae393aaa24cb816ccb6
MD5 980f16ca8a111bee5cdbdc61afaad878
BLAKE2b-256 bfd52e250867e0ec0148e32f21d4b84390773c53e4d636165e98c23666591787

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.2.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ac9f1862ca8f339bca8bab617701771412418d06a8b4a1dda840f4fa31e22502
MD5 91ed9ec2ba2199ac745fa5f5c518a995
BLAKE2b-256 b8b5a12f779a0325e8fb7524e16e34ff563d83d0527a36d97797d68fd2636400

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.2.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 18cacbe825bb962d79dcae4e1dc2a34ed68bcd1b74a5424036f00ac807dba6d7
MD5 0767c267d736f59bd5b651053b505e13
BLAKE2b-256 c1a5befec91240f0bffcde9785cb769c880b06df7655a47c9b83b68d88a510cc

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.2.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b9fd5182976e314231c2cddb2833cc82bd92052420a79b0425caaccf98458685
MD5 15fcef3e12df80547553afb54381985f
BLAKE2b-256 ee1eb52b58b39ad190cf9376fcf9a892c9f7576861660ac7e5e208b696b05c65

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.2.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a6d5dd37ddad9d15cc325730775df00302d5df9c6cc3acef7486e80567a678b1
MD5 9359c85d30c4cb3878b0f17a78bf4e5e
BLAKE2b-256 f5259bd90d75fae29cba4c6d3e84aa0d258a9023eeb27ccc6fbc980bed263937

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.2.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8ce4013e901a1df2dcae330a787eed649d2946b1cbc71997d893c941a816ce6b
MD5 4c0ba08bc4ddc23e99eda7c4a8e3f46e
BLAKE2b-256 c1913bed69c5d469a3c66551c92de9c815e8fdf6b5be69ea3bd5507dcafa97f3

See more details on using hashes here.

Provenance

File details

Details for the file polars_distance-0.2.0-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for polars_distance-0.2.0-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 291fe9864e4f8a49a6684fae85666e3b2a427c3e1e98922e8c9a761c29444a6b
MD5 6f9676ac09953a768a244d4f35c6840e
BLAKE2b-256 2356d3bc0f55b9df1cf45a5a957624420d7e39fdcf9570497070400c3cd21426

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.2.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f2275d7d4e72653d98f8f432e4eb0a03538caa9dac4327b7afa4d22ec43a94a4
MD5 3f0cd992e7aab420a692ba367dbb6a93
BLAKE2b-256 574180d042f158eb462a9781c749228c6459f4b498b5dcd0e7b250ef30f8ddcd

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.2.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 280e10189688fc3a0098b3c96fa0dd4bc9f6ada924469ddffa9d8dccd23c2e85
MD5 76ca2aded28e81c84ed0ee57b6715204
BLAKE2b-256 31867657c28d137dbc29ceac5dbc3add94bd9faf31f88880b2f548ab90c0cc9e

See more details on using hashes here.

Provenance

File details

Details for the file polars_distance-0.2.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for polars_distance-0.2.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c3a1acf9a2133babc0d51894cb53ac790bbf460efdb2d358e1282ead2f1b3a6d
MD5 1716efb8ad1bd1b8d49bd7f3e8292f6d
BLAKE2b-256 701efbc0af72eaf3d361bab30039fb85f99ebc10a33652819e9683f0e276b0ba

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.2.0-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 23eeadc289503c5c3c5b16d061097da4fc180a913d3c5080c1f77eeb53802931
MD5 53fb6f9f9786373a4710406746252bf2
BLAKE2b-256 48c2f2f5b31b4813fbb0caa87566a7b607225d4d6db7122bb3d7240f2db70e59

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.2.0-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 477f6146d851f147580c3d28bb985d7d6b8287772ce75540fad34356a067ddd0
MD5 7c31a785efe879163033daaa47750b0a
BLAKE2b-256 2429a4e7ec0731dddc09afffb0929f18a6acbb583c2911052aa16c7b68557969

See more details on using hashes here.

Provenance

File details

Details for the file polars_distance-0.2.0-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for polars_distance-0.2.0-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c31b45dbcf4abf9c39a94feda65c4812dbb54da3e9ed4526be04b660cb39d08c
MD5 e2e477aef1316271c30a43a1052c6801
BLAKE2b-256 596a4a0556618ab8f2b3360fda56b942ce9b7e414c5a9640280b95cf5c2f0f69

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.2.0-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c599e6b152f7fa2a0908a0e29f49023ee3d5b27dfd3724169ffe5158898d9775
MD5 a06f3c4e82f4c12f196d42f013e83550
BLAKE2b-256 abc99b4bb95860c721a13f474add2e1fb29c3584c0ca01aafc94e14d16b6c6ea

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.2.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2ea6833060d47592294c6492160cb15af334794591936b76d81df4a01e2c11fe
MD5 fd44cbdb3f998829ba4595d8e2a77c04
BLAKE2b-256 df62c827b79e25883f485804ef86d8f1f6fa3e9268377ddbcf11103e97ce1146

See more details on using hashes here.

Provenance

File details

Details for the file polars_distance-0.2.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for polars_distance-0.2.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2849668264d5785b6e77e3e61d55bc7d4578e3b61e282579f4da51bdec60630a
MD5 a1bac485404cdfd26ecb0f15d9f86417
BLAKE2b-256 994a693326a3c2eb26716131d9acb3a9853bf89e1c95c2782be405bd384b0b6d

See more details on using hashes here.

Provenance

File details

Details for the file polars_distance-0.2.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for polars_distance-0.2.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8df4c7c9ec0a605e33897bbae0ef617ec67c879bb102e6330c10bb4ff048847b
MD5 c05718686c297e35eaf0481fdd643852
BLAKE2b-256 99bfc82292187f5f3e696fc743a97a2492fc779e087acc5a42fcf8b04b9ef1a4

See more details on using hashes here.

Provenance

File details

Details for the file polars_distance-0.2.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for polars_distance-0.2.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 20c303459d466d00a669e376feecfde4aa55fb5cdc5aec6547861a0e57b52b62
MD5 1c4eb4ad752c22db39200c230711b99d
BLAKE2b-256 8008e23593082aed2c15df867d1bc5e8783394fbf83a137b61151a54ebc3d625

See more details on using hashes here.

Provenance

File details

Details for the file polars_distance-0.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for polars_distance-0.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fdbf8c23f4f67838e5b825230f4d07243ecde4f0395d6b801d4e6d5b012da1f6
MD5 4837c84241eaa948834b3316b2c3257c
BLAKE2b-256 876a9f4aa97fcf111204183e01ba54811bfc98fc4a10cfc93ce970231c5bbd3d

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.2.0-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 e771e13a8ff22913d238452ce20e97e41935ffb447f8084de030ee24fb9008dd
MD5 6ac9e8240e1b13da9b9407da01ab109a
BLAKE2b-256 c5172471b69ee86f9e629f4273a9495c8eeb6d59ea3e63ca4090b5845b6018f3

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.2.0-cp312-none-win32.whl
Algorithm Hash digest
SHA256 a594c65aac99397e8949a5e9361cedf2ba7270542b79fa92d2d16b02e46012a0
MD5 d44048f854b57db3d1b6e2e60df81709
BLAKE2b-256 8d3795504d804abc0be9f02527fd97953346cac4b0e6df3aa02ae1be84773fa6

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b63adb94db8c091907fbb9e8c4c83791ea20a89e6e09d76650c00568f978da36
MD5 fa7ce5b23de626aa723bf46a3d0604c7
BLAKE2b-256 a22928717cb912021e49c8a21109a329676cb027c978106c3d0d3257a6d5a3c3

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.2.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d9392cd740ebef6931ec0be882009beaefb2b99987c9ad2df5c4cd440b189616
MD5 9bb153572c8e1e39e3d1e1f904586a0f
BLAKE2b-256 48157970febbec39bda36829a8fdd729398d2157e8e3028d4feaaf553f2a56bd

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.2.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a83bbab0dc3b1133da3d1908e53de0115116a1a6fc16d0559161f9fa968b48d7
MD5 af08a34acb9bf967cff7620db687a4d9
BLAKE2b-256 2cabba75fb2fe039b46b8541079c6ade3a2ae4ae07aa807776083fd7d2fe8cbc

See more details on using hashes here.

Provenance

File details

Details for the file polars_distance-0.2.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for polars_distance-0.2.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7ab8931753971f749e9e419e7e59149f7eab4502265b1fe37b88983e8edce0f4
MD5 fbd0b5a045aa9b13e0bd542af7e90da9
BLAKE2b-256 284a736d46aec22f3b95837fb13dba2376346b2c6cd91cad125007ed9838a628

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.2.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c82a151ecc758c1656c6ae42f4c4d602bc8d2dcf6cf1e83ac012af7fec1091e7
MD5 9042650ce9d100d2c583b1626029258c
BLAKE2b-256 ee98ed37ee1160640ac31a9b878614d19d8d45c4fc627e59e7df15a05a9a81f6

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7f08114140f9c201b0aaa4fb7a0748f44f3e22dd1955fa659a32dae784367dca
MD5 1206f60983984635f1bf0b59d0f8cb06
BLAKE2b-256 054e54ddd85ac3aa15d5e87ff165649e3abb1a3b99e98fb2cadfcdff24809ee1

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.2.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d2af85f9b44111504b922e64816fa751bf82742f54bb0e43ab918510eb85a2b1
MD5 ccac391714417ad33c86d79d32cb8144
BLAKE2b-256 0bb2a94f5a97a83adac0dea77f9b9675a441335893a6bb8ae30b61eac6952fa7

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.2.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7fbd1ab37a9890a243b740586983c7965674bbd3cd47483d2837c6fe337a8841
MD5 1150a39f7b45a0e6891b724bb6b70a80
BLAKE2b-256 abcb1da2d7ec319c8639dcd3f2b74111356bf4458e39084f1b9fe8aab8324685

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.2.0-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 5b1826c9c042bccfc50aed5a274c7417de941db42626674fd53c9ff54d2d3cac
MD5 0c4ba5c4d81e45148c9de4a005bc93cb
BLAKE2b-256 848fdfea48dec12715513de55c8d56ff98b60c273b3dd0efa677752e68135d99

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.2.0-cp311-none-win32.whl
Algorithm Hash digest
SHA256 213398040a4c4ac221084869041fc53e80692bc70e6e957ae1304aba2b70b552
MD5 5927de04620beb81499ad6450d66472d
BLAKE2b-256 0bc9d57b2dba9aaedacf632cf34836a76b188bdc4493ae1d9029fd820bfcd1ad

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 117b2b1d82a272081ffeffd99f1f0808160f5fb0b223dafd24c7232be85d64b0
MD5 6e7229b4cef3b0b5065f480f1919c7cc
BLAKE2b-256 50ed6e54ab3ed6f8a02899633b54bd3dc5dd08be731983db6915dd62e8f4b955

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e9608060cc3a7f967192fd56a88956d9b79515be131cbfcc4705aa7defe1e28d
MD5 4730dd7df2b8047b5cec7edb8f4ddecb
BLAKE2b-256 340ae4194ed305856b22831cb58637815023fc296ee3773ab4ba50daecf06ecd

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9fa609a366f3dfdbb8293b19a0a921c073e7ca8458f1b6bb1cd992b67121b045
MD5 e44392cabeaff0d16f1ed18b9774c61a
BLAKE2b-256 8a6ae8d39383266ecc43338c76781a1c685e01f87f6bdb7389f48a1c4bb36d5e

See more details on using hashes here.

Provenance

File details

Details for the file polars_distance-0.2.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for polars_distance-0.2.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 aaf519ea22db71171ccdc70a142c734b6159734c04d56da7fe3ffe77cd14314d
MD5 a495b3b78298dee1e2059de10d5f0aa3
BLAKE2b-256 01579a9fcf9a6ba438a79190e24dbd4f4701393a2047c978dd0ca40f0593a863

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.2.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4e4d5c967bc3173f177c762e5f696e40a3a153a8ba4e68bd297a0cf1e86da4af
MD5 102eebb6a1886f74c3e00d778d033301
BLAKE2b-256 0dfb911c62278d23c233947fb02759ae4d1267bc61005b988c5414b497e9d750

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 655600d2e827925eb30d8627efbddede8f7e078e5e54c9288d264cecd24703a9
MD5 649b5a8f95e50d6f2995165ecdc6be3a
BLAKE2b-256 79c6b7925fe3a785c0a0d3b635a5649a197118257f98373d4208f666dfcf6f56

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.2.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8876293907ad1fa596eef76182ec698220758904fb6e259a711e0b86c818ad1a
MD5 d7eeb4cbee278986fafd48b9da58d0e1
BLAKE2b-256 b3bf0c640a2a455fb19b2753d445ab46c6c9c652e35724fd2341a37c5a37e1e8

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.2.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d436a7986c2d547c7bc6774a91f8bf060bcba1481b582250f37b46e6a6b63dcf
MD5 02ddc31e1df05b7d53a2e6478dc46376
BLAKE2b-256 aef97755fe11c2adf153eb1148c61882a177841b55bdcfb0c1a587258ca1374e

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.2.0-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 ea8efa588ffaa8547998b7aad54faf5e0374e07e6909cb01b95d9a9cc5c88ec7
MD5 47146fd847da4e6df1226ebd820556f0
BLAKE2b-256 21f00b66c5d9d152577ead9e1a65a001deb089c8ba15386524246809f44c4bfa

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.2.0-cp310-none-win32.whl
Algorithm Hash digest
SHA256 5afddace7ddc1b85069bd0c361a615370b965b6c64bdc896438b1a21744bd4c5
MD5 5b6943624c12795070c57050c0f750d6
BLAKE2b-256 ab18bd89c4f6f4cc3f3df82078f2035e561127fa5e8b08904828905ea41c6b2e

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 db9c342431058dfb8a8f2e9e5fe573c930c1b3e45a8d74006fbb6c98bfc3b49a
MD5 279f5146bdc9bc82a58562b3e6dc99d7
BLAKE2b-256 bc8397347065c472b1cd6b0b5b741a569753fffa67f0945465372abb75d4c4cf

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d1c832ca25f4a5461a290fca388a6ee6eda45971fe62471251b3aea61d90a7b5
MD5 ddf69fb5da92dc0f52b4db14e7f6c675
BLAKE2b-256 e83f8768c4bc7da7d88df9fe2945cb73e33fb42b124bd8144a4ffebac562e822

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e5bbd2cb0ef6afd5ce5815ff977f335f11005c46cc2aaa60e2509c9c13988e37
MD5 e4e205924501e12492d64f0b22c5c12c
BLAKE2b-256 356dc4a7e1933fa748fe5e9ddc4d8baf8f32591c877077a5d75ed5dc88fb0e74

See more details on using hashes here.

Provenance

File details

Details for the file polars_distance-0.2.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for polars_distance-0.2.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 aeb94523a6cce20bee0314de0f526ad79369fbaab9e781f017e6d8639ee9b642
MD5 0d414e7db67bc371a77b985bc4b4c1f8
BLAKE2b-256 71fcae6fdb15a3db19450ab0cbccf5e3490448c986e35fc765383cf230ffc8a7

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.2.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5959498b410cb0a6365ac294180e421bcd45ba9abfae6911287346d5b54fb972
MD5 b0282dca5407f33b63f85ce9ca628a04
BLAKE2b-256 e431392c04bdde356833ba81c73ec2bfcf0b89498e215f5f3f2ac00e8f44a97d

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 faf2ce139771b4d153b6d3b12fcb3ae68b73ffffdc1266bccc1793854994ddd1
MD5 1069596184fabd8507466dab0c4f5040
BLAKE2b-256 d82ced2fbd2c37f371d037957451f0391804caac83c5ef87a39c5ceb7df36b07

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.2.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bc84e47a615440f18a0b6dd1d55c510e92598d78ce430f64a8b5fb2909fb07d1
MD5 f59e8a3b465a071104d246537fa19558
BLAKE2b-256 5b5d54d1eaef18f6a01403fa6f5ec0f4aba5af393ff6b147dafdbe8f42a04612

See more details on using hashes here.

Provenance

File details

Details for the file polars_distance-0.2.0-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for polars_distance-0.2.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ee49a9bf66b9a11f5572d095fc98f11f70df20b74fb3dcc3c7fb196a9b42dbee
MD5 18a11c010d6b8275c2970745993e221f
BLAKE2b-256 b058223e50062a134de96513c86fb4dc78d514352dc4877f6a5364361b189a6b

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.2.0-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 a60e7c948f10541bae7e8b4ec17e79f4ebfe4b54fbe7f7a0ba0d18fc53dcfa52
MD5 dcf7db442cca6ce490c2b128dd1d10ff
BLAKE2b-256 58e69d6d9886df6646293292eb4838a2bff88a3064f0a5a25f275def090346f2

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.2.0-cp39-none-win32.whl
Algorithm Hash digest
SHA256 cfa13473aa155f4308f4da5d222de29dda10d20c7ad813eef552bc1bbdb6fdad
MD5 9e6b11a24dbcbc364001c28a9814f419
BLAKE2b-256 caee6b44e9d67192099cbd6532ade1a1f2ad3647b9243aae76b10a89b49eb01a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c7263a4d2ada706b4750d12ebad7019c38486bd285c9845083b9162b4b4019df
MD5 43b9f7a9208dd378963c6775d1b29e7a
BLAKE2b-256 cc662fb13ba89fba1e621a7944f312acc83282cf504349cd8b2b463cc0e4060c

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 61c0ac60235844f2f3b06d75b64638071446930e87d5fd453973910c53cb7223
MD5 2a6ac7a031f4e4820ef309364177084a
BLAKE2b-256 93588873a81c55bc50a0991a587d636aa410994ec194df43ff1b8d98da5d8979

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 40c2e3ce68ad7862eaa0015724581277af455d4063ef489c0a009aa11587fb70
MD5 e122b68897f9960df55b40ad62692540
BLAKE2b-256 5939ab701118a58ffa87dc80c4f65483f6d4f373aac1811a6e76ad4ef626c803

See more details on using hashes here.

Provenance

File details

Details for the file polars_distance-0.2.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for polars_distance-0.2.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c306b7c5f8f6aa3dfa9fae030ebdd0c7b868d8924b65ab267cb4fb9cb5f7d562
MD5 d24f3e3d40aa240978b8f72eb8f94713
BLAKE2b-256 9819557c7e009706dc3e2f07e138dd923f55400e759a34892bcf0c4223824792

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.2.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7eadb0abee07546d0a2d986c1270ea42aa26816e8e8394d890ead9cff270d725
MD5 fa9a5acd1c56e3e65592da63d34ed369
BLAKE2b-256 6eaf086e5fbcd4b90d5b07d2472fb08da9525c1653618ad2da753d5a731e5181

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 39c5a43756c5a2bd3f8d273b395c0b269b600fcbd9be8fa079d95a968057baa7
MD5 b68ad96b457e3532958f1a9d8b346d1c
BLAKE2b-256 d31397dccf132f2138e4b4aa9b0ab58a4b555edc5754598a96a35652685336c4

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.2.0-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 966261484753b4d301c2c485a093bac04d7a769a1d42dfa977880cf539f4e593
MD5 e8f278036a064a60f348af0b728fdae2
BLAKE2b-256 e5ab07641b721f1e90d59ad3bd7b3bd05cbcc3ea84d4eacb8a35cd6e9ac70205

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.2.0-cp38-none-win32.whl
Algorithm Hash digest
SHA256 729541dc4e986fbd26732a154483597da3c516ebe0a9c420630128fa2389a493
MD5 d3547caefb8c98245c36d568b46d79f5
BLAKE2b-256 47e95720127a496cba44d0c813693371639b1f2568232c3c9b82e2c0722e9e84

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c1f53789183169faf6adf929749e2d27757da37377c74998197a85352c827a9c
MD5 cbf5f76a9c678d2b003f61a355ec2bcd
BLAKE2b-256 33a697bba7076c48197b258d91bafacae9af215d40e8fe95bb77768c02672371

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.2.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5057fb1ee95a9168ab38000a156940d62f3a3d25efb4fe4305b22148f48c27ca
MD5 ab1916cc4379b682af47687e2b98a131
BLAKE2b-256 433f7703e87f7e8cd861d699184afe4c0497f44039f9566a28981d585f18cc35

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.2.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 91740c28dacccc5f28be14772a5f977497a52b9c60bae69b0b0b7a17adbe40a7
MD5 e5aa24ec8ff58e394f28e7eecc4948ef
BLAKE2b-256 9e473d3f757516b6c40f95e8d49dc56211335e5ce3db72fab51e6d0f8c5c6826

See more details on using hashes here.

Provenance

File details

Details for the file polars_distance-0.2.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for polars_distance-0.2.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 145c32643a842c869ec3e65b210ad8e30615d59a10dc5dbcaf8f25dc5fa86740
MD5 b1599a7f84c22f6d4a5564ca37ce3671
BLAKE2b-256 4aaffcf8b13db1ab5d85e31dc811fa4960d1acd422814fb329258df7a8de23ff

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.2.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 966827fef5e9d353ea69bd0d276c5e04f07b9ec759da29571000a2ea4b1b59ee
MD5 df1c1a496a83185a04fd19c0c5d67484
BLAKE2b-256 c203f2728e9e75d6adaa5e4c383ec3f0f9f29090e42eb92662c54b0ea30c9554

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9328a73cfcc0c08ef8283d00db51332aa1bc1091e995a46d5ae2a79698bacb87
MD5 f0bb777997ff22390f90b98034974631
BLAKE2b-256 a423d7c8b18b3ab657d89a7f1dbdbe439e1ae65555663f9210d63cfa1b73df8d

See more details on using hashes here.

Provenance

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