Skip to main content

Polars plugin for pairwise 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.2.tar.gz (19.5 kB view details)

Uploaded Source

Built Distributions

polars_distance-0.3.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (9.9 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

polars_distance-0.3.2-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (7.2 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

polars_distance-0.3.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (7.1 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

polars_distance-0.3.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (9.9 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

polars_distance-0.3.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (6.8 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

polars_distance-0.3.2-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (7.2 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

polars_distance-0.3.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (6.6 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

polars_distance-0.3.2-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (7.1 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

polars_distance-0.3.2-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (9.9 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

polars_distance-0.3.2-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (6.8 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

polars_distance-0.3.2-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (7.2 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

polars_distance-0.3.2-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (6.6 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

polars_distance-0.3.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (9.9 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ s390x

polars_distance-0.3.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (6.8 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ppc64le

polars_distance-0.3.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (6.6 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARMv7l

polars_distance-0.3.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.3 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARM64

polars_distance-0.3.2-cp312-none-win_amd64.whl (4.5 MB view details)

Uploaded CPython 3.12 Windows x86-64

polars_distance-0.3.2-cp312-none-win32.whl (4.0 MB view details)

Uploaded CPython 3.12 Windows x86

polars_distance-0.3.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (7.1 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

polars_distance-0.3.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (9.9 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

polars_distance-0.3.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (6.8 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

polars_distance-0.3.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (7.2 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ i686

polars_distance-0.3.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (6.6 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARMv7l

polars_distance-0.3.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.3 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

polars_distance-0.3.2-cp312-cp312-macosx_11_0_arm64.whl (4.2 MB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

polars_distance-0.3.2-cp312-cp312-macosx_10_12_x86_64.whl (4.8 MB view details)

Uploaded CPython 3.12 macOS 10.12+ x86-64

polars_distance-0.3.2-cp311-none-win_amd64.whl (4.5 MB view details)

Uploaded CPython 3.11 Windows x86-64

polars_distance-0.3.2-cp311-none-win32.whl (4.0 MB view details)

Uploaded CPython 3.11 Windows x86

polars_distance-0.3.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (7.1 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

polars_distance-0.3.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (9.9 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

polars_distance-0.3.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (6.8 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

polars_distance-0.3.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (7.2 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686

polars_distance-0.3.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (6.6 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARMv7l

polars_distance-0.3.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.3 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

polars_distance-0.3.2-cp311-cp311-macosx_11_0_arm64.whl (4.2 MB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

polars_distance-0.3.2-cp311-cp311-macosx_10_12_x86_64.whl (4.8 MB view details)

Uploaded CPython 3.11 macOS 10.12+ x86-64

polars_distance-0.3.2-cp310-none-win_amd64.whl (4.5 MB view details)

Uploaded CPython 3.10 Windows x86-64

polars_distance-0.3.2-cp310-none-win32.whl (4.0 MB view details)

Uploaded CPython 3.10 Windows x86

polars_distance-0.3.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (7.1 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

polars_distance-0.3.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (9.9 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

polars_distance-0.3.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (6.8 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

polars_distance-0.3.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (7.2 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686

polars_distance-0.3.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (6.6 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARMv7l

polars_distance-0.3.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.3 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

polars_distance-0.3.2-cp310-cp310-macosx_11_0_arm64.whl (4.2 MB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

polars_distance-0.3.2-cp310-cp310-macosx_10_12_x86_64.whl (4.8 MB view details)

Uploaded CPython 3.10 macOS 10.12+ x86-64

polars_distance-0.3.2-cp39-none-win_amd64.whl (4.5 MB view details)

Uploaded CPython 3.9 Windows x86-64

polars_distance-0.3.2-cp39-none-win32.whl (4.0 MB view details)

Uploaded CPython 3.9 Windows x86

polars_distance-0.3.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (7.1 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

polars_distance-0.3.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (9.9 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

polars_distance-0.3.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (6.8 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

polars_distance-0.3.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (7.2 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686

polars_distance-0.3.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (6.6 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARMv7l

polars_distance-0.3.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.3 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

polars_distance-0.3.2-cp38-none-win_amd64.whl (4.5 MB view details)

Uploaded CPython 3.8 Windows x86-64

polars_distance-0.3.2-cp38-none-win32.whl (4.0 MB view details)

Uploaded CPython 3.8 Windows x86

polars_distance-0.3.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (7.1 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

polars_distance-0.3.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (9.9 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

polars_distance-0.3.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (6.8 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

polars_distance-0.3.2-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (7.2 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686

polars_distance-0.3.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (6.6 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARMv7l

polars_distance-0.3.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.3 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

File details

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

File metadata

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

File hashes

Hashes for polars_distance-0.3.2.tar.gz
Algorithm Hash digest
SHA256 7ef8fdfd40917701f4c9e006ebd6294dc7d26078c0542197166fc2bb4c9503d7
MD5 4de165cb45904742776bdc31eb74e953
BLAKE2b-256 3006bdd39c3121f1b8c83d60b0ccaab2f77020c962f7732d29c42985753a4bfd

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.3.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a9ac4f67fe9c69e8b78b8cab93f52190cc250cdd847992cd21730f486f4a8526
MD5 d4e44aa2072988ffbab59b57901448cf
BLAKE2b-256 48f063ee220c23afbdfbaebfabe7578558b60e50f461b61ff65655bbd57df5ed

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.3.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e072da9062c77d690481988b16b4f3c993b708ecf5ec97c77e231529d8118f86
MD5 8a925578e2a1e13face935b2d0047b38
BLAKE2b-256 54220995a54cf1b9c8bd8271a708b635ea4e2bf71c764a686574b36b80ac241a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.3.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e5c6fd6df28c6f5505a56ed397b1b60f3d69a5e130640cf4123eb12dcd69cdba
MD5 1d6aa6fa6dc42bb15cc2a692c299a79c
BLAKE2b-256 20bf9194620a76e72724e2635637687bd91f39b567562819a75a0c994f21bc8d

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.3.2-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 14c9fb91298221e713aa7c2fca5e40ffcaf87569c8f8bc0ba25dd8e3502e8ce0
MD5 9d72c09f30f4b38c45373ec3493510fb
BLAKE2b-256 ab1f73b6d251dffb8e0c98078089bce2b72991e1fd10148e4b0b17b721c3700f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.3.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 43a3d3238002f303c6428e6b35f9568c4949b17a0aa4aa3c26d8385ac0ecf4eb
MD5 4687fcf666d440e38bb9c41be42ecc12
BLAKE2b-256 a289544df799c2373fd4e7f302b0e16d7e437cb0821f17b3a13131282136cb41

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.3.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3d75cbf20a4e3da50f1f7f6317f8a8d5664fe924eebbd43e82ba343f71fa8c7c
MD5 0ea0e7c40a51a367a7fd1699ad422db2
BLAKE2b-256 b81a5c2396dc7a417b4f3bf7818f52ccfb1bc35d730e2701e38e097cceca501e

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.3.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 abc71821e42dea8bedae233d9923095c239a4ccd717be76ff56f1346fca770ff
MD5 2b3c9db83817b6e09185a2e5412cd4bc
BLAKE2b-256 d1372cbf5b9e0224eb87928b15aa98240a56850de72315fbc72fbb98186a9544

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.3.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e0d60603556fa29899d7da97d98c0794bf1a7a7b948978199bfbfe6514ec66c6
MD5 6ed6200105d731ce146c792d8335cbc0
BLAKE2b-256 4fa2692598ba53ba686cb289b3bc3c3cf469dc03834bdf3aab38eed8050a91e7

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.3.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2f131cc088c4058483b6547679e40d8ad63108b57cf2d2c4a195a1a43aa0f73f
MD5 a5f408e9afbd0d5aa18c3d1e9e38f3ae
BLAKE2b-256 535cd760b7918642fec4646cdffd24e7fa45ac877e921ea78c1fef21aad164f4

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.3.2-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6e6019739ea56b62c3146454f0b1bd32ed4da60c7b255496ecfc7aa75ee25776
MD5 19e5ddee417f3f10f77a063d3a45bfa8
BLAKE2b-256 224f5266ae14ed42618c955eed1b2d254312a9012abbb343d1d2e22d96fdf4d1

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.3.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0c8c8cc4ec85891de458294034baa02bae555d25255db4eeaa80fc4d7df327d3
MD5 705be8f8d7bbd8135911a5493363e2db
BLAKE2b-256 1c265ac7d278b9fbd0c413a349760a42926d9f0a1887d6abfa432dd3f73b286b

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.3.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5e933e491638aeb2c348cd4aff7f23e8e2452d348a38272aed350151b72e962d
MD5 cdeafb6a869b72a85f390e4358f59871
BLAKE2b-256 49c7e38bb6e9bed08e5458c2abac29cb8be7ea76b4eeef744c6d5d051105e4c4

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.3.2-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 be2e0cf02aca6d16816b3ae343553da88b38b89b7613a8994d8fb18ed4612dab
MD5 68c1b98eb0f14b8c9b2ada954bad46a0
BLAKE2b-256 8c3f6b937a04d169c02239922d41ca7843a21437f5377cf7df64957a6d2c5f3d

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.3.2-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f3f15dfe32d99115441131b09834a49c501ff215cccdeb614fe3104e9ae8d9dd
MD5 192597659c3f909ca94881ea3e26d0ad
BLAKE2b-256 db3f2a91887c9edb42e7b5e53fc2ce2c3113150331578cf5354d65ae9b3419a3

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.3.2-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d6347f4e91e67aefb7c46396cdba10d24c400cd220691e9872060c9ba7983777
MD5 0faa660c6f3fe22d9418904a8bad2ad7
BLAKE2b-256 e835cd7e19a800a42a51dd45c9f2599883e41cb2a8cf588754f923dc7f56264a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.3.2-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 91bf3e9612847b747d7214885d83a15ca8c986855781bd5a87839686109ea3d9
MD5 ecabd348a26e6390c7124d15fcd7f4b5
BLAKE2b-256 33fdefae8bec848b176b8cbeaf62692489032637d4bb432063e14fd950a4d989

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.3.2-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 fcf71b655506ce0cfa06b0662989122519fd24429416f5c7c77f0f377e24760b
MD5 05d1e6c9ec2ba92c14ac82c807abdf0c
BLAKE2b-256 040df8941ed7347c4af31cdd2f7b61f82a5d6aac28d898fc8167b44c014597b5

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.3.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 da6055e260c8af5ece2a98b1a7a92a2ebe98ff919da3f4dac1a98c461452a6fd
MD5 631613e14b83f2ede9be44cbede5e38b
BLAKE2b-256 e31c7c936bd47bad27145d67bb69ef6eab53aa9bf41487ebd0f656a05792df1e

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.3.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 30e823a3087ccb72c0b2ff144c7651d748e665ca578dd039dff85713146c1948
MD5 ff65984a1c246eafd7769fe0966ea5e5
BLAKE2b-256 fcaa4da323df3be87952a5e8549c8572d763fd7de342a4e824e6270b4b95e723

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.3.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c9b617e345f66ede61437dd26f3fcbc8b470d2b615f1eb7b79a8c4969449bed4
MD5 5561889466ef1b625c378d8d063f9158
BLAKE2b-256 948ab54d60b8f82ab8a317570cd477721a437925ebd3abb053cfc5e52d417e08

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.3.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 022123c2b4e2c6f9691e97f1b8842b9cd917a6a382429ab000439be85c703d9f
MD5 cd90c28305a47198bcd7f6733a6799ad
BLAKE2b-256 c0fd50c98ee926b752890e9cf87f6ac9dbac8d946f15960a9056b739f157518b

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.3.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 eca5d83a45b1cec8a23d31590da6f34446565d83ce18e7c02a3503fccf0ff83f
MD5 0deb2cf336fe107889c721f9a69e9c32
BLAKE2b-256 ed7f49b34b8e7fd8d2c3696c6816ce8f1206d1ee41049584b8791c5e5bde559f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.3.2-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 247df3d1bd95599a738b4ad928854201e12aad115da70c949c2eb9316912d4cb
MD5 9b3e1a0af1aca13d6bb29ebc0c33d9fb
BLAKE2b-256 44aed3473dc5b5c7eccd5776cc293f763b22d8ee81d2734fc740bcff9f031578

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.3.2-cp312-none-win32.whl
Algorithm Hash digest
SHA256 481a514d30aaa69042d848109e1bd6a10271e74679bb08279d9276a31bfba253
MD5 746ec395bc5fb594d719cc7f51938df8
BLAKE2b-256 0de17237db2627225413dfcc6e39f81a4cf9aaecd10a90d1f4f3cecc12917cc9

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.3.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f7ec5eea173e64b1333fea0be857c9f8ba7daa88effcaa1e8a4d1defcf720d2b
MD5 b73d6867ae63ba8afbb9cfaa24bfcf34
BLAKE2b-256 0cec214d51bb38a788939f977a3a248569716d98c823a39a61fe9195a00bd8ca

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.3.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8b16b2554222d705b0ac9293c3b235231aa66f044c1ff99aed8335967f559cc0
MD5 f9df40809e48229d7e22b33616eadbb7
BLAKE2b-256 83ab3d2640029ddec4b3a826ddbbf3a5ad1220fd25f6e0b89330ff6924dcef49

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.3.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 23b82f71526110f700b71ccf3d85fd3dfc7151a2f1adb0da9fc7900570bdd1b3
MD5 fe1eeedf768e66a7f332e5536430b87e
BLAKE2b-256 3b8c2d4b6d1d3faef896c18ff5c77f4568c4f3b00721215b3224ea84bde6480f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.3.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ef9facdc9b32fbdb9689a91488f8ffb832b2b952ae5bb7ec1e50ef53aee58baa
MD5 d77cbbbb2dfb8bf1faa2bca04d1ffc45
BLAKE2b-256 1beccd25a8d7214e531100e78146452b8688923b8fc52b0ea513bf4e8c6fd0b3

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.3.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9c5f2d40ae8080afdbf7f9286a79a511074c7c051fd2c81248d6e1245204480c
MD5 56f61e0a1ff48e21b68742ae353405dc
BLAKE2b-256 42e6fbd486d43c5696cbdc203a476164a2caa59a850e4b3750af2078c1aeb898

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.3.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c4e712a9b59404085681ee209aec0d4cda15b30147bbde0764bb765191bca8e2
MD5 7cc58936ec57598114dde5f98449f620
BLAKE2b-256 e9f7b7a48ac8418a3aae4f4879d914ff4557af6b696708eaffb78cc8c033c193

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.3.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3210cd4ffe82ab073fda1afbdbecf734a6c46587d45c5d395a843444b76586b6
MD5 00705b39a6af747e6325c6680353e46f
BLAKE2b-256 391ee4fcb379d2e273bfb1f77af4629b924f600350a4ec759170efe601834931

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.3.2-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 20f5ac18cce5cd652a51baa3b07c9f8d78deda41d0d4a7f1241f30e1803dca15
MD5 7d51a22c4b50ed066cca7f0f2a4adea5
BLAKE2b-256 3db14b9b389f7ab97e8ff421d61b4cbc4ef0efb69531f652291ef99b604f55d1

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.3.2-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 61a7053e1e261a158ce0499733e4baceeeae55d755a0d1aa7c99fa35431954ac
MD5 42c836d276121eecca453852a28b942a
BLAKE2b-256 0dc712424646509228693686da74ef49ae23a6f27a55c446df1c6a83ac909065

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.3.2-cp311-none-win32.whl
Algorithm Hash digest
SHA256 d652bbce03bbf095cc6b397f9f2bcf64865a2ace334510d3960ca1ec35a22031
MD5 10a8fcb3b92f6ea7e239a5ceca94fa29
BLAKE2b-256 b31f0cff79ddf55270b4427c014a6b498fd65a31ae0ee4a68f12c726420de275

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.3.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1aa7d11e1f0f017a22782c5fe87e08d5636016a48c1f3c1702541d93afe46f16
MD5 7ce91111112cc054fb888ae7d20c3e74
BLAKE2b-256 90970ba7888c4811980d64edfca70ae6297ab956c705a6fc02ebaf29739019c0

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.3.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 96cd5b22f7c1cd942c557d639dd5e1ee3112063e8ed2d0b1d752ed7d2a9c7c05
MD5 2a869a2ab4b5e3313496749b0210cd16
BLAKE2b-256 915f5aec66a7c6940c6b40aef7a9e94aa1224d30d5b403bfc7c8dd7a77fc8096

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.3.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 10a02f3795afe40e031e43d06a9018c9f49ec713924860978b4e7352bbcd5aff
MD5 db75eda75c871aa4f2a6f1ada69aa45a
BLAKE2b-256 8f120c5fc72f9238accc7d13527f7705100755ec00b37872b376412443e055fd

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.3.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 aa299f6b0712dc6f0cfac0b0ba9bd95bd89a4e99f3edae7fe1e40c5f5f48217c
MD5 1e67883d658e459844eef54f256ad92e
BLAKE2b-256 fe30713dcca23d02677c6181a1e3d7599751c277791d3ccf9035f1f0259235fa

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.3.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6abdaec983095ebf1eb0b3988b22040f0cb183053dd907027d0c979da2078f9b
MD5 9274ad6839128fbe1ce16690d1e1e875
BLAKE2b-256 fe26a45ef8ef25589f198dafc7205511a4f6a18c735e571c7bb992746809246a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.3.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8464d017332381a0600aec487bd04c5cf1cdefd53265c230e3d8719905c12cd6
MD5 cbc88281c7f20c1bb444b3090801c6f0
BLAKE2b-256 cdd3c5c161c2ec4a6d248ac5079d5a11e99846ee42c1c6ffeda583c0835ce2aa

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.3.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c5efad7be53ba30c7e46d218803c108a22406f76ba6ad3285f2df41e0e292ca1
MD5 1f35797f8f2e54aff12c9682c4b957ec
BLAKE2b-256 66af0f34e6e65de56bf645d01698249772e7a41e70b0d76ba597f3cb0f75bc92

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.3.2-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b93d99039979ddbf7f05afbe133334180ac23fad93444e9c5387d55235c626e9
MD5 3a1345dc4e3565f1b8e518d7720e6211
BLAKE2b-256 fcda3999a0c9f3fc701af8c86575ded350c23b3b5a5b492e37b5f6b491942d7f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.3.2-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 d745d1072812fc5a1459c5df1ec59f6cdb9bf654923167f7c99eb3669f61d032
MD5 1ca51cadf5e37798a06a752228d36d92
BLAKE2b-256 cfedd15a7d2c428c66edc03acab4fb67db1b5f0db77ca6ce56f8c62a16225427

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.3.2-cp310-none-win32.whl
Algorithm Hash digest
SHA256 3c62e3e8d20714ad0054ea578bf196d32c5e3d9c1ec719d4096416a539457e73
MD5 05ef0e2f46130ff2e14add41656e83ad
BLAKE2b-256 9e6bf2f4fcc4ed183de97be7b4ebb6133e4a3f1f8410a2d0aee0f827688b7c8c

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.3.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c2d740d2d9d6feb54ad1e22a33e5561a4275846b268e0751b8e2bd0fcef95d69
MD5 e5138b724adc412f5a1a1253e1737879
BLAKE2b-256 86011163878f651bfb423ef95cf56d172dc972213fc6ce0b3963fc637b9a3aaf

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.3.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d9e8130726a3227f70a7919ff3b57f4ee980b31b713c6cb655a10841ec149f8f
MD5 1f4ff1c2b591eb74548af0e9d0e0b213
BLAKE2b-256 0c317de6fe08b98fe9c00225fcc6625621b0301895df08773dc8db196ca58bcb

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.3.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b8dca84df94766a8aaca36ec9fd74663e7f1b5809550a1841f83215425bb6b10
MD5 57969d5f4f93db495db01fa4e8074647
BLAKE2b-256 0eb8e2181a3b4ef5275f975b60991c8b30b883c139b9679685858cb6e95c48f0

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.3.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ade93d17381c0b19514886a65595ef7d83602292cc701fa5aac3ad361dd86b0e
MD5 df87e4c7af4c577cd1080f83672bc907
BLAKE2b-256 4ba02c6208fb3e08cd728906519dca23fa8e9db802f02b050ce233ca62b5328a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.3.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 55d5ff379c2ddf05b0e8d65e01a029790e37127ad512683964640c7b340ca400
MD5 d071d33559dc8a1ea890dfcbc314dc16
BLAKE2b-256 35c9c74a360e8b72232d0ece1e5cbcf88124f94f2aa43481085bdcbd174435a8

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.3.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ac3820aa35bbd31968bcb0a77936b57a3ecef7cf04218569c3e9d002abfb6e2d
MD5 bd4696258c07f42f1c1906916798ac96
BLAKE2b-256 d3dfdfd367bec3341969d056d3642156399fbf06c2bb767e7808ea5a9895b064

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.3.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 76814c1c2de417a36fa0216d96d5bd91f4daf0b045787487958c02acbbc66359
MD5 3d961bbc38ab1c291bacf3d55dcb1dd3
BLAKE2b-256 353a0e3f9a86908437ff9d7d16e2384b2cd46072f43a6dde3e836cb4deb6fd9d

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.3.2-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5c9eeaa7180b7162fc621cae5b76465e5059649603bb689b52232601221ba417
MD5 46025714e33f8f39542e21c34cc40290
BLAKE2b-256 06f787d962b4c7c268efe634ab8bae107c4224855f05217c673ecea8751a4bb5

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.3.2-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 1dbba33a3effa9809b0820928c70486fe76fd10fb245c7c0880b948658212a20
MD5 fc63b63a6b889201fd63a3396d89f8ee
BLAKE2b-256 d2d617ab2dacb5850d6a463723b49513e25f351bfc97b1d3926d8ce9f5c1b5c6

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.3.2-cp39-none-win32.whl
Algorithm Hash digest
SHA256 f9d0438ed2d9ba5e08d6fdfed1621ea336534a8cdbda24c32aee61c324e35a8b
MD5 eb093c7e6438703ce1130a2321a3841b
BLAKE2b-256 355b408cf58615edaa70408235e8aba6ccc7fd26d45268c776de44f9050a8eea

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.3.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9b8ae455b62904072d52de4061166dbd7942bb5a7de115334e2695b40aaaa048
MD5 542d108e38d574514312da965f312540
BLAKE2b-256 1749e0c416823244917000f91dc7189c6145d99765214ff81077c94dee039edb

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.3.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 561ad3de0299537dfec854f40f90e2659a1a74ce077428a6ad163ac6a213a298
MD5 f3365b78f0868ebbf90ea043e562a0bb
BLAKE2b-256 40110136d56f0d7aadc2ab837199846fa05314563f8ac473f655993b1070f0be

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.3.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6424ca6e4b8db6e3eecc6956e20de6e2f46e61b4b935a4c8fe72957ab57e1d67
MD5 ca603fd34ec6e9f2f77df5ccab01cb1b
BLAKE2b-256 1d635791b2347a25f4f4f340f2f80ca56b7bee0ff6bb73caceb5f2824eacaa43

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.3.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e98840cb6770e51b55d1f99c417f5bc9cbd8e9a8f197ea65fab1ff1e0343d787
MD5 4b9013af610eece6fe1a568afffdeac8
BLAKE2b-256 3a4809ae9b5482ddee358ad44d05465f53e74b2f5bb157f4a7c0b92fdacdd722

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.3.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8f2ef3e77b999171f75b7b50b35b50fed66386c8fecd9aa62614f597854718e2
MD5 5338cbf41e592b8d062e79285c105d71
BLAKE2b-256 723ac62ab7e78ee27f68b3b43814be14dadcd69c9d410af9306ca90fec9420df

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.3.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c97bdbcd4df4db05d4ec37c55200819aeb8671f9dea59a8ae7f195adf3e3c417
MD5 7d2eb7585089adb1a22569345e765249
BLAKE2b-256 dc930d8210fd94ca1638d72cb6f166cb095a5de44a719096571334c282ab3fd6

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.3.2-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 7ed7f3b475e3ce405855f113a5b3691079a415c574aaf6011954c0a72e2cfdc4
MD5 71998ea056bc91b1c89122b75da1b72d
BLAKE2b-256 c09a40e8e0570084a0d6620abb5b59940eccef38bd41c416c2b9d66fd2845c5a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.3.2-cp38-none-win32.whl
Algorithm Hash digest
SHA256 12197508f8bdec549be69175e6ff328695f5b5f16ea59a0cebd2b44f87329520
MD5 5379eca8d29c3fa275bee1750ddd4446
BLAKE2b-256 ee23af139c391b69af6a69aece8a754d2b1977c519a32b9a7506a333864927d1

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.3.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 92bf879023bea1eb474c18356b4aa21b4cfe89d44b2defe7322b483036ad1a92
MD5 063c2fcec484297014e6d1ec2c862131
BLAKE2b-256 67e3a88075a27202234295b5b56f8986765494c19a4692b1333e67f4242b2387

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.3.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0faf0ae5835f56f0c8760292d6397cbcd65240570384dbf9f823e884e280468b
MD5 ffb4205b627335a3bfd8555671faea75
BLAKE2b-256 c935502fb0d900f3b5cd519b2d37e87d8e89e14f3b30d9e8003da500b3690ddd

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.3.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e3f7c6a2d5486d3012661eb919b72caed98c7d2fa66580f72e3d0b636828d276
MD5 e02360594f4d068bc742678c70723edc
BLAKE2b-256 32aafaf02c0a81bcfe2971a835894d210c9eab3183884cc807eacdb43e275c6a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.3.2-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 08b1809468e1cafa46c8ac278d7a1b8ccccae7c3bc2b4866fc82b1e5ea94fe9a
MD5 caf64c6deb6a65adabf7208d01045f2c
BLAKE2b-256 5afd2ef6bf36aeb59a3af4f566f078ab02dca913a3861c1577fa68a2a1159ac5

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.3.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 17b365e2800d9da81ca28c2599ead9811ecb2c9e0f0e02e848a7d26a116b9383
MD5 d14ae5c8b7edab5fe204e68d16655b53
BLAKE2b-256 94dc7f5221a6803d4b80aa631adc7a7f07eaf98021fd80e7d8529ce95a555089

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_distance-0.3.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3cf4ed0f50c6c4add1094debe990c9ad103eb626b6bc5e135b8c92b992dd76a5
MD5 b908a39c9bd0abe1fd7fd522a2a58251
BLAKE2b-256 09493d957e2b7e5748df0e4c10a0a4b45fafd1aca8c66554de3fe9b6c5de143c

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