Skip to main content

Time Series Extras (e.g. business day utilities) for Polars

Project description

polars-xdt

eXtra stuff for DateTimes

polars-xdt

PyPI version Read the docs!

eXtra stuff for DateTimes in Polars.

  • ✅ blazingly fast, written in Rust!
  • ✅ seamless Polars integration!
  • ✅ define your own custom holidays and weekends!

Installation

First, you need to install Polars.

Then, you'll need to install polars-xdt:

pip install polars-xdt

Then, if you can run

from datetime import date
import polars_xdt as xdt

print(xdt.date_range(date(2023, 1, 1), date(2023, 1, 10), eager=True))

it means installation all worked correctly!

Read the documentation for a little tutorial and API reference.

Basic Example

Say we start with

from datetime import date

import polars as pl
import polars_xdt  # noqa: F401


df = pl.DataFrame(
    {"date": [date(2023, 4, 3), date(2023, 9, 1), date(2024, 1, 4)]}
)

Let's shift Date forwards by 5 days, excluding Saturday and Sunday:

result = df.with_columns(
    date_shifted=pl.col("date").xdt.offset_by(
      '5bd',
      weekend=('Sat', 'Sun'),
    )
)
print(result)
shape: (3, 2)
┌────────────┬──────────────┐
│ date       ┆ date_shifted │
│ ---        ┆ ---          │
│ date       ┆ date         │
╞════════════╪══════════════╡
│ 2023-04-03 ┆ 2023-04-10   │
│ 2023-09-01 ┆ 2023-09-08   │
│ 2024-01-04 ┆ 2024-01-11   │
└────────────┴──────────────┘

You can also count the number of business days between two given dates, specify a custom calendar holiday, and create a date range excluding workdays.

Read the documentation for more examples!

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_xdt-0.4.3.tar.gz (966.8 kB view details)

Uploaded Source

Built Distributions

polars_xdt-0.4.3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.7 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

