Skip to main content

eXtra stuff for Dates and Times in 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
  • ✅ custom business-day arithmetic
  • ✅ convert to and from multiple time zones
  • ✅ format datetime in different locales
  • ✅ convert to Julian Dates

Installation

First, you need to install Polars.

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

pip install polars-xdt

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 as xdt


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=xdt.offset_by(
      'date',
      '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   │
└────────────┴──────────────┘

Note that polars-xdt also registers a xdt namespace in the Expression class, so you could equivalently write the above using pl.col('date').xdt.offset_by('5bd') (but note that then type-checking would not recognise the xdt attribute).

Read the documentation for more examples!

Logo

Thanks to Olha Urdeichuk for the illustration.

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

Uploaded Source

Built Distributions

polars_xdt-0.12.5-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (7.5 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

polars_xdt-0.12.5-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (7.6 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

polars_xdt-0.12.5-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (6.8 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

polars_xdt-0.12.5-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (7.0 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

polars_xdt-0.12.5-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (7.5 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

polars_xdt-0.12.5-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (7.6 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

polars_xdt-0.12.5-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (6.8 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

polars_xdt-0.12.5-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (7.0 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

polars_xdt-0.12.5-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (7.5 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

polars_xdt-0.12.5-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (7.6 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

polars_xdt-0.12.5-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (6.8 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

polars_xdt-0.12.5-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (7.0 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

polars_xdt-0.12.5-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (6.8 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARMv7l

polars_xdt-0.12.5-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (7.0 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARM64

polars_xdt-0.12.5-cp312-none-win_amd64.whl (3.7 MB view details)

Uploaded CPython 3.12 Windows x86-64

polars_xdt-0.12.5-cp312-none-win32.whl (3.2 MB view details)

Uploaded CPython 3.12 Windows x86

polars_xdt-0.12.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (7.5 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

polars_xdt-0.12.5-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (7.6 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ i686

polars_xdt-0.12.5-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (6.8 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARMv7l

polars_xdt-0.12.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (7.0 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

polars_xdt-0.12.5-cp312-cp312-macosx_11_0_arm64.whl (3.7 MB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

polars_xdt-0.12.5-cp312-cp312-macosx_10_12_x86_64.whl (4.0 MB view details)

Uploaded CPython 3.12 macOS 10.12+ x86-64

polars_xdt-0.12.5-cp311-none-win_amd64.whl (3.7 MB view details)

Uploaded CPython 3.11 Windows x86-64

polars_xdt-0.12.5-cp311-none-win32.whl (3.2 MB view details)

Uploaded CPython 3.11 Windows x86

polars_xdt-0.12.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (7.5 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

polars_xdt-0.12.5-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (7.6 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686

polars_xdt-0.12.5-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (6.8 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARMv7l

polars_xdt-0.12.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (7.0 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

polars_xdt-0.12.5-cp311-cp311-macosx_11_0_arm64.whl (3.7 MB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

polars_xdt-0.12.5-cp311-cp311-macosx_10_12_x86_64.whl (4.0 MB view details)

Uploaded CPython 3.11 macOS 10.12+ x86-64

polars_xdt-0.12.5-cp310-none-win_amd64.whl (3.7 MB view details)

Uploaded CPython 3.10 Windows x86-64

polars_xdt-0.12.5-cp310-none-win32.whl (3.2 MB view details)

Uploaded CPython 3.10 Windows x86

polars_xdt-0.12.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (7.5 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

polars_xdt-0.12.5-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (7.6 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686

polars_xdt-0.12.5-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (6.8 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARMv7l

polars_xdt-0.12.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (7.0 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

polars_xdt-0.12.5-cp310-cp310-macosx_11_0_arm64.whl (3.7 MB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

polars_xdt-0.12.5-cp310-cp310-macosx_10_12_x86_64.whl (4.0 MB view details)

Uploaded CPython 3.10 macOS 10.12+ x86-64

polars_xdt-0.12.5-cp39-none-win_amd64.whl (3.7 MB view details)

Uploaded CPython 3.9 Windows x86-64

polars_xdt-0.12.5-cp39-none-win32.whl (3.2 MB view details)

Uploaded CPython 3.9 Windows x86

polars_xdt-0.12.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (7.5 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

polars_xdt-0.12.5-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (7.6 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686

polars_xdt-0.12.5-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (6.8 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARMv7l

polars_xdt-0.12.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (7.0 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

polars_xdt-0.12.5-cp38-none-win_amd64.whl (3.7 MB view details)

Uploaded CPython 3.8 Windows x86-64

polars_xdt-0.12.5-cp38-none-win32.whl (3.2 MB view details)

Uploaded CPython 3.8 Windows x86

polars_xdt-0.12.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (7.5 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

polars_xdt-0.12.5-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (7.6 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686

polars_xdt-0.12.5-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (6.8 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARMv7l

polars_xdt-0.12.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (7.0 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

File details

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

File metadata

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

File hashes

Hashes for polars_xdt-0.12.5.tar.gz
Algorithm Hash digest
SHA256 01c78b8c1e427efae625cbd7150cba534c91a73fcd2bbbd2c270ebfaa632f308
MD5 3f9418933203236e835987cf88496719
BLAKE2b-256 7b88016c2f6a12bc6970eda1190a3833c28c7ff765c54bb881d06c74b113fe27

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.5-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1abc515fe0a72162b4cfc1488c9f53a945f2a02a704436644e0968b26a90958a
MD5 0cdee02de27c7620eadde0603f0bec4c
BLAKE2b-256 e6669e0815b5424625480f63125024ee1dde761ee6a5c059804a8d0af34c7f8f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.5-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f60b8eaffc59ef27001a5c651b7bfe2d77f6c5bb91bf20275f2d8f3cd5d48dea
MD5 5ddf3bbfe64d02f7abc92335a997d498
BLAKE2b-256 052f9a98e2d1386ed42daadacc0f5e553fe84bf2600bc318c7265a9931e14b9e

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.5-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5c9283372cdbb9bc6c934785c25472f509fdde6a20bd9aa326c51ac77d0d3044
MD5 08f7c35085e031683cbbf7ffb594fe54
BLAKE2b-256 0df00d9f3a8939e2452b6d4cf28e7869950d057611021286699b7a3148b782b3

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.5-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 90a36f9183942a64aa9fdde5b7bf8703401bfd0939408e538f7888fab333b885
MD5 e638e064d1623821c1e8026751abd3d1
BLAKE2b-256 752c57f40e317852884c2413c683e4e1975bb6518df8935963081e32b873f105

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.5-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5a30d7bf89e78a777b5ef5b867c3fc857bc176835979e2500ade8c94295bec71
MD5 d8ce72ca6b699f1901ae611e38131e2d
BLAKE2b-256 f3155a64ccc3f090e2345f52b2fb8d4f28bb79091282770232ba3f245bc6d05c

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.5-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5dcb51bd02e0cb44d9ba7a9c1f319823fdef71fcf6c22807e8ac093832b32944
MD5 95633d6d58e16476579f6974b274bd58
BLAKE2b-256 797925c8c958a106741eea6ddf63bd371bc3811b8de78ac6429108e613df4f7c

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.5-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 eeaec869b74105614e45eca388dca4c36cd69be146e7d2c66bafe3a358f8a78c
MD5 aff59697f211eebce4b9eba81c720441
BLAKE2b-256 7e3e225198889e6bc2b15dc1a349aa70eca8c2b45e0f42c681826b1ed564b9e8

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.5-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 807a009dcac15865228a01de76b47045ca540655b75d532eff59d52db9b3c582
MD5 2e1bce9010405d079eb51683e15129c0
BLAKE2b-256 c5affde88397c9fc413779cffb0561c904919bacf4da18efbee92a7a36d91634

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.5-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1468d1e1732fe4c1851b7f8fcc68ca775711efa1b2bd80b91664f1279b36be2c
MD5 7f71229ab412ae18d8e600a1f3c26815
BLAKE2b-256 f7fa23ab532fa5f7ccac50d84c186f46da83767dd00d3abded61ec474c64a72c

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.5-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0ffe72633a1e248b30bae6c628cd6e93560f96b3438fc57d9514a947aec3e456
MD5 1c199d9818da32a2a851893d241f60d3
BLAKE2b-256 76d1be0ab584407aab058dbaef96385643ac9dc555b71e5d9b25a6300d61938f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.5-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 23484d19411860a0931a5b2d0f137859b8148d2f8e53056a355aa27924fde21a
MD5 f36ecb778a275bd5e02bbf2537696db6
BLAKE2b-256 31edd631169a4ce5078059b77388c8a145795dc7c0527203c5bf214620137aef

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.5-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 267afe491d068393320c8456137ba1f3bb4599302fb0b02a67b2a56593b812cd
MD5 958af8d167c2ad241763b4b5d9460e7e
BLAKE2b-256 f7043d00b342f2a766bb6b33fc22a85fbed7ace50a7465ba6bf849fd08fa62c5

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.5-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 42adbbe514645cac782c3d0eecfbe3e16d9a5145a3161e94d8f20edee4d21827
MD5 be8f59e62984e77a9af867cedb3129f3
BLAKE2b-256 1ebe4c94ffaa78111344a78959b4715b64801050c607be2abba1a4cdbe87e1e6

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.5-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c93ada1c118f7f824998858aed6c424159485b15247555b543c139d78a46f1aa
MD5 632f376c22a01eb51f438847433bac62
BLAKE2b-256 1695dc14b3ba614bb8e5dab9c2533fd6f411cd5f93994a1aadf3558266302c9a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.5-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 eaed94b5f844eb3a134422812dc20d402f71f0d6234cc599cd5f074eaecd949b
MD5 c73af927ca7c665d1540bf3da347ec9f
BLAKE2b-256 959f24aed9f4a67bc9dddeeb7fd4f8f8a4fa9a164d25b053a785a56456575bef

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.5-cp312-none-win32.whl
Algorithm Hash digest
SHA256 38b61bac45f1a377f8619dccbdc8d20eb23217b121b4fcfbad7537e631d81b66
MD5 4f58fde36c10f7e769a9851af1ecfbd7
BLAKE2b-256 1e543b4676b3e2390fa5a345d99fb4e83249e424abef2663c5012890647ee75d

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c437a5e6d886e4606bb20ec2f4b8d9d260e3f45edb6d09fb501f0f0bb6723937
MD5 921751fc26282ba6da216b85f82d2ba4
BLAKE2b-256 3fc47eddb65c580a93f8a16df4d5843e74e26b6480ebf06fcf4922063b8986ba

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.5-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 266299cd939e5f81a6af52a88f061c2b4033ba67bac3f599f3d7657536d575c4
MD5 d80bf69222a7fee62d8a044f2b65da88
BLAKE2b-256 938452d7b8c979e5d69ed111b2daf3c5c51b2723c60edcfd7b94525cf6549713

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.5-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d98669bd0d3c191d76b15eb3ca7fbb0184eeaa672425fd4ec635f2c71dbccf0a
MD5 2526a2b9dd8c840f92bdcdbca3c1f0b7
BLAKE2b-256 aff6b0b11805d7c5b71326fdfd39cfa90102b04bffda991850e73ef906a18f6f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 26191fb24b15f2c6b94c021bb1c928c57d7058fe5508f2d6fa197752730a1913
MD5 5f7149c9598f22c82a686601724a9389
BLAKE2b-256 c13302a481890fe2dc65a6a820a4a6d91e8c37571582448df0896ff5f8bd2391

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.5-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 879f9ce3d441db1eb10f1f2514ac2eb8a850334b57095520d99f668ed9b69f5e
MD5 35035cc846ddfcd1fe80c82f065b56bb
BLAKE2b-256 e0004a9e4eaa780cddab8c31bb495400633dec32ccc36699dd24ee4940b480db

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.5-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b96d9b2fa2b2d48bd26a519f2990c7b4a4db6599aa1a0369e7590415a92fb80a
MD5 6c556957ff920fcada407439e25c0a2f
BLAKE2b-256 b263922c9b23561b6e66551a99f32f9bba9d57d4707b28e6ff833c4666a194f9

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.5-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 d8294fcaa368ea32fb129f9c5c0334a99e818a3ee87d000b21fea9db42d55375
MD5 d82a4ff630d0b0d6e219195f6c2f760f
BLAKE2b-256 1e7f80dff3466d29f5cdf76431c167490d2bbf7e21ffd662372933e11553e327

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.5-cp311-none-win32.whl
Algorithm Hash digest
SHA256 d63edfd1be25fecbbe8f7e006679a77be5cde4981ac545a5ad9600dae2a613d0
MD5 a41b54fbe7ade6699699abfb128aa328
BLAKE2b-256 790396a71dab65ce25131070af7e5b0ef529c37a146b3eb53f20b3345192b6fb

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bb9d7334087e761a9eb4ce10e261028e5bfbe9156eb966c57606e6fe3d48900d
MD5 8785a2264be441cdd4d5e4710baacd2f
BLAKE2b-256 5e25309fe6cdf6092fde765eb6e836e4321620403e4e00adf61ee1ef937e60e8

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.5-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 95ba493e2b89273d42a8636b323e6fbdbfa366335120679073dca56532cdacc8
MD5 363565350f13b794c7b3d401c291f534
BLAKE2b-256 ac5f28021dfefbac659ed501258be1039b036f9d1fee1b6810c10b787cf538f7

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.5-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e2011a9dde2529537a87a92e37be1382e897548a868b95fa834563c9433f6dce
MD5 e7bff7f9f1f7d026ea451c68edc55eec
BLAKE2b-256 6c9cc3cac7a76bd6be89164491f80d5644c3800efa751e077d3c5822070e4a11

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2a3f3877b8a1188e95eaa59a0e0d14fe6aba0b4f88949d7df17855dde5743e94
MD5 5d017649558400136f0b16053f6fd87b
BLAKE2b-256 14b6a0b5d9f6be38722f98d6f676ddee5928401ed5ec6b92d4917eb772f8a654

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.5-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 26f09131519f8065d70a386a8fb43a41dae53419762ac65051dae5a476933eed
MD5 f8b519d3d7935622751e327031a90798
BLAKE2b-256 4e76b58feb01cf42f607196e9cfd4c7fbfd42c47e65eacfb7aaab54f6cf97d0d

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.5-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f279f91fb0a8dbc9b76956a6bbcae766cb98bdc10a974d3b4df01c3a22c49560
MD5 00dcae3026e4840fee6f95a0d559a263
BLAKE2b-256 63db06515067357b9dc98d2ff49707c6a28fac72aeff4075d8c4bf1fa3cfffd7

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.5-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 1f899af04f731c768ae48de71b12769e3e440b0cbb07c90c000c9d33e3dfe259
MD5 56d4af5476379856a93a5b7844447f19
BLAKE2b-256 70055ae843a26edb2dde4792a99d1956b6d11464335899db212909d43af7efcf

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.5-cp310-none-win32.whl
Algorithm Hash digest
SHA256 ec32a1a49854127e1f69c5f2ce7d7e88610e8d82c4f97fa06c5801c7b7645720
MD5 0f27576552209d411d4ae035c1d10078
BLAKE2b-256 e449b5d98d7c0c7afa39e36c1d60a4f2788a57ded7273566cc509795f05f196c

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1d7d1e059a096fddc7aff2b7b4da35e89c70719eef0a3efd2aada6137565fa41
MD5 f9b2e17547f1037b2cdc4615e60df626
BLAKE2b-256 25d2d6c9519d2b08107177705af48b8afc07e1c678bafa3084cff8eb49913d5e

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.5-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7157a535ab1f5542af87b8548fa40726e0d484d05af03ba557eed579489974dd
MD5 07cd3fde5e978aae47ae51d9122e5681
BLAKE2b-256 1e0753be38bd142d2d93376e5808343b8c053feced24819d44e218c6a26f170a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.5-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ce2ced9c67e7dbd64ab449918f6ed145208b335c6ffbab4923457ac5eb46a138
MD5 a27b78c889a4b0ee6808d4c616bc3761
BLAKE2b-256 99ae607dd7b000cc910c9baa3f475a84d41d59f106f92e8b00d060539f0e6bb8

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1f786dd6d5b66cb89e508e8686b3c2e4f60c6a5db461ef85816011194b96d302
MD5 06f99b920b216a9765b2cb8cc30e6c36
BLAKE2b-256 00c6a0a52d98f9cdc73e5cad5dad29c40dbebf4771018743efbad11370c1ac73

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.5-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2d5967d758ac6044d72592d0750093b4a9e3eccbab6e7f4666ef2912e05f1c4b
MD5 e5e1c9ddbc9f46d141f6110501b83b20
BLAKE2b-256 ad30d1c2d58a4b7f0fa5bdc1f919f03f713141ab7d54263fa097bdab92463e01

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.5-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9a21eca7d3f40b9c3c9afc79505ac6578749ab1a5f9f5f8f4b037308727d45fc
MD5 c2f48bbb999082a544892fb08c59bf1f
BLAKE2b-256 73a2242ca7c1ff48c0e0a632af2df467c1f7ab1b28d0be4cd756395e5f63c65f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.5-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 51940542a365ad51e2791f1c4bcf30aa355bf9e0da4b036b4c748cf53314ae9d
MD5 528c1c5f62ae4a01d5daf8c11c4c1535
BLAKE2b-256 e78053cde451f9f1990f542a8fa2bfe66825b15c1e1a77b9c0977208aa8da2e2

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.5-cp39-none-win32.whl
Algorithm Hash digest
SHA256 0e8e031ac8ff0954131baf79446bf91f10244a7890e922bc12d6ad75ca218ab1
MD5 8d1ab09a255efa10953196e0052d5a93
BLAKE2b-256 c4a188fcb1a23e42f64a6553916b36c080facf3ba43ed836816e1dbff8b1c673

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ad7226233aa8a7df30aaa4868f3c40da82671d6d6af60361a0602602839d60ba
MD5 a4bb71c8dd5c64123c326ebabf26539d
BLAKE2b-256 4f271c3046f3429b89d5e33af56cd7d96020881f0df39fb3d2c7be1cf0fc077b

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.5-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b54a168a07bae8560395fb26f64b05fb29ea027114e662dd6ed6d8d532895aec
MD5 f2849ce1a30a6bf2aaa6c8898bbcf165
BLAKE2b-256 aecdaa777790feb8c8547387e74e6ce235e121a90691b7d3a632aad6d7690016

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.5-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4c6c02502b978326938ed115aef3e01cdbe6f942be3d6da3927b5ecc737cf9ce
MD5 5fed2127b7b3fbdf3da0b06a69b13358
BLAKE2b-256 f6ba25bf91d384b974bc07a30e6edcc1ccc7c51b87e00b2d5797acaa0f3ef6ab

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9eee8ebbaf9dccd0d1375bf1c241b17740f2b9928a9a085250e6c06c9767df0d
MD5 f13744f6e995fba48944767d8e1961bf
BLAKE2b-256 fb34802e98e8b0eba1c1c0a0399e79fc8eb736a4e5a2dacb8cb1fb37d859b31b

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.5-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 76c35b84620e33fac0f94fe852e7736daa86c753abfa25f50a67ee2697f1d327
MD5 363502e95c9537265f733fdf42f3a231
BLAKE2b-256 affd73165c369bc3efb2929a1a5a97e783f41b149b3656321ab8e5da53d19e8e

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.5-cp38-none-win32.whl
Algorithm Hash digest
SHA256 fe9be03c585039e968f7d4e512eef022f1bf5c0147f0680ec55de3ca2ecf57cc
MD5 8794a957d5825444750ab1a1016cc9ca
BLAKE2b-256 3df6d05b2c67f5ee32407d23b16461a58cf77c31b7c1de68aa5451234e815510

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0300b2a00c914677dcd8668481dda5f2a28c429583aea120f6eedbb177a55f96
MD5 4d45fb9e01b7ef46b74ebd5a4b758040
BLAKE2b-256 23e695d71952ee098e271e439d9526d326abce9f5bca3fcf166700dc44ebe4bd

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.5-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a2d5b723d6b2b0ae31e31d00cd5a4e21d82e1ad12b4d592db7a00b367f57f7c5
MD5 0f02b50d50e8fbc47e17fcbf447da6f1
BLAKE2b-256 e3028f61d3b55925af45037ca225b778afb2338dbd68e3f3d9690ff3a23c61f5

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.5-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ede8cac4d076b1aca67ef2e0cb24cee15e6b8a2c309e1b2587c4cb9a4e4f4f42
MD5 e81282c78cc18e981e085af9be9164b3
BLAKE2b-256 e58c0a1dda15885bf6a111221212d5f78b900fd7ba4b09e5f8fc1e2af45408c3

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9baff92e5456090bb938b32f92c74dfb0abf6227d19c37fa5d40e73390c427ed
MD5 372ccc4ceca98b5f98e02acb008e53dc
BLAKE2b-256 1a4f5e7947d3a55e5e4bcea89696f9e9b7b87be9d85579f00eb29ca4794aaa56

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