Skip to main content

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.

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

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

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

Uploaded PyPymanylinux: glibc 2.17+ x86-64

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

Uploaded PyPymanylinux: glibc 2.17+ i686

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

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymanylinux: glibc 2.17+ x86-64

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

Uploaded PyPymanylinux: glibc 2.17+ i686

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

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymanylinux: glibc 2.17+ x86-64

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

Uploaded PyPymanylinux: glibc 2.17+ i686

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

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

polars_xdt-0.12.6-cp312-cp312-macosx_10_12_x86_64.whl (4.1 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

polars_xdt-0.12.6-cp311-cp311-macosx_10_12_x86_64.whl (4.1 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

polars_xdt-0.12.6-cp310-cp310-macosx_10_12_x86_64.whl (4.1 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

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

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8Windows x86

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

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.8manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

File details

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

File metadata

  • Download URL: polars_xdt-0.12.6.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.6.tar.gz
Algorithm Hash digest
SHA256 a8787618f98447f05913676f21e361f570ea444b4329fda9cba7506fb01d30e5
MD5 85cd23458e921822bfef8cb4802505bc
BLAKE2b-256 35206a5a4a737c85a71a9eea010fe147662ce1123320c2c92b65dfbe901862e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.6-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3f4b985ea8b84450ec16a0de652841ea3823381b92c013c2287b15aa8aad4e9a
MD5 05499d62028eda5026f5a7a06299d3dc
BLAKE2b-256 2cd9eb84227708a2a026b855cf4b17a1154bae6b60deda4ac15d957cca4aa601

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.6-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 438f162c3eaf4d1cfa569dd911527b4abfcb6197ae060b45bddf425c8c82e9aa
MD5 7f0569468e4fee7f6f9cfa4e4af3111b
BLAKE2b-256 cc627257ba1eaaddba4e855ce056e80c225a45b44df8f57d01ff3b70365e6d96

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.6-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e642dfe5176e7d42cf381c0b45a8c6a6c9cc61e62b67d0bc3d9ab510c2ad6e88
MD5 40886097bd3b450dd1ae072b137cfcfb
BLAKE2b-256 daf42bee8636f12c05e42bb67d81713e9ba1f2df8583ea1ec0f8e1192c76b440

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.6-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d0be60aa2386e5741f592d061820eb6b62b5a1a8711c17b1c740492672869a16
MD5 ee43f598b16641c6c5aaad1b38a7cbd3
BLAKE2b-256 b04c9a12b69d220e3426511ab4fdf07a9e23ffa6037ec6d70850af06655ad7b8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.6-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f7e55f7108a1efdb605ba7d5294bc9094507e67de54e60fd192d3df7f496cca3
MD5 670b35c15640aa8d90357efccc00f02e
BLAKE2b-256 84a4d5836f0916d33761604523d80c2fdfe1aca8b41834a817e0b167081cdce4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.6-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6171a69dd44e33775af42d20a94f2858ad5057db11a9e44110d4eb790dc166e5
MD5 fad731455ac1d43517b90822f961cbd1
BLAKE2b-256 9472cbafc97ace8b55a13d336f568aed00fe6dc8c22ccea4887568253c48abbd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.6-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4e579aadf216362acb3c54530543a93318aceecf19c7c003377c01e829e4b911
MD5 3ef7838965e73363e101d7a374eca72f
BLAKE2b-256 83123a5cde6d357696018417d0f77f79b9d6ee12b55b55f5a6ec86b5cb4519bf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.6-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c0c15c1c0a8f62819e5dc8babe9b6a8a7e89f908a6872cad9ac7a84cd11156a1
MD5 ab9cbd538345f55f64d23ae44dbd7086
BLAKE2b-256 d0cb049e0264b021242cb5668b3b662fb01cf62479649e7dbaeea129ec35b804

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.6-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a12457c56b2d1bac0f875d9f80405fe2d590f4122a996938b3c309c6c29c482b
MD5 e59a867fa89105b2499c1fd4fc62b0a7
BLAKE2b-256 2209bfe76ef2e312660531e3841e77a7fcd03c5bed9fe9c5d2f0868d61c09082

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.6-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b30a2c6bf777b45e3249e62a81fcf7fc31ee36c3c2e656dc95705155257801e4
MD5 eb0c7d2d3d3397e7fa3fcbd12f495502
BLAKE2b-256 fe8ad874f8109e48ac8870b3b6cebe91c021af05f0041beb0c605823af549591

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.6-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a9ed34902dece1c9a5cee7188e18bb0df3f2ca7490508faa5a05298a73ea2bb7
MD5 85f968fd402b9ad2598ee62f95fd033e
BLAKE2b-256 8548cbdb3aa17b6d31c1e45a794c9515537ab4c9f8c6fb80d10a3b7d7f3724f9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.6-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4df004460872bbbeca65264dc5b792ecbe353fe2bf7b3cee25856f1aad950c8f
MD5 32a1b533016cd2a4ec46af75db68e729
BLAKE2b-256 fe5a8962939844ab1c11451963f7918475de735f6bdff0af28355948dfa8cc00

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.6-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c9748f7993ab3e2534b3faeaa873a725060b04e152d2a22241adff43743adea3
MD5 592ca6420a6867cc520aca39d01c106b
BLAKE2b-256 3212689576942391bc8e87ec44a74dd4de0daa39e38005a70fbf9f49b63465e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.6-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 dfa66086929d09ad853f675663a8854fd1e95291ee272cdcda719f0f56b0f347
MD5 1dc218e25efc0f6504ef8aded8ff0654
BLAKE2b-256 d14bf5c2ee327e42b916477b309c069786e4e285d0ee9b0a47d8398ea060653b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.6-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 4aeca8e0f21b5e3fb8a626a906293a00d3e822283a1af9d9da89754c281f75be
MD5 2734435c7be6ffc3ba634b9c6ed53b90
BLAKE2b-256 0c442f17b58ee7e5fc3eb9ad22407931ef0e6aeb1c84343d0cfc99b6f29ed4f4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: polars_xdt-0.12.6-cp312-none-win32.whl
  • Upload date:
  • Size: 3.2 MB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.4.0

File hashes

Hashes for polars_xdt-0.12.6-cp312-none-win32.whl
Algorithm Hash digest
SHA256 2ea63d9f200c5353bc6c2b5e3f47841958fe00ca62d694f9ad58afc2cbceb570
MD5 4faa0d0a388186267aa9e10655139182
BLAKE2b-256 2af36606d6b39ca37658d31b97d23130000e687af03d8bee2048746738506344

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 999215378ff5d0a1d311fb97f1f757b92a0d687c78f9969f5267f8600a3785b3
MD5 d7614bf34a348d2c6e70773225579609
BLAKE2b-256 f7741d5b96db805eba61a373ac439e32b479f353547421718ce3312038f3dcf0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.6-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 186e7565e6d9df30dcad003ad7d4b1eb128f23bd10bdbd6baed150cb1f571b33
MD5 c7324a0864ea4a31e6bac010ce103177
BLAKE2b-256 e8606f2f98e32346e89e8ceb0305a636764ac6022838b0597218754a833c8c34

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.6-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 199bc19fd0c6895342ce3dd0e7ac690f1ad498e05306bf89e0dc9eaa3f801c9c
MD5 5f7d6c31525565ab23be8111eb73d3d1
BLAKE2b-256 492f10143d0ccfb192390fbb60d53b096a653c3dae5e81c71a7327110f8de94e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.6-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 36c93098a37a808c94c22f04c3959420d5db5adfa69b18481150865d07846a15
MD5 59d584bfc1291dcbabfd22bae7f492a7
BLAKE2b-256 76e1e7624be5dc7bc3a7f28c378938c53af139322d056e816461b2bf33027864

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.6-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 63a9136ca081d756d7bc3961e637f013f9383391ff3c1b689eb35a4241fa4920
MD5 3e7ec0c8d093c9294a6616e73f63ab54
BLAKE2b-256 6f44a8a882790460122274f0fea3a25d157ac8bc130f92d0bfcd70ccdb13d255

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.6-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ddc46a860eff30ad4bd3b784dad37d1b19bc4cc82d02d4046f6387b705d5065b
MD5 28f6854e3ace1544918276f5ffe591e5
BLAKE2b-256 37d2be8ba83209b3358dd55e54f5222c405c1c86aa8575cd7a2b549f8f910fb9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.6-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 ca135b4ab114a013b09edb22cf025e708f3fd934712e13620e9a5d8cab6d84bc
MD5 859c6d0f49622db5c67990052e776ae9
BLAKE2b-256 3f0db9383c082a0e5d06c2ab5e867dd34f28f57684024f3e975bcbb3a4d8a4b8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: polars_xdt-0.12.6-cp311-none-win32.whl
  • Upload date:
  • Size: 3.2 MB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.4.0

File hashes

Hashes for polars_xdt-0.12.6-cp311-none-win32.whl
Algorithm Hash digest
SHA256 0644402e1469d08e5a1f1d72513b64aa9727c3deda46e177311d9f966e23c620
MD5 7b682119e02d9aa3491c7eeb27c98819
BLAKE2b-256 4ea84f3bd84d3fab947dd6d57c98a88d74b47326371e5274bc2efdeecbc1fb3e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 21f8ccb78ac6492a28e70355dbf0108dad15e8ede78cbb592c40cfd6b8266789
MD5 43c06f46e6f49e3f80193f577a29d411
BLAKE2b-256 6699f082edd30e520cd7a6336c0660c4f65b7366a66c9007ea7f3400dad999a0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.6-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7cd22dfd1b41b8befbd9cb0fec3a2727634f858fc9cebd6411b5a6781f6c773c
MD5 f9487c59094a7b89ea1e9a1770870cad
BLAKE2b-256 8c56da565721e6651b1417988cf0650a8a67d3caeeb51e4d208d1ae10dcce77a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.6-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ea9913a6d440e4ba5cd1389adc8dcab4867fa1b3b814508dacd0cc28a9b4f9a9
MD5 3672f35d9a5084802f070394a003cc1b
BLAKE2b-256 cabe66b124dd9f26df0c31d9cd870ac2e3fad530e2aabeb9f8d675dfb993b9f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ef20c99988f8a70ba4bc4143b0ee9cc6730e963073570de1a65ed2939929d874
MD5 570c976ea9c15e58f3a8e81cac1cda96
BLAKE2b-256 47e8ff6f1a2115880a6ffe1a534fcf4c0a5b894a9124f07cbad219918baebc9d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.6-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2d214017ad17e7125ceccb3e5ee2b2abba42634f17c3c81473414bdc092627b6
MD5 0608b5f3dc6811a6e9be9a882fd653a0
BLAKE2b-256 8ab6303cc03fc34e0f7fc6866f8a51aa6e5908674d130e7aa164f248fe9581a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.6-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9dcb1f831b045fa34993c3fcedd1b6bd3a4bf35deeb8aa5d90f0e604eaddd41a
MD5 b3c182c4c3b8d1104fcf33385ead43b7
BLAKE2b-256 d8b8a42e1552ab3b67d67dbd8cf4a9bcd8caf6b2404859af6afbcaaed11c4968

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.6-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 5279425806d594796c78bee6f9b3511a6746694e8f006c717a62a97874efee46
MD5 f08a4b9643537b40ce0afefde2371aa6
BLAKE2b-256 0a3cbd50426b2409ff5edd3dc33e19534d9af96a9be492c53abd403c316772fe

See more details on using hashes here.

File details

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

File metadata

  • Download URL: polars_xdt-0.12.6-cp310-none-win32.whl
  • Upload date:
  • Size: 3.2 MB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.4.0

File hashes

Hashes for polars_xdt-0.12.6-cp310-none-win32.whl
Algorithm Hash digest
SHA256 a2c14de7384d5a846dfe303b95a9ba0ae9a244932a8374331af174eb8591f088
MD5 873639d505f2b9e4f85941a06b65a63a
BLAKE2b-256 4136adbc3f2305113ce31e5b77aff8968c9c05d99d7f81e6d6abdfd53eeace8a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 dd992b1cdf61bbc6bd37a4c81dc7cff4a078eb0ffc7b0fb22ae7473ed042750d
MD5 2d926a8c8434df100a2850d74777c55c
BLAKE2b-256 10808bd651e09d586297a0be181c1b06a9f42dfb19f57046013667c55d1fdd36

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.6-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b14a45c817fc78a5a6ec1f6e807285bf19284048f5ebb74e63fb463a06265678
MD5 087cbb1a363d6423fad0d464307805d4
BLAKE2b-256 ea06b42f141fd9aeb75d025d2c6ddb4aa5688ba1f008bee4aa49d23a3182b245

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.6-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e09af313da75feba93a8db3ac136016d673a4efd5c4c0f46672cf4faec1ffda6
MD5 c59998c5985470b75fcb5656ebad10da
BLAKE2b-256 e26fcfc4425b867dab76ca71715127428afc28bb278785fb37d5ce7247e508af

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 156dd99ffe2c710c66205121b1a7e75745c0e7474ae49d06499403b0e79c6d54
MD5 bf23bb57cdb3be6fff923400adac3ac4
BLAKE2b-256 c9e945905049866337c57776b15b9c724cb08b6f49ca434811717526a3e9f8f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.6-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a66e9467f059be93cd5749ee6799eab514afdf964029344e00d39d04da49ab40
MD5 3dec91458d4cf2c5b9b306d1e699cc5a
BLAKE2b-256 26dfa1ff8c389f3bd0b97fb71ac0307e75fe39be94a11e0bda6a8e0f761f9d14

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.6-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 df53acfad93afd4baa19e870e2a708eae55db6240065d19e8f0fee9c223d5858
MD5 12d32b34e92b0d585868c5c53b437517
BLAKE2b-256 ad9f563de731a3e9c32f707e1dd839fe1dcc9573ad664b08fced51b77704c5fa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.6-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 66817cbcb407fbad95949ae813a3f2347c306ef3b4c5be2f037c3c407c929943
MD5 990cb5b07b12e2343349759ee274e5ce
BLAKE2b-256 85405023a914350f630805553fecb5a6a8c43e44017efe2f53058755b960a01b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: polars_xdt-0.12.6-cp39-none-win32.whl
  • Upload date:
  • Size: 3.2 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.4.0

File hashes

Hashes for polars_xdt-0.12.6-cp39-none-win32.whl
Algorithm Hash digest
SHA256 cf5d34a783a238e6b9ce18155ae0b98c826dd0c525ebf3c62e059712a20044c4
MD5 e7257ec8767e309f6c3b4619e514d474
BLAKE2b-256 2729813a4f860957ea289f9f46be1d8a8e3b17da7a9a1eac2ebb0d2c0060c929

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0ca8710dcd2eee11fe0aa404a15c440cbd524140cc8b5bc6b3ec5013956698f3
MD5 b3325b90c266383bc5a66c655d51c124
BLAKE2b-256 fcd291dc941431448d17c026d21838bd2f15a285aa49e057f767c40600441d85

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.6-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d31a9b0d71094ae4a4edaf3289ca28d7197d5061842f27bc89be157d97602056
MD5 55d64a9d1fd0fa6b8e8678dbf1abe17c
BLAKE2b-256 78feba56e6379a5b6fe7ed4b8c459041607c5125f7cb9befe00dd573e1c874e9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.6-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b4c26f8e285381e9fd99fe672aaf9f5555edb7c0ade30b1c65afd4b85889d61c
MD5 faa5c847314fb77ab8d15863d5c933ee
BLAKE2b-256 e8939ff8bb08e8e6ae8805c775873fc36096b27da4b443032f5bcee6659ba967

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.6-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6d99fb5125a4bc3d832ae129b314e865dab0fed37d951e905c33bc4120b1a943
MD5 3eaf854c656c690ca0ca51e3a662b99f
BLAKE2b-256 7dc3c9cc9c701747be2e1cdfba1bbf5ecb0d4eddefaae46dca2d98a46d8e21f9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.6-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 6b2145ab725888bed37d9e3371e2e74e54fe40f1c01cf3367b6c9f82931e63f3
MD5 b29b19f589ac7d01516b43fdf7b4d8ed
BLAKE2b-256 987272fa8ff3ae815c61992f28753c6261eaf4c3b20771e8049323ffac7cfe84

See more details on using hashes here.

File details

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

File metadata

  • Download URL: polars_xdt-0.12.6-cp38-none-win32.whl
  • Upload date:
  • Size: 3.2 MB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.4.0

File hashes

Hashes for polars_xdt-0.12.6-cp38-none-win32.whl
Algorithm Hash digest
SHA256 68e37c3e0fb05ae11b1d17ca41486599efc7481ecd179e6be24a57fae0ed7df2
MD5 65a4b0c36bf8ef462e049d8b60654efc
BLAKE2b-256 b20adeae3d51493e4f1038df0a7cd4e3532b64050898e856e6defa1fa5bb1f67

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.6-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f5fb2c7e3fe17b7dcd99e8a2c99162af1c121faa8e49591efa9a32f377f5ad36
MD5 c55736824cd80bd149289f83e1676edb
BLAKE2b-256 e0084949459a1e31a25af5eba3ece6ec61815735596c270e539b7743b3eb10fb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.6-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 bae358512b87d0d7268b32ce829bbd6044e330cae9866b55864542c50b65b4b9
MD5 760a648e7f3f9cbd2f34e99a19797652
BLAKE2b-256 16042e09ac58b9495485b9f2f474d965d80ae1d739ad4732eef337d7886d7079

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.6-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2ec82cb7dc8fe0997aaa61e359f34578a16528d37014716fb467778438cebfc0
MD5 db556a3d012956fb629082b441e27005
BLAKE2b-256 00f56b6786ad30abac7cab87045953417657c8e22cd1b78915f3fabcb1df3487

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.6-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f0382711e55de7c3b5aed053991dd2e0df9ecbc53cfb0aa34586d523dc6fb2bc
MD5 459276b05a4a8047f3308cf6630b5a5b
BLAKE2b-256 6f5f0f96c50b97502833bd3db9a520e1e89080b4bb8182a6e1016875707a4a55

See more details on using hashes here.

Release history Release notifications | RSS feed

0.17.1

6 files

0.17.0

6 files

0.16.8

6 files

0.16.7

6 files

0.16.2

6 files

0.16.1

6 files

0.16.0

9 files

0.15.3

9 files

0.15.2

9 files

0.15.0

9 files

0.14.14

9 files

0.14.13

9 files

0.14.12

9 files

0.14.11

9 files

0.14.10

9 files

0.14.7

9 files

0.14.6

9 files

0.14.5

9 files

0.14.3

9 files

0.14.2

9 files

0.14.1

9 files

0.14.0

9 files

0.13.0

9 files

0.12.11

9 files

0.12.8

9 files

0.12.7

9 files

This release

0.12.6 This release

51 files

0.12.5

51 files

0.12.4

51 files

0.12.3

51 files

0.12.2

51 files

0.12.1

51 files

0.11.0

51 files

0.10.0

51 files

0.9.0

51 files

0.8.1

51 files

0.8.0

51 files

0.7.1

51 files

0.7.0

51 files

0.6.0

51 files

0.5.7

51 files

0.5.3

51 files

0.5.2

51 files

0.5.1

51 files

0.5.0

51 files

0.4.3

69 files

0.4.2

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page