polars_xdt-0.4.3-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (7.1 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

polars_xdt-0.4.3-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (8.9 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

polars_xdt-0.4.3-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (6.8 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

polars_xdt-0.4.3-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (6.1 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

polars_xdt-0.4.3-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_xdt-0.4.3-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (7.1 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

polars_xdt-0.4.3-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (8.9 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

polars_xdt-0.4.3-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (6.8 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

polars_xdt-0.4.3-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (6.1 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

polars_xdt-0.4.3-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.1 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

polars_xdt-0.4.3-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_xdt-0.4.3-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (7.1 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

polars_xdt-0.4.3-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (8.9 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

polars_xdt-0.4.3-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (6.8 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

polars_xdt-0.4.3-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (6.1 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

polars_xdt-0.4.3-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.1 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

polars_xdt-0.4.3-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (7.1 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ s390x

polars_xdt-0.4.3-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (8.9 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ppc64le

polars_xdt-0.4.3-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (6.1 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARMv7l

polars_xdt-0.4.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.1 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARM64

polars_xdt-0.4.3-cp312-none-win_amd64.whl (2.9 MB view details)

Uploaded CPython 3.12 Windows x86-64

polars_xdt-0.4.3-cp312-none-win32.whl (2.5 MB view details)

Uploaded CPython 3.12 Windows x86

polars_xdt-0.4.3-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_xdt-0.4.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (7.1 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

polars_xdt-0.4.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (8.9 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

polars_xdt-0.4.3-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (6.8 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ i686

polars_xdt-0.4.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (6.1 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARMv7l

polars_xdt-0.4.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.1 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

polars_xdt-0.4.3-cp312-cp312-macosx_11_0_arm64.whl (3.0 MB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

polars_xdt-0.4.3-cp312-cp312-macosx_10_12_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.12 macOS 10.12+ x86-64

polars_xdt-0.4.3-cp311-none-win_amd64.whl (2.9 MB view details)

Uploaded CPython 3.11 Windows x86-64

polars_xdt-0.4.3-cp311-none-win32.whl (2.5 MB view details)

Uploaded CPython 3.11 Windows x86

polars_xdt-0.4.3-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_xdt-0.4.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (7.1 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

polars_xdt-0.4.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (8.9 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

polars_xdt-0.4.3-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (6.8 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686

polars_xdt-0.4.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (6.1 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARMv7l

polars_xdt-0.4.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.1 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

polars_xdt-0.4.3-cp311-cp311-macosx_11_0_arm64.whl (3.0 MB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

polars_xdt-0.4.3-cp311-cp311-macosx_10_12_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.11 macOS 10.12+ x86-64

polars_xdt-0.4.3-cp310-none-win_amd64.whl (2.9 MB view details)

Uploaded CPython 3.10 Windows x86-64

polars_xdt-0.4.3-cp310-none-win32.whl (2.5 MB view details)

Uploaded CPython 3.10 Windows x86

polars_xdt-0.4.3-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_xdt-0.4.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (7.1 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

polars_xdt-0.4.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (8.9 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

polars_xdt-0.4.3-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (6.8 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686

polars_xdt-0.4.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (6.1 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARMv7l

polars_xdt-0.4.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.1 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

polars_xdt-0.4.3-cp310-cp310-macosx_11_0_arm64.whl (3.0 MB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

polars_xdt-0.4.3-cp310-cp310-macosx_10_12_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.10 macOS 10.12+ x86-64

polars_xdt-0.4.3-cp39-none-win_amd64.whl (2.9 MB view details)

Uploaded CPython 3.9 Windows x86-64

polars_xdt-0.4.3-cp39-none-win32.whl (2.5 MB view details)

Uploaded CPython 3.9 Windows x86

polars_xdt-0.4.3-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_xdt-0.4.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (7.1 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

polars_xdt-0.4.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (8.9 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

polars_xdt-0.4.3-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (6.8 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686

polars_xdt-0.4.3-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (6.1 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARMv7l

polars_xdt-0.4.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.1 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

polars_xdt-0.4.3-cp38-none-win_amd64.whl (2.9 MB view details)

Uploaded CPython 3.8 Windows x86-64

polars_xdt-0.4.3-cp38-none-win32.whl (2.5 MB view details)

Uploaded CPython 3.8 Windows x86

polars_xdt-0.4.3-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_xdt-0.4.3-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (7.1 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

polars_xdt-0.4.3-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (8.9 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

polars_xdt-0.4.3-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (6.8 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686

polars_xdt-0.4.3-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (6.1 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARMv7l

polars_xdt-0.4.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.1 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

File details

Details for the file polars_xdt-0.4.3.tar.gz.

File metadata

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

File hashes

Hashes for polars_xdt-0.4.3.tar.gz
Algorithm Hash digest
SHA256 38e7e17e604e0f666cea826ffc081caa6635134b4a1c4df3a2dd947a11585a56
MD5 cc9bf92424fe3b1411c965b3fd21d298
BLAKE2b-256 9ef2c30d2b83e834cbc0eabf288da681ebcccd7d5dc88b8d61e15ea85510170c

See more details on using hashes here.

Provenance

File details

Details for the file polars_xdt-0.4.3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for polars_xdt-0.4.3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e61c6a94421ff9e27aae6880d1f10a9b8b9ef4ccb02bcbca272245238277ae8a
MD5 230d5ee027004988c0e98fa2e04c085b
BLAKE2b-256 75f3252d7fdcdce3d3f1120cd63d59a17e75869c32fb0f8b65b333f37480eef7

See more details on using hashes here.

Provenance

File details

Details for the file polars_xdt-0.4.3-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for polars_xdt-0.4.3-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 22184a963824c04dca31f28b8505168ef644fdfb4e3e808d22fe02845555f7af
MD5 186c9553a558412984f3da97a9a72891
BLAKE2b-256 4fa0b24f1e77af7525f97796192889a84c17c37e2738e74e79611c837566ad23

See more details on using hashes here.

Provenance

File details

Details for the file polars_xdt-0.4.3-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for polars_xdt-0.4.3-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 71c52e6f7d832e3ec771fb09cd2d1561f1983fe704222b40e041eb55df8f4cdc
MD5 df590037fe8762cbeed071f47e086f0d
BLAKE2b-256 20553d827bd2912caf3dbb767598281408c065a4cb172f24484fc1faffdd4e72

See more details on using hashes here.

Provenance

File details

Details for the file polars_xdt-0.4.3-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for polars_xdt-0.4.3-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 fba4b66735a91f687a86902a5eadb29c868e7bb85811a3f8acd085402100408c
MD5 c1033a7d3a560a6ebc3ce662d8bb6c73
BLAKE2b-256 95fe0a42c335fadcb54275e8f4bbd474f8fe6b9cad98a045ffaabeffe90142f0

See more details on using hashes here.

Provenance

File details

Details for the file polars_xdt-0.4.3-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for polars_xdt-0.4.3-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5e5c0313329c8f7ee7158aac78837c7fa0d53065606c942937c675c4b5bc4cd0
MD5 d57331aab72a31ee571c716863248ff9
BLAKE2b-256 c5cb9e52172c2ff47e3a06a556996dc15fb4fd0da22d7e226d6e23b6d77fc98b

See more details on using hashes here.

Provenance

File details

Details for the file polars_xdt-0.4.3-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for polars_xdt-0.4.3-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8b75d12bd864eb92447a693240cd29cfd3d141853b76d11a7a498620ef046882
MD5 7b45f5039e672840ca1016c94909e02b
BLAKE2b-256 cb2a8d89e5b6870bd8913abd298761cc7c6d0004ee0d875297a867112667fe57

See more details on using hashes here.

Provenance

File details

Details for the file polars_xdt-0.4.3-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for polars_xdt-0.4.3-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0a2b1a69079bd90326d2e382227949610d61762dadcf773c691ca913011f8d62
MD5 05d905386524de08d2864c67b4ffb697
BLAKE2b-256 7c610bb3d89a1f6b883a960cbaad4bb08d6e7e87ceb71ff8f85a6da5e1a7a287

See more details on using hashes here.

Provenance

File details

Details for the file polars_xdt-0.4.3-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for polars_xdt-0.4.3-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 33c3d37c60861882c898f16fd616292faf0e3310c9fda68a08e34427307d6ec7
MD5 eefed27cbdc7e71ec3009fd278a6fc22
BLAKE2b-256 a3f656d8d364ca28ba2843119bd47fe3e19ca3300d8834a6c5f9855a95da4880

See more details on using hashes here.

Provenance

File details

Details for the file polars_xdt-0.4.3-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for polars_xdt-0.4.3-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2c2fa841cbe79190fff02c0e0fd9aec783000158febca337192e53095921336c
MD5 66cef3b1499a221c323bd7d2d0abfffa
BLAKE2b-256 b0158ca4b68d7902f68b7eef046511ff167143a3d1d25eec118c6eff84936762

See more details on using hashes here.

Provenance

File details

Details for the file polars_xdt-0.4.3-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for polars_xdt-0.4.3-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c2ac600f90ea82ba7f1769fb41482bda7e988f3bdacf03ac3e23678ec3c20377
MD5 1dfbd5952d4072247ba128870161953e
BLAKE2b-256 abcc80ab74551a6168615cc6ff5bef4a9b52c2563ec41f88b138cef3cbe72d6e

See more details on using hashes here.

Provenance

File details

Details for the file polars_xdt-0.4.3-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for polars_xdt-0.4.3-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d1b6fc0dc166425f60adbc40ba79389b4d6344e5e3e38c096b08db22b4ebce52
MD5 246042469692b54cf112a1179846b660
BLAKE2b-256 1868370b46ffeec5884402347fa3ccf32215f86d47c432d308eb653ceb7e2526

See more details on using hashes here.

Provenance

File details

Details for the file polars_xdt-0.4.3-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for polars_xdt-0.4.3-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8453a5f03309912ec623bbeda712837e61e15a30876372ccf97d78f217e6d8b0
MD5 3850f3d1ba543361e70fdcf8ecf123a2
BLAKE2b-256 958db9afc8a75062558c8c4c9a8692224b824dfa112a13384cf09e102f0bc7f5

See more details on using hashes here.

Provenance

File details

Details for the file polars_xdt-0.4.3-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for polars_xdt-0.4.3-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ba386d2d30d2831a1d7e2cd65ac5aa8a6807667450145d8b9517fe719178a05c
MD5 e3f05c915b034a8ebfe5a3569bb64827
BLAKE2b-256 1d1f35a8aec5a00da3adcc4b569f534fed81fabce6a4870ed0560d3bccd3cdf1

See more details on using hashes here.

Provenance

File details

Details for the file polars_xdt-0.4.3-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for polars_xdt-0.4.3-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ef054a7b6e715c46ae364d2cd51deb1bda80f37cb685ff5df3d3cddc664babeb
MD5 ae64a14a483053559fac69e8ea433f5c
BLAKE2b-256 636afa83e30ffb5a0725c30f68cfa4f8e2a267cca4411c19c1b29f88d4baab2c

See more details on using hashes here.

Provenance

File details

Details for the file polars_xdt-0.4.3-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for polars_xdt-0.4.3-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d7956f5258c9add5fda8255edb5e8ef27a1266287b4a6abbee28c41ce67fdeb0
MD5 9054c1156f44ee4e1780892d3c8df89e
BLAKE2b-256 ff142e5330443b5dbcbf8e6ff9b994eae0446c6477ca9e2416ba9a060d24e62a

See more details on using hashes here.

Provenance

File details

Details for the file polars_xdt-0.4.3-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for polars_xdt-0.4.3-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0d697b24c3d3b1bb287dffce4fcb9ff597cfcd555a3875cd303848a540e777d4
MD5 c2d69c1182afd5d0392d1a72d77a6139
BLAKE2b-256 bfc4475661f2974ff080586e9b9bed15bca66b6c568cb661dc221adb08e773f6

See more details on using hashes here.

Provenance

File details

Details for the file polars_xdt-0.4.3-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for polars_xdt-0.4.3-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 df17d841e1b04aab6fdacc94ccae193ac95baf4d6f8911d886155bdb602d9203
MD5 7449388810cc3c1380023431056742dd
BLAKE2b-256 2964a8682c6dce70374b93d7f10ecb785841eb6a85b2bec5ef6587b39434e4b5

See more details on using hashes here.

Provenance

File details

Details for the file polars_xdt-0.4.3-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for polars_xdt-0.4.3-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4e1cc06ad0671d1cb36bbedf3b6bc5cfab2ae41ef823571e5e3b4ccb63bf5a6a
MD5 74095a54586c50b489ec8fe54b7be668
BLAKE2b-256 64131d47eb93aa35e6718714bac72ace26c4edd528c4f61559f24e6544ef161d

See more details on using hashes here.

Provenance

File details

Details for the file polars_xdt-0.4.3-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for polars_xdt-0.4.3-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5946f25d966625dd4adad194fb975cdea19f97d42feabe360b26481d173af03a
MD5 b4316180806c070c2af6d90078685d31
BLAKE2b-256 4f0b53bc69a8d621a751a2cbe365a603f07f3e019e6f193a751fdda9cc828ffe

See more details on using hashes here.

Provenance

File details

Details for the file polars_xdt-0.4.3-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for polars_xdt-0.4.3-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1a66906d07750967a2183f4ec4ec88432489a868b33407095c9c7862b616d344
MD5 9fb1b3bb9530b0885405b96e5fe1107b
BLAKE2b-256 a3b69ea9b1854410fefa3197c07b32b45727241e13583318e533189205924c71

See more details on using hashes here.

Provenance

File details

Details for the file polars_xdt-0.4.3-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for polars_xdt-0.4.3-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 06e59dd1f518efefa95d55f8eea72f637d665e215569826b75603b937e594924
MD5 ae11b13f22a0b9307e98595fcac188f2
BLAKE2b-256 dc5fbf24901ef40842ec3bbc24660f79eba0d53ce6d6adb258459c5b3ba73919

See more details on using hashes here.

Provenance

File details

Details for the file polars_xdt-0.4.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for polars_xdt-0.4.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 75593479b63e318d275b50c953907a7ce132ece02bc486863f4b0561354d67cd
MD5 9ccdf0ab02e9dcfa9a6ace08dd8bbfee
BLAKE2b-256 b7a1ca2689840374049f105eb5ec87ccacc33e1d2e8e9ee5d300094e01f7cff9

See more details on using hashes here.

Provenance

File details

Details for the file polars_xdt-0.4.3-cp312-none-win_amd64.whl.

File metadata

File hashes

Hashes for polars_xdt-0.4.3-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 8f2a46abf5d643eb81b303f37c9d675a7e62c8e3922a29f63cd55151ebf72fd5
MD5 42024887c7de652facd49a975b458abe
BLAKE2b-256 159717fb86bfa65e0c9193e6070c82be0d7713b267e22ed9aca88b1547402757

See more details on using hashes here.

Provenance

File details

Details for the file polars_xdt-0.4.3-cp312-none-win32.whl.

File metadata

File hashes

Hashes for polars_xdt-0.4.3-cp312-none-win32.whl
Algorithm Hash digest
SHA256 35201663156a42404e0dcc882aa8e9fce014e6056b54ae256cbb04412050ff01
MD5 4d835d9d6bb6f9e0117adf63d196fb00
BLAKE2b-256 d31dfe362a1a5cd3b5a12fa11fbcc4048c66221b2f0cc12754a9fa3ff4f9921d

See more details on using hashes here.

Provenance

File details

Details for the file polars_xdt-0.4.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for polars_xdt-0.4.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 76ad2054fdc18a73e369a11c0396efdc17c0617ac524397323d14ee9a9decf0d
MD5 ff3096f36a53cd92feda1c9496dfc4a2
BLAKE2b-256 40d01f0c4fc7bcdff3f71cdfb36f4ecc00f51680af8eb17c5fe8290b580d553c

See more details on using hashes here.

Provenance

File details

Details for the file polars_xdt-0.4.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for polars_xdt-0.4.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 53f6c8d97e4dbabcd43e56be5be0a927f49c4059a0f0be3551ef601de562ae14
MD5 15f00c0182fe2c3643a3f9aaa0f945ae
BLAKE2b-256 8208b2faffa7e684c6e158cc0410d29d14fd6223a3831f3aad7a3db704c45b37

See more details on using hashes here.

Provenance

File details

Details for the file polars_xdt-0.4.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for polars_xdt-0.4.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 259c57da66c609794dd15fab257df9d060979784db2a0d496ad1c04f9159f6e8
MD5 dd44de83e9bd4cd7a2e0b907033e3698
BLAKE2b-256 d66140883be86803a52d9d89f7807bedf674037cddd0c31fb1b9a320a702ba9a

See more details on using hashes here.

Provenance

File details

Details for the file polars_xdt-0.4.3-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for polars_xdt-0.4.3-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d49c863378e7859b01d567e8d905d195647732bca595a6b6577880bacb65e29a
MD5 807470fe37400e6917d65433568912ce
BLAKE2b-256 ac183b3285364421664a5804184e4d5f7b58e3d949532b95b817be2c8b2f6165

See more details on using hashes here.

Provenance

File details

Details for the file polars_xdt-0.4.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for polars_xdt-0.4.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b43abd61a37fe386d43926a1fbad674e6b1233fb786c7c57a92f11b2ec0e3446
MD5 c262fac0333ed6650ed50dc916caf252
BLAKE2b-256 03206b69904723b2fe33d989f4e5f595f0f89edd7776f15d107400298ac6cd7d

See more details on using hashes here.

Provenance

File details

Details for the file polars_xdt-0.4.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for polars_xdt-0.4.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a7c6cf0851b3a4076a88d4bf29976a33cec0378704c77e47eefe2bf041eb47cc
MD5 918bc5c6f9fcf0b85dc7f9c2ee5550b3
BLAKE2b-256 7b1de16673567a8a84d2a1ddfbcf9512d746c88d7293bf9ac608570a02a75f5e

See more details on using hashes here.

Provenance

File details

Details for the file polars_xdt-0.4.3-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for polars_xdt-0.4.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 40f2e8d1de5e95fab72ff096cbfa1a05346859cd34ff9ffe68d44ecdbe39778d
MD5 98b24997bd75388546b30d9903807b65
BLAKE2b-256 0dedab8eb8779cc9d54471d1b1080c58b0d6c33956eaa9fadca9f0fd3148dd52

See more details on using hashes here.

Provenance

File details

Details for the file polars_xdt-0.4.3-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for polars_xdt-0.4.3-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 24434c7789ad277d3cc67ecacaaccdeff2dc898352fae600030669c0d999d026
MD5 c78eddff04f347eb375c1dd558eec68a
BLAKE2b-256 3d6558991a65b300b27a4936b0f5faeda55c21bf8bdbe29c9855ea40be86d944

See more details on using hashes here.

Provenance

File details

Details for the file polars_xdt-0.4.3-cp311-none-win_amd64.whl.

File metadata

File hashes

Hashes for polars_xdt-0.4.3-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 d9932750331aa3aea1cdb6bc30d989cf7e80eb6e3cb60e3fca29d93aa81830c4
MD5 90db115c2b90963d783252d871452701
BLAKE2b-256 4a994e31b513429be4d31d7dcfb2984eaaab494213fa0792e5385945e44d3650

See more details on using hashes here.

Provenance

File details

Details for the file polars_xdt-0.4.3-cp311-none-win32.whl.

File metadata

File hashes

Hashes for polars_xdt-0.4.3-cp311-none-win32.whl
Algorithm Hash digest
SHA256 973dd3bf9a10b35a2a9dc41b5a632739af627f05eceebef69f28453c1021f952
MD5 7bdd3dbe9a2041dc55b9d6afe3c54d8d
BLAKE2b-256 ab3228334b36f1f02f18840f3bc0ba13dee437c325790a84d65980c0405a914d

See more details on using hashes here.

Provenance

File details

Details for the file polars_xdt-0.4.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for polars_xdt-0.4.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 696330434dfb4daafa9fc41c8c229510573d69c6cbabf4d10b1d6b1102889676
MD5 993d632b49cafbf1efde0989a9b45923
BLAKE2b-256 8224da7ef16c6c9a44722d17314970e8d995232d55e417a31242d2307b6893cd

See more details on using hashes here.

Provenance

File details

Details for the file polars_xdt-0.4.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for polars_xdt-0.4.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8f4fc020b788ae2e30df0684e78b41e370603b23a10ad32e185bcafeb5e02139
MD5 345fb2cf41bed681919b64e9be2fe367
BLAKE2b-256 03e0af79393978793a2870edbb848198bdb0ca3a705fc84ef306fcb80dcfe571

See more details on using hashes here.

Provenance

File details

Details for the file polars_xdt-0.4.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for polars_xdt-0.4.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 30334b1bec88f2d80273d22ebd107070b99ed9e96052970666822e273639731a
MD5 3caa0da626a85fee030a064bdd3be932
BLAKE2b-256 d852dd378d0c6b40033b1a09b95aa18a46718becd05b6d105e1a835adade6b41

See more details on using hashes here.

Provenance

File details

Details for the file polars_xdt-0.4.3-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for polars_xdt-0.4.3-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0ef23ab05f1fc31c2d0a8e0ba8ed5c6d3f214f0981c3117c8e44248a90db3ad6
MD5 a4a5de07fd707e00c899e6e8a9e68451
BLAKE2b-256 776a17d78882c675f66fee3e348b81ed81ba96f7ef59e304be89f0b8b09fcc83

See more details on using hashes here.

Provenance

File details

Details for the file polars_xdt-0.4.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for polars_xdt-0.4.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 020ec0399c579af4c9f3a54367ecae96b4650f5a4957f67aa339ba68d4fc4043
MD5 5ee9e83c11da8a07762ff7205fdebd2d
BLAKE2b-256 fed7a3811e4bb20a4cca28e1f8f9b7eb2019179b52abda0ccc09112cf7150129

See more details on using hashes here.

Provenance

File details

Details for the file polars_xdt-0.4.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for polars_xdt-0.4.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8f1fc7fbafad9d05cab4dc52c4490683d0c3fd31b7b868ab4d8b664104a8033f
MD5 e44fe575987df34461d4896cdc0f697e
BLAKE2b-256 70c50316586d78300af728de45ce864ef2d3a3792f95da7b2809b8d156bf6060

See more details on using hashes here.

Provenance

File details

Details for the file polars_xdt-0.4.3-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for polars_xdt-0.4.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c7b651c565c0fbe1aef1b44d20e9333cd04ccefc3e8dfca2d189565fa059b1ea
MD5 95e33624dbb21adfd1cc270a9a0cf72c
BLAKE2b-256 547969f32007080d0bc876d9de866280304ef75ea3c747c413e86336886124ce

See more details on using hashes here.

Provenance

File details

Details for the file polars_xdt-0.4.3-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for polars_xdt-0.4.3-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 17fa6606847dc7dc20b20e8d6eafba43e493d13876629e6913881d98ec48f203
MD5 f0b7e79066f828bc3e8ffe9330753947
BLAKE2b-256 7628a47d4ed493a318e4a5f50b51dafcad46044d53f2d24cdf99492c8f3893d2

See more details on using hashes here.

Provenance

File details

Details for the file polars_xdt-0.4.3-cp310-none-win_amd64.whl.

File metadata

File hashes

Hashes for polars_xdt-0.4.3-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 3aa4518c571f62784a0db0787aad052c951535e30e70588d67e59bd5ad209665
MD5 cda5f9863cba518f1660ff3484b71ddc
BLAKE2b-256 72d2b35f7e9b22cce9c182580612b6ad0d9f7a765e0e41df6fc47120ccb73d8c

See more details on using hashes here.

Provenance

File details

Details for the file polars_xdt-0.4.3-cp310-none-win32.whl.

File metadata

File hashes

Hashes for polars_xdt-0.4.3-cp310-none-win32.whl
Algorithm Hash digest
SHA256 5e08d51b45aa5df8bccd474b0398802f314a4df28581b1a92235d09d8b3d7c37
MD5 9f728dbdae856da74eebfd1c76b8f2eb
BLAKE2b-256 01ffedc259fa933e40634c95bece7407bca061e3240a9adb8063ae780477ca73

See more details on using hashes here.

Provenance

File details

Details for the file polars_xdt-0.4.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for polars_xdt-0.4.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 02a4b4b5510b2e179dc3f9acd2dcb3c738574155b437733366ab03fca79eee7c
MD5 133c7818187032517dee2f4d7d899248
BLAKE2b-256 32767dd884369e485d2ea70be80fffe207a93c7f9b7dce97b88a7b99ae786216

See more details on using hashes here.

Provenance

File details

Details for the file polars_xdt-0.4.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for polars_xdt-0.4.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 357036e94376baa4735675d45ab0f99b5fc0306e496339bb0af1aebb621b283e
MD5 7ab3944572908764a1ac28ea0ef2e3bf
BLAKE2b-256 dbc0b357072411aeabf43f07ee023116fde42b612118fe18e5cce67939d1e193

See more details on using hashes here.

Provenance

File details

Details for the file polars_xdt-0.4.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for polars_xdt-0.4.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 153c4924ee2166409f3a306aa3e75681fbcfb99764da3c88b6859b143fca9762
MD5 7ac46f6348c69feacc6005c9529c3217
BLAKE2b-256 eda17079a0c394f7f9585203bb01fb193969d260bd59a7af59a8c88dbaffe8d0

See more details on using hashes here.

Provenance

File details

Details for the file polars_xdt-0.4.3-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for polars_xdt-0.4.3-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5f8902d58b37bcded19b2e4d7172049bb6946c309dac21fc1faf27421dd711de
MD5 863e189d76e565c1763d0518f781f64a
BLAKE2b-256 979243384667fda034d9559cbc0c84bbbe97e125ebfdd295992d816e73d3c9a3

See more details on using hashes here.

Provenance

File details

Details for the file polars_xdt-0.4.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for polars_xdt-0.4.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e9e8b4fbef02820015b467f6114bf57ad193e7c6a12af61a6ec9013da6ff2daa
MD5 f7624aae0654e0fb9ccce1a6b42cbb0a
BLAKE2b-256 d73b551b2a9f11d7712efffb1e745a21007de30388269cc4b8808e3a09caeed8

See more details on using hashes here.

Provenance

File details

Details for the file polars_xdt-0.4.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for polars_xdt-0.4.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 dda5c13b56216ce3901654bbb4677fd86d297c3bbb3eaad65bc8a00eacdd1c1d
MD5 8799281c5f5aee4ceae7492123629c57
BLAKE2b-256 dfd403ab9e720758491bba7b6dc67be9816a4c912bbed199112dfd0443560186

See more details on using hashes here.

Provenance

File details

Details for the file polars_xdt-0.4.3-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for polars_xdt-0.4.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 96ae0c3dd71f1607d2bf36d8d2c8a90fdad40fa48d50e52aff5fab6d49ea8e3a
MD5 8b06bc5676758c04d48d9a1ca16cc67f
BLAKE2b-256 394551bdc07893875ab44d1e07fe09bfb9adfe3c5f1835a5121818b9565d5b43

See more details on using hashes here.

Provenance

File details

Details for the file polars_xdt-0.4.3-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for polars_xdt-0.4.3-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9cb29d32d833c759b90a22879a2572a9e2f364681e58a6c36b3bd8561fca5568
MD5 b178ad134a7e310d3550130bd417792e
BLAKE2b-256 a718256d75fd52648d898896262893bcde3e2461fc3e8baab4e2431a07eb715c

See more details on using hashes here.

Provenance

File details

Details for the file polars_xdt-0.4.3-cp39-none-win_amd64.whl.

File metadata

File hashes

Hashes for polars_xdt-0.4.3-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 e0a68040de6a1f1606b6b194a965b64c89940c6409068c0daefd1960ab83be87
MD5 46d307969874c8529a5df7063179549f
BLAKE2b-256 4f79ecc8637676fc5278d1b6bf179215fc93fd4967bc79334cb9d59963a6ea58

See more details on using hashes here.

Provenance

File details

Details for the file polars_xdt-0.4.3-cp39-none-win32.whl.

File metadata

File hashes

Hashes for polars_xdt-0.4.3-cp39-none-win32.whl
Algorithm Hash digest
SHA256 ca5dcaa1327e5e1310882c5805b96d4ae10af5f04eada32ed2a811beb5e9cdd1
MD5 6f6a87ca5f2bfbfe3efa5fc62f2daa58
BLAKE2b-256 033288d3c3af2c2a8830c7784683cc28301df80644c7b3c495b7e23319ae208f

See more details on using hashes here.

Provenance

File details

Details for the file polars_xdt-0.4.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for polars_xdt-0.4.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f6b64be4805a619256ed07d5d8c2e257548f47ec5ba13787a0414dffbffebd5e
MD5 9ca39600644e07fd0c8e8c0b10d234d3
BLAKE2b-256 2ce503fbcef59824426ce5c6939b6e17b14ad7bc161652213036c67e37ec6077

See more details on using hashes here.

Provenance

File details

Details for the file polars_xdt-0.4.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for polars_xdt-0.4.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5267ebb649a7e4b0f5f40144fd860655937c427c51b2bc81df7d535c2391b1f9
MD5 19d49a536d5339aaaa2d34e4976a2369
BLAKE2b-256 df570bb5fe11593fbe06d5f40014d2dddf523827160fbcbb18d5a3ed258928b8

See more details on using hashes here.

Provenance

File details

Details for the file polars_xdt-0.4.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for polars_xdt-0.4.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 105d018e07a277b381bee4d6f738bd20c05a473bc4b523aa103adebce74c3f32
MD5 8792de6854ced1d28e0363c345d86230
BLAKE2b-256 35805ae1c5bd0a08101d98527fb7731f4ca2f3a0e4d0c2606cae5a161ba991fc

See more details on using hashes here.

Provenance

File details

Details for the file polars_xdt-0.4.3-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for polars_xdt-0.4.3-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f01ea19f9a51399dbfbcdb0612e486f1292a2076b10a472a0a22be13644a514b
MD5 3c35599a412c3930b91fb721df59a9b9
BLAKE2b-256 8b80cdb9081f4aac46c933a3e4d9734e9dd70b2d54c7258f0b09054f0d6021c1

See more details on using hashes here.

Provenance

File details

Details for the file polars_xdt-0.4.3-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for polars_xdt-0.4.3-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a7c872b79e953ea21f6c3872374ebec0d94adb651b4547bc380cc5ec181e5147
MD5 52e4d57d9396c44f7775449939fd8f1f
BLAKE2b-256 c3f37b2f99570fde91d774900641536cb8c60658a159ae280e840376cde5f52f

See more details on using hashes here.

Provenance

File details

Details for the file polars_xdt-0.4.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for polars_xdt-0.4.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 927bf8b2376def0e7d48b95659964c8e7bd7d3174f2627c219480be92b12df5f
MD5 6b8d670d58962e10850646ef4c42c711
BLAKE2b-256 70ae95a1a046313d6bc110c8446d692e49fd6d9c359f799a9a4af8b40f78c7f7

See more details on using hashes here.

Provenance

File details

Details for the file polars_xdt-0.4.3-cp38-none-win_amd64.whl.

File metadata

File hashes

Hashes for polars_xdt-0.4.3-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 323f76f0ee6282343187e4c2d42b680e1a9a5966ad7eda88d8b9953e864c4db0
MD5 4e3469d5aff9d663847b7ffc3da18685
BLAKE2b-256 fc052c1737495b51151b3016c75c756079da579f9924179ff267ec5b61e904db

See more details on using hashes here.

Provenance

File details

Details for the file polars_xdt-0.4.3-cp38-none-win32.whl.

File metadata

File hashes

Hashes for polars_xdt-0.4.3-cp38-none-win32.whl
Algorithm Hash digest
SHA256 dba2e683b90fb9f65778164581b67fa34693326101d674c15796153961fd872c
MD5 7e3cb6df2d2f48db10a8753c2ffa205d
BLAKE2b-256 0999ab94cb224418c821e6cd9e08feb478ca8eef0514b9a300deff74b2760522

See more details on using hashes here.

Provenance

File details

Details for the file polars_xdt-0.4.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for polars_xdt-0.4.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 12beed70abcc0feb7cde7e6926175a3495c2cb6e6ab915af95c00c2a9e74dfce
MD5 6271356c884ae32165d48d10258dab9d
BLAKE2b-256 3d5ddf4229815526f819cd634047bb19a8894a5cd730e5664aca7fb68fee9a75

See more details on using hashes here.

Provenance

File details

Details for the file polars_xdt-0.4.3-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for polars_xdt-0.4.3-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 03a99e7ecaa59868ecc1ce6b7e2c63f6cf2be05bb350342a911e3318f47641e4
MD5 0938d4ad6e37c94e3707a0044a303e96
BLAKE2b-256 5d51d23048bf7f4d6bcbc95efc5d282bb48858fa14af6977b0ac122e5e952dea

See more details on using hashes here.

Provenance

File details

Details for the file polars_xdt-0.4.3-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for polars_xdt-0.4.3-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7ceb59845fb486a582db5126a432fd5ed2d4fba85f5a9d1b949d319e4053b91b
MD5 232b6c9cfe20ad406b571b2140e283bb
BLAKE2b-256 f45524e55e89ddc8522a18acaecd501af6c7bcff44f9e49b34860757b59123f3

See more details on using hashes here.

Provenance

File details

Details for the file polars_xdt-0.4.3-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for polars_xdt-0.4.3-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e80f2f7b02770d1b6ea5d18b861bc78048c4ef2a0f2720ac3bb358c2d331990e
MD5 4af8aa763a130f216ba48984ef0a0a33
BLAKE2b-256 b8382d02d564c91cbccca17fe144d5f54530e12974f98c266f463fd0ae7570c6

See more details on using hashes here.

Provenance

File details

Details for the file polars_xdt-0.4.3-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for polars_xdt-0.4.3-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3a84234ff0fba3b6842878f91e415e39dc37d1aaea8d3b000152fbfbb26a15a1
MD5 6670d611d05534fe27542087c1c5629d
BLAKE2b-256 d749ac4c9dc9086eba9a8bd406cd425a48e0e7c6419faa1971d238dc35476837

See more details on using hashes here.

Provenance

File details

Details for the file polars_xdt-0.4.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for polars_xdt-0.4.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 adac15ee1e583ec9c62f49dc3e410b9c935864cd53f3867866c3f472d8d20f45
MD5 6d907efb64d55890649f8b2f87dde951
BLAKE2b-256 f183615c962494bc1411b90ba3f015e5484a98dc406dffaa0770edb06ca945da

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