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 docs can be found here: https://ion-elgreco.github.io/polars-distance/

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  
╞══════╡
 7    
└──────┘


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.3.0.tar.gz (18.1 kB view details)

Uploaded Source

Built Distributions

polars_distance-0.3.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (9.5 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

polars_distance-0.3.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (6.9 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

polars_distance-0.3.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.7 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

polars_distance-0.3.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (9.5 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

polars_distance-0.3.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (6.5 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

polars_distance-0.3.0-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (6.9 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

polars_distance-0.3.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (6.3 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

polars_distance-0.3.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.7 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

polars_distance-0.3.0-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (9.5 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

polars_distance-0.3.0-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (6.5 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

polars_distance-0.3.0-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (6.9 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

polars_distance-0.3.0-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (6.3 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

polars_distance-0.3.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (9.5 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ s390x

polars_distance-0.3.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (6.5 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ppc64le

polars_distance-0.3.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (6.3 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARMv7l

polars_distance-0.3.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.0 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARM64

polars_distance-0.3.0-cp312-none-win_amd64.whl (4.1 MB view details)

Uploaded CPython 3.12 Windows x86-64

polars_distance-0.3.0-cp312-none-win32.whl (3.7 MB view details)

Uploaded CPython 3.12 Windows x86

polars_distance-0.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.7 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

polars_distance-0.3.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (9.5 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

polars_distance-0.3.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (6.5 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

polars_distance-0.3.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (6.9 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ i686

polars_distance-0.3.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (6.3 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARMv7l

polars_distance-0.3.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.0 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

polars_distance-0.3.0-cp312-cp312-macosx_11_0_arm64.whl (4.0 MB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

polars_distance-0.3.0-cp312-cp312-macosx_10_12_x86_64.whl (4.4 MB view details)

Uploaded CPython 3.12 macOS 10.12+ x86-64

polars_distance-0.3.0-cp311-none-win_amd64.whl (4.1 MB view details)

Uploaded CPython 3.11 Windows x86-64

polars_distance-0.3.0-cp311-none-win32.whl (3.7 MB view details)

Uploaded CPython 3.11 Windows x86

polars_distance-0.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.7 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

polars_distance-0.3.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (9.5 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

polars_distance-0.3.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (6.5 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

polars_distance-0.3.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (6.9 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686

polars_distance-0.3.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (6.3 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARMv7l

polars_distance-0.3.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.0 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

polars_distance-0.3.0-cp311-cp311-macosx_11_0_arm64.whl (4.0 MB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

polars_distance-0.3.0-cp311-cp311-macosx_10_12_x86_64.whl (4.4 MB view details)

Uploaded CPython 3.11 macOS 10.12+ x86-64

polars_distance-0.3.0-cp310-none-win_amd64.whl (4.1 MB view details)

Uploaded CPython 3.10 Windows x86-64

polars_distance-0.3.0-cp310-none-win32.whl (3.7 MB view details)

Uploaded CPython 3.10 Windows x86

polars_distance-0.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.7 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

polars_distance-0.3.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (9.5 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

polars_distance-0.3.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (6.5 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

polars_distance-0.3.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (6.9 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686

polars_distance-0.3.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (6.3 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARMv7l

polars_distance-0.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.0 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

polars_distance-0.3.0-cp310-cp310-macosx_11_0_arm64.whl (4.0 MB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

polars_distance-0.3.0-cp310-cp310-macosx_10_12_x86_64.whl (4.4 MB view details)

Uploaded CPython 3.10 macOS 10.12+ x86-64

polars_distance-0.3.0-cp39-none-win_amd64.whl (4.1 MB view details)

Uploaded CPython 3.9 Windows x86-64

polars_distance-0.3.0-cp39-none-win32.whl (3.7 MB view details)

Uploaded CPython 3.9 Windows x86

polars_distance-0.3.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.7 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

polars_distance-0.3.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (9.5 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

polars_distance-0.3.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (6.5 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

polars_distance-0.3.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (6.9 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686

polars_distance-0.3.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (6.3 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARMv7l

polars_distance-0.3.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.0 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

polars_distance-0.3.0-cp38-none-win_amd64.whl (4.1 MB view details)

Uploaded CPython 3.8 Windows x86-64

polars_distance-0.3.0-cp38-none-win32.whl (3.7 MB view details)

Uploaded CPython 3.8 Windows x86

polars_distance-0.3.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.7 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

polars_distance-0.3.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (9.5 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

polars_distance-0.3.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (6.5 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

polars_distance-0.3.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (6.9 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686

polars_distance-0.3.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (6.3 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARMv7l

polars_distance-0.3.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.0 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

File details

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

File metadata

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

File hashes

Hashes for polars_distance-0.3.0.tar.gz
Algorithm Hash digest
SHA256 b5f7f22d4725233fe80f7b4f0d734a8a4c4379872806d2ef645a3232a4af6ad4
MD5 0e70c09c020c1db4a0f683b8149a733d
BLAKE2b-256 ddec3fa26d522dcade03c4b1a4f4f3e5f388dfc22241f48fa49b19731514c438

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.3.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 999dd4df43c597c05e0ceceb37e375f0580bfa91945b581c7ac176dad4e56544
MD5 3c1f1803dd86267f9250947c3c3d5ad3
BLAKE2b-256 727b0a746b13a94e6f6bc4e054d9a4972515a668086f6a67f84b6742e13b7c5e

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.3.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4b32e50568cb3f7334ed5bad032a848378f13714df4a602407f040d4cd0a10e0
MD5 cabedd22b4a2b42c039cee1461db8e53
BLAKE2b-256 d2c1d0285fe6c4271edd9e383af8065b3d25eccf0c33ed42ba30931ffb75be02

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.3.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0e740cccbc5254c95c428e2f6bce48137661d4d490b4992818bd3113899ffe8f
MD5 02c14eaa4eb5d5149a325e84456fccc2
BLAKE2b-256 c8c9bf1b112c3597e522490bebe7f1e0bf814925f7e2d95adfb37ea60ee04dbe

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.3.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a82387a429822a43f3e4b3f7b412b161fb70f8ffecffc4102bc74d814e46567f
MD5 a3798f0fed881815061c9a9c6f4ae168
BLAKE2b-256 f2658f54cd4d88b4d611e5eeccd524036751f9c529f81128bb79f2a88314a2fc

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.3.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 324405cde50eeb429beb6600f1be41b7c7a8e50394f20e4b6c48ab1a3d1a1b13
MD5 6cb05cbfbd9083682cdc994d6e572250
BLAKE2b-256 740e6236245b09841e2b0260552f2e4c4c640491e5276ab453214581469437d0

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.3.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 73a52dcb909f63570be6dad6a2ff03424b3a5345b39756101e4d6890c0fa420a
MD5 2f423df7d811cfe778b3c0ff978a2072
BLAKE2b-256 9e6f637544efde77244931f84c0842e894beeb1a10fba24673a5778e1cfe51b8

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.3.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 447d291a3b89eeccc0b680e04af19a5fe17147da9be34137c6da0a1f7996cacd
MD5 2c528a986573a7f615078a3619978501
BLAKE2b-256 3ab49562af5a279dbdb41f127b74d6db1d69e5ada51ac79014e745ae8009a3da

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.3.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 affdd0bee771ec4d776c4f4c09cc234892ca6d30d80a90f4fbe9ffc86de73655
MD5 05d62b8f7ac5e78e8894d9583cbfcb95
BLAKE2b-256 7d671578e893ff20368f7e9cad2bbdb533b76e5dbe033b8b5556d446d858f216

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.3.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 87bec379b2e6fdd4a9e92a7e3683dc8d7c2334fd4967206e4d952756482025a9
MD5 27c9843ca9bd5f5434d3c5cae301cb93
BLAKE2b-256 a187911dabab54bcb1c80a4225caf30f12bd728984e0c9d553972a461ebcc025

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.3.0-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 edc6a9896e9667d4eb40d11165be91d543aa76848df83df8e1bb2bef74e7a71b
MD5 aef2b99577da7fdf869e833b94a3446f
BLAKE2b-256 3fa9726f0c4ac7ce7a8d8d73aeb95e1f682c857e95bb14239ffd1388335f197d

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.3.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 33230c980b669cbd51b19f0ab0d5326f5b614d47d08ac3143defcd44beb89071
MD5 c7122bd4a18a8789b7ea8cd31aec92aa
BLAKE2b-256 fbbb47062947e3435bfa35c7b5ad729aaf30acf04f3a637457ae364f1b5b496d

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.3.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 018b0ae2ce89a3c4ef839ec69318fcf2b3762f62cb135d6667a47ed8ccb9f45e
MD5 c6ae771d548196f0877bf2d3132c92c6
BLAKE2b-256 870035df1398a1be59d2806819c541eefe44fa1eb2ea72616d75c94b54bbc183

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.3.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 23e0d1a24420dd3ccca4bd6761a7df0d77104693d7daf1e377b41002152e3933
MD5 04be062ebcac414c2291798000e9633e
BLAKE2b-256 260282f7b5168a158e35e8fdb0738d2866df6a55fdc51e05e19d48a92c27da50

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.3.0-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 734185e7f206fdba1fcc46aca483f0ce703dfc0d04d708674dbbc434d70bfe26
MD5 f1a4b1f968396fd0144c358a240db217
BLAKE2b-256 5fa64f625cbc64e2674562cc8dc9aff45c9004926552385b76883056fb2db55c

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.3.0-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d09ae7854742ac83ae6ddfab37201c5e7077fde274af58da9d9a4b699aaadb7a
MD5 07be439bc6fe358644afb093fb7345cb
BLAKE2b-256 646bd9a8a7cdcfa60e07a1a193fbdbab3541850f9981c05762e9bc9578c786da

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.3.0-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7b3efb48144610eb7d734bd7bdd371da4f641be1f700e9d8be8dc3763b3ccd2c
MD5 4268e5c5986af0a6ee3785a4640ff4e4
BLAKE2b-256 19b021fe0e66771eb3afa9b18d2ece7ea6a352117e86ac06ac9bad9fdd183c18

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.3.0-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b073428d84db39ad1dd0966de20edf5f3b50fabd5711bc727c356f1732492715
MD5 e46788c88bff4261b544f38f3822f319
BLAKE2b-256 5a105c328dd394506a71a162de72b9c58bdceee935cf4e8380abb87c9c048026

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.3.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6dbe988d307991145c6bd2f7e28946e35c3c2e139ca80469bd2cccf5329bf70e
MD5 59e8acb99471f7e3cc7b3d428f915999
BLAKE2b-256 00c37c4faafff5170c5ee43c4172e928165a6b2fe6a84859fa0b4168fcad56c7

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.3.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 340d52848c495049e7ca27c0b82f4a8732dda1b286dd66d2a057d58b2ec6333c
MD5 a109a4a84e284093e4201007301a8544
BLAKE2b-256 5bb27d1f02ae27690058189edb6d38cbe70d7f8c86614ffe3e26c103d1d3c786

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.3.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 61b7be9f8acc49e59496e54eb566733331bb86a410509835bb84ee2f48f64436
MD5 b4d85d2ca4077e21a054fe8a90229b19
BLAKE2b-256 4e7554e3e41358a9b4c5b497f64903e3d588ab04814b7e4cdb05cbb229ca10ed

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.3.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4870400a557c997dce9b910dc98f8eb47a855cad42ebeccd84344001a9f61071
MD5 c232faaa73030f1e219e26896ad8dc32
BLAKE2b-256 a7eebdd3f96dce835d3cfd4fd1bef558cdf188ae7963e2654b9e1e861a420a82

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.3.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ca6bb5db9e47163bbcdc7aacf7188cf07357b9014e76fb4ce0396081e7a90d8b
MD5 ab8439a79eb945a95bf3764f9d80b584
BLAKE2b-256 dd63960f4da05d1e2a3c007931bb7e16ef6bdc1fe2cb6b85446954ee6738ef21

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.3.0-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 4efe7837cb6eac8c672c4d968f3d029c67c5f3dc45d38a905aa54c933a4f5120
MD5 a166491ed2b770592c8c40a11e37a986
BLAKE2b-256 c3608cddfecf5e1e22e232b845e1bafdebe8187a6237ed82abb7da89612a2702

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.3.0-cp312-none-win32.whl
Algorithm Hash digest
SHA256 ba96123c8b129fd5a7b834caba4cf4406aeba98ead35c5e124c3389d27af7b1b
MD5 49a8f2ba47565a52c79bc72f961c7626
BLAKE2b-256 d8e6304d6a84ef9ef2524c8903a81dc882f214815d304c2b6256e8caed2a5e84

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2a172d351a62e6dcebb8bf76759ed4ba83d0383e094af36a69e2eb1d0f81b8bd
MD5 c79300ea36bb5a55b5fbf3f7aecafef9
BLAKE2b-256 111d0458978d99b4f4fc896e77fab0f53fea6acb855e0d4a486d5268759d2048

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.3.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9d663178b0299dd8efe80f2d461c89cd5fc3be40529ff2bf5373a23f9f155987
MD5 0fdb339a3b85b76ebf4ebd00fe1c1159
BLAKE2b-256 a327be1981a7a20dac1a6a88579c287931480ecd356a6d55b3e4783998647084

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.3.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3f5b3f818cec5cc05641d6383701a8ee9e56a430479125e426d8a66da2cc813d
MD5 41fef1b6b2f452c34c198777a781e6f9
BLAKE2b-256 fffa79bc31c3f3f334a6a109e65ff39a6a9ca0e3428b1efd2fb1b91093224727

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.3.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8a459e24e8031d9edc6857497e96dc5e12ae4574ffd8f6c2fcf4c29e9977691c
MD5 64913b81eaf795a65e66540e2b4046fb
BLAKE2b-256 f9882adf04aa66dc6e36f51ce0e4426141a925883bf84a32e246e6cfdcd14af0

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.3.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d9b1f6b0657208c08585047371066f9e33a8bb04f597f7a05f68c7ef2c542064
MD5 47b18cc9da9077f6e789bafa7413a8ff
BLAKE2b-256 0804cdcb1d1ee0fd9555e95fe56ee84c23acf8f8e598f3a11749c06addbeb4ef

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.3.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c0e26da9d6c602147bdb373f9ea99223e088fc0e4f25fa956087910572428fe1
MD5 a0bf4743deda9f354a153a8dc34d8330
BLAKE2b-256 3767611b43b252be8222fbc3fde0b60ebbc040168cc476672b137dbd9fc92f9b

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.3.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0ff8b0f1df13ca08622555076ffec4b2fe4e1b7d72146fc61e48f0731f68e0b8
MD5 ba70d81c25915edc750cef0c1d52a33a
BLAKE2b-256 9c997d38c14c303d1a1a4081b612d2f05d89f7396aa94772807710429268aa57

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.3.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f8584137cae6bda93ccf0430002545d4cafd6f027afebaf27ded5d36e37763d9
MD5 20f98e17d0c8f4b709fa87274d322b85
BLAKE2b-256 aafc332dc39f1d1cfc43bf92b65cd42f85a0dac3469b9faa478afd3721f23ead

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.3.0-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 0565b1719f24f1fba496fde431d3531f47c997f6b098fb367f0da4c704778d55
MD5 2d0c8364578fcac75be92b2542b82c97
BLAKE2b-256 99069011225b894658dd94787020f3b6e0037096beb2de13203bb80560909ed4

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.3.0-cp311-none-win32.whl
Algorithm Hash digest
SHA256 ad3d02717e54f16afb35d2fd50915c24950dbf7e93c85ef5ec60cf1b96e3d672
MD5 91d9fc47f238c2a9d6027fcc6736ab08
BLAKE2b-256 bfeddd97d764693c7f74ae8f1655a0e2aa28f370e7ed53131bd254df72f80bfa

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 475827992f01a301ba34186b8602176c8315907c6129097a805a908b6c02fa37
MD5 6fb0ee1e474df252329ffd933b903ae3
BLAKE2b-256 575eb34a5d246938992359ed6b6c38017a807d7559c18572a4755b2820196a2c

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.3.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9f3be69c86ce5f0a8c6ac599008315105d84eca4e33583ed11250e831675b774
MD5 2d6fe7ce46a70adb9093cf5ddc8df777
BLAKE2b-256 a837a188dad70e3db6d7459e921d8cef30373862bc71e9ca7122b2f7fd575871

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.3.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4b74545436c3e4c66147ccdb29bb3f36284abdacefae2c11874f015f04b3f61a
MD5 a515baf6e4d21fd548866c9ae05bc46c
BLAKE2b-256 55f47618ee9d4e8ea662d35448a3153176afd62ef9b3777ac9b7c026e5525512

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.3.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f089a8db230cacc8d4ddf6c73ac0bdf5a7993bb93747e6747acec5f551ae55f7
MD5 5fef5afff0cf3272a26e1d73205d6d82
BLAKE2b-256 cb46821e6873d5a15befcc13f571d3c1eafae3a40ead7669185b3fe28a93ea60

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.3.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2d00cb4448f16d8da94365c14b5e21a14747bf59a7e051b10a4ab8b856dc028e
MD5 a295e04b97731d3ad131bfadb869cb61
BLAKE2b-256 d80e839d1d4b6c811024ca44621c36bf8345b68bc4ec18b2ad2c51a30c72cda5

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.3.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6e6f731ab73389a4116bdebe2e898759c92ac23827ff5e13922c612ddd1c0ec5
MD5 8da514ba0098e1b54f1fb73bb11a9e07
BLAKE2b-256 90df1be2207a7d7bd00d19007f8eb429fba820eb8e9f4127c606660eaae753a3

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.3.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5024b64ddf503c0db42cd59615e8d6cc74c5b7a167b7424b507e747813049182
MD5 16509aa59c565ed00b9cd04d4b2f865b
BLAKE2b-256 7e1f496070eaf9e3359657cb00fe79e9b92a5ac00d8bae2610ce0816b3505d86

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.3.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3b6dd75b2f7113b0678b72886e7b355f7cebb961ee42ed1b79b82eb9da456d04
MD5 38c70851737b7aa476e461359a1b8cfa
BLAKE2b-256 768b68284f0b2224563f4c41d7c75ac11120f24466dede3a7c925d4e30068acd

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.3.0-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 cf103d37a56187284d1661620c71a666e61c914d62eb765a0494aeb6e11f9947
MD5 a05e8571d67adbc54c1d5c20dd4f9b93
BLAKE2b-256 a895be2b0a876a61538b0b3659e5c10ef8606515edf197e9fe3a9f0cc2bd538d

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.3.0-cp310-none-win32.whl
Algorithm Hash digest
SHA256 d18a3961e1ceddc7191f03e2374f8b201012f35e40cf89c6e351de0044285e6c
MD5 c096c88227ca877d9b6ca0528dc5a97f
BLAKE2b-256 ba94af61b537dc944ec3c8cf416515ef9aa3e1265842a7166fcaf5f515a32f13

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bd161c4feadee95645d86bc3794eef55af1201a9bff8844ff5fd68cd3b83f92a
MD5 344def62701bc27b40d9e99df3945a5e
BLAKE2b-256 77c202f49e7f0754e3cce68eb74a7cc9899978204cfb720b563c638ba71e31ba

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.3.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2b2af322d2d4c8449ad3e7d971dc5c0698ed7ccfa2f3a4da28ec9f1448bf00cf
MD5 c1e5a18198cd3c57372b0b2deebda434
BLAKE2b-256 e10670fca132dc3208dc29f0c9ec0fe5cb681c456081e2f61e6ec1a161b5fb55

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.3.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 457e4c300d0a9732216d3ec95e15730811bb962c33584c6e1c8cecff8c99d818
MD5 f281a223a86f747d6c0cbe81120ba1f3
BLAKE2b-256 402ddbfc3c6ff6d531bf18959a90c27b90a57f303ee67182f79cbf36218cc7ac

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.3.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1133c706e7a6b84bb19574dec4340ebdc9805a52f81a7d186be4b94f63ad9f6b
MD5 dfa993193a80cf56cec11a46373202d6
BLAKE2b-256 21189358720d28ab248cb90ded74c14abbee03bf35315edafc0b9c0d1f32bd63

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.3.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 609812a4debebd6fd1c0b20d8cceb8833f5f3f27c0a3ac99079e14ceb3df498e
MD5 4a61a2fbd6d22efb4238fd7a365aae70
BLAKE2b-256 25af81b03e73f146b2937edb0e83cc4e4efb19031a979960b09eee56cddfeeaa

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 124be32078340ba99c28d6e5408bd927b55af8aedf133b2001d881e30250ac7f
MD5 94d0b0a5b24a96d9833ba6db83cf7959
BLAKE2b-256 df4db3b861c8c41ff66c51a6ad70bd499ac24f5a1a7340730cc47b6f676dd1f2

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.3.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4088f88013c484b4fccd26ae17f60064613220e26c67a244d16c6833374c178f
MD5 3933aef3f61fc5c9b74d29459cb3f9ce
BLAKE2b-256 d1253eb5a1b67b16f1d2940246c6398288e1adb918d61c1613c7cecf8eddc066

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.3.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4949912dd5fbcde4db424358136b622d0ec79d315d6cc330ddade8710e8f2129
MD5 6c65f0f58246ee61d6a7d77a540c79c2
BLAKE2b-256 d2052596e2a2516da3fca3b407fcc31648f67064bc8a835d0bb7de320fe61c1e

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.3.0-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 88250f1a315d5ad07626686182edd90f3b7204d729f5bbb6ea2079d1b94aa34e
MD5 556d20ece01d7ce021c6546d917d403c
BLAKE2b-256 690efda2650f8103b4daae3ce4e7db407f2711af4f06dc500b99fa7fb35064f9

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.3.0-cp39-none-win32.whl
Algorithm Hash digest
SHA256 ffc148234c50032f89cd2b39ddf6c3aca58609aa32fa5b7bec495ca9410455f7
MD5 94f80c15e4b46f73ac726e596f1d21bf
BLAKE2b-256 1c5b7a782c0ecf2280662dc57869bddf1330fc23ad48abf753bf99d9edf89f66

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.3.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 32d67900014766d058ed53771fab998182a9a94b781b35b4ddd772c396fcda69
MD5 27d9f9442c9880b26fe04ec39dc905f4
BLAKE2b-256 29a5ecbd232adc9125be3331d151f8fe18e7a8681e38fc505e34ce5f8aa0c87d

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.3.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2cf8cb4e3938e7f4bc9920a908174431adfe28b7c9e43bea7a4022ad16b398b2
MD5 646bb82343d2b6c4ee52cc60202e0a84
BLAKE2b-256 8a9a9062604aa9a9e029d7858b73a0ad8a2775869ae12f4541105e89100de031

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.3.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 fcf37569008891e7df14eb34102847185eceec8e6085f1365560d4048ac8c5df
MD5 2315cde9da77faf9444d889ef9432fc7
BLAKE2b-256 48b2677ab824e7f92f74e8de80df1e17e0bc5043705e3eb51db6ac9293980d4f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.3.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0461a9d93d0d6a1316834e6ff5caff5b6b9e7aa8013e72d776720655d4f6f0e3
MD5 e63df5993a96ce9c6410de756ff268bb
BLAKE2b-256 20b1109afcc603a7374631cb9e541709982870fdaf95143ce031f614e34d0136

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.3.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 81277fee6fc1bc034ed8b35367972253555c1e4bf29100a1f41d7c808374330e
MD5 5dbef6258bc0ab4c4b258d9f3c9ddc1c
BLAKE2b-256 399747a3e2bf38ab109700d54e86069547eea8ef73785f34253a1a626a11205a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.3.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a033328252f782292ba064dce3e159ca84f785dfb791e208ee6de975708d0da0
MD5 bf873e4b79efa8de549d9acabd3bc61f
BLAKE2b-256 701e1b7ea5a617cd6743a47c4b7a63f22977f031037ebc20aed64c9bfe6d961a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.3.0-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 f4f16751d243ceab5e39d47a7a72a12468fbbd3867708a8db79e4403b3771b6c
MD5 5b560a5b2548041c53ece486249486a6
BLAKE2b-256 d5dd4f22f9cf5e7ed6a83ef261a14d459902421e9b668c994b335ccd9deffc1e

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.3.0-cp38-none-win32.whl
Algorithm Hash digest
SHA256 cebbb1c9f18d65ca2c11dbb0efa58f904ab7e1dc34db762eae5fc2d17231f27a
MD5 9dd0077c8c9d2617c977b795679bf9d6
BLAKE2b-256 f522d4c20975e09a35924d28e9ec0734c3c491f6af0832ffa985d7c6fb80412f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.3.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 440423f5c97d88cfacfc2a3a6cc7f6594de16119fb08625016b2853c45f49feb
MD5 5a096b41dee669af617352a78452c405
BLAKE2b-256 9503450bef6cb970214755c6406c0e28c12dce613de04f29304dc36ae7b2a952

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.3.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f34bc18071377facaee16c66a7351d4acb8fe02663f963341ef5e0b3ad89df8b
MD5 41a3cdf3710a7c56458e606baabc6c14
BLAKE2b-256 c70faf2c38acf5d1c84434077af0750cfb05bdba9a2c2a2b7548eaf63eea8ded

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.3.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ee1cf49c9a3847fb0e184e05c64cececac52bbbf42bb71fb78c5211ae8a28a5d
MD5 160059460d666bbca10783ef4a06e805
BLAKE2b-256 2bd080426315af968a8bf951982db6652984a713e8350eb9350d77052afa8004

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.3.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ed0682994b1714a4e75a78bc01934ac8143f8cc408fdaf4a0b7a86baab722f38
MD5 445b04562fae52c97ae526c48a0b17a3
BLAKE2b-256 00d69eed424f9781bfa78e7701e5e96328758adcf700fb81e5a76a14b99f449f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.3.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9f82875f355494d321c64085413bf461b033a72c97ecbc871c16c92c58b942d4
MD5 fe23b5195e3cda25c2bca670eb9a5e41
BLAKE2b-256 6638f6b3b2996a981f76e0f97b6a895b57d4810927df3a69bf17578e210073a5

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.3.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 590c32e0f9c924f60e86e674935b5d355b2a2f24f4e409ac7c5acb3ff69e5065
MD5 5ff0d2097e6b8d6ed762c166dbaa38fe
BLAKE2b-256 f7c26ce004eb02e2e13cef13af5421156854d139c87f337165411375ce9d2e9b

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