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.1.tar.gz (976.0 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.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (7.6 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

polars_xdt-0.12.1-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (7.7 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

polars_xdt-0.12.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (6.9 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

polars_xdt-0.12.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (7.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

polars_xdt-0.12.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (7.6 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

polars_xdt-0.12.1-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (7.7 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

polars_xdt-0.12.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (6.9 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

polars_xdt-0.12.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (7.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

polars_xdt-0.12.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (7.6 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

polars_xdt-0.12.1-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (7.7 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

polars_xdt-0.12.1-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (6.9 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

polars_xdt-0.12.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (7.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

polars_xdt-0.12.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (6.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

polars_xdt-0.12.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (7.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

polars_xdt-0.12.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (7.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

polars_xdt-0.12.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (7.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

polars_xdt-0.12.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (6.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

polars_xdt-0.12.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (7.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

polars_xdt-0.12.1-cp312-cp312-macosx_11_0_arm64.whl (3.8 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

polars_xdt-0.12.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (7.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

polars_xdt-0.12.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (7.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

polars_xdt-0.12.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (6.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

polars_xdt-0.12.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (7.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

polars_xdt-0.12.1-cp311-cp311-macosx_11_0_arm64.whl (3.8 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

polars_xdt-0.12.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (7.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

polars_xdt-0.12.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (7.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

polars_xdt-0.12.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (6.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

polars_xdt-0.12.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (7.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

polars_xdt-0.12.1-cp310-cp310-macosx_11_0_arm64.whl (3.8 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.12+ x86-64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

polars_xdt-0.12.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (7.6 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

polars_xdt-0.12.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (7.7 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

polars_xdt-0.12.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (6.9 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

polars_xdt-0.12.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (7.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8Windows x86

polars_xdt-0.12.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (7.6 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

polars_xdt-0.12.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (7.7 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686

polars_xdt-0.12.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (6.9 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

polars_xdt-0.12.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (7.1 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

File details

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

File metadata

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

File hashes

Hashes for polars_xdt-0.12.1.tar.gz
Algorithm Hash digest
SHA256 b34e255b87abf48cd1cc0ebdd6dfaac51d2e2be668d0dd64b314f5e8a59e0836
MD5 74cb6fa5a1006e3c286245b1aa3fa5df
BLAKE2b-256 0a80c9bd8f311fa85264064706b9b50807faf33a3e7374d009545148e295fd2d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ab8625c89f9be8689033b997fbbb75c87f297a5e31ef097d805724a22e414f99
MD5 61d6dc1a89781142d312102513cf847b
BLAKE2b-256 9d9df23f5cccc15a15b0a8058c66653454631ba9365d049e2a1a53c22c412b57

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.1-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 44387b5b34f2375fd8e4483f1efc7e8b58954c8be00839522896a5bf5115258b
MD5 1a2c915f7681e32d9d2faf02be873b14
BLAKE2b-256 0aebd2c2831e75aaf6a98aad981331991a078f1c2131370e0a557236f13765aa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c2db84d679efb61d816bce9effc2269f4f030396565e26ce9e48dcf42b78ed5f
MD5 4829257b8f4e3c2c7d0f76b8dc71139d
BLAKE2b-256 2700cf3b6f00fda67e8f94ddc5f3f1973527433fe78eab061a5ce9ee3222b4f4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1829b086fb58440d80e3ee297e354325e3cb562ca7be76a8c0aeed0411d23e17
MD5 83725acc8893af51a50aad02e5d46269
BLAKE2b-256 0b8a14f0a3914758f9648dada3cd71a9ad1637675ff3df4b5a21f68300f3fec3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 be9ff584e313499369b5481a73589a1263eff3ce0917bb2e96a44876ffb4a8af
MD5 bf2786c4058b99cdac37adf9b7773dd7
BLAKE2b-256 6e87985d840fd47ae54585ef0d125fcc3cecd43605e314a525d77138b36e0a26

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.1-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 beb0930549172975c9442eea95ee81af52827d796400b5eeffa260ef77511f31
MD5 5572ce905e2ecf49cee29ac0c49aab13
BLAKE2b-256 06e2bae2b53b05b1aecc2a97b4b0e35f214a34ba1f92c1064a15c32a1659f2b5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 74093135dc046e1f618624dd256279ab5d0e26c7a955519ca0e6023ff2696295
MD5 20c5b7374fae92931c9ca565d2339624
BLAKE2b-256 c84d832046944731689fb96384416f48acbc485d7fc32595998f9016e7dcdf57

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7a51626c4b8f290d1c7266b38ade05e1faa22f046942a6aeaec947697f960689
MD5 0d79ad08a51812cb374e5a13a0bfd5f6
BLAKE2b-256 cfbdfe997a81d98e7bd0a3b0ad4715254cca46968ecbc21dfb739fd5962de51a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0c393c44a7835ff5a971bfb91cc29535e58a378f26096cf4428630c4e52edae2
MD5 94fb857ac90e2b214992d9cd877ecb90
BLAKE2b-256 77c8008b70912745caf10331d180390b27d9f88520a0194d0bfe41a87094565d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.1-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 bf7e16e17cb190d4b0c536a27848540636a2e7ddf2a5c3cf8ece0b67efeaba00
MD5 b62ac9e309bf750da7fa086c1f11fe92
BLAKE2b-256 7b61fd5f3451784364741a1a921b6d860512e505d220b888e634810031f70b5f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.1-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3fdb1a602dbea6638da0873a31060d047b9ebe13eb68688bd5c290d7733dddec
MD5 b4d0717daa8fe86ebcbae9f53d5dbb47
BLAKE2b-256 a6ac8261a993372c82fb8eb520994047967496a6abd2881bf465bf8c08bc6c1b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 19076e20dc9442a76942b38aca03a09e72e05dc2e8d99e12e5002737bee40115
MD5 7b1ec9d190f955528b6115bc88b2764d
BLAKE2b-256 f5514fb0b7980ca717be7e85326c2f643c016adc5bc75f1162e00f5620ef6e78

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 48729570f2b1f77117dd895e27d1c2da59609dcf4a39a640b48ff491beb5eb09
MD5 1fcf6e60af0103be0d8fb508b0f40eb0
BLAKE2b-256 e93db1581a1ae9585f336ce47125ba4a9787d70f4be612fd42d36df2e40bec7b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7f1e0eda583121c85f24ab72139e93dd542522b9c74827920b0524fbbcfa0565
MD5 0fdfcc2737be8d95b45a38217d30c054
BLAKE2b-256 dd7b45099a47b7ae29018f5623a04688f3126bf14e700e21744b1063e826da0e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.1-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 aa9459e7282c7ce6cf4a1690bccdea6909f1e65fdf7b56fc15562634dd075b44
MD5 57d34487e605c5b62762c433f63d1e67
BLAKE2b-256 cdd9127d6bc0a1821297f8dcb3d0b5936dbe9308c62a53a794b29dda2cf49e5b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: polars_xdt-0.12.1-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.1-cp312-none-win32.whl
Algorithm Hash digest
SHA256 69f7d9cba7e8dd6e35a3da3a05a499601e3cc85a96c54ca1d1d70514665a828d
MD5 32c75fec0257f9f7e42613180be0db99
BLAKE2b-256 c2668fa40a445e636805bd8e5b8671eb343600841f86b21c409e0b28423a95e2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 51865a2a2c8a66dd1c6949310d9a0ef32f1a83fe58b78ec9e025473b85b44662
MD5 70a98cc5364c02fc0547afb5349c1d55
BLAKE2b-256 69e7394958fee7a06cd545656520e4fc79eb4aec0676c55694b954a2d8e25bdf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6e75de0e48fe8544967d08b8782307283ae62c648b5e7e77e671c646590ecdba
MD5 8d6a9c57114a5a6a320e8ad267e8a67b
BLAKE2b-256 62e7003e5ee82a8398751c5dfaeb81a1a7a4e4053f1f22e72df31087a27e96e9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 801ddaf2596ceaa9202bb16e177f8917825590a2d486d30c68e028b7ec9e7afe
MD5 d9cd9a4bf77d08be8a5d033e02ce0f95
BLAKE2b-256 04991737b1f7ecb6b6b378d66377957144403904efe4f09a98d0464257bc404c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 05aad948223770805cd961f1addc04d5b62a211fefc2ebdf2cc7aa077bf67919
MD5 5da503fbb921a3164bb95e9968e78400
BLAKE2b-256 65041b3f45a2740672417c78c8849ba23c525feb78d082076834789843d5a3f4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6960f2bc5f13f86a7758efb04e50ed50417ba3c2c842e7777694b11ebed6e98c
MD5 884a322991ee0d1ed768b22756ba87f1
BLAKE2b-256 451be494476149683b76f92ff25e7d5412906c3d6d12b04ea5fb178bec1245a6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ac92d0eb2670759d69d49de0572bb71e9bac9d10a8775090460792b983deec59
MD5 b40152eccc5c21fb5a01b1bab7fbf94f
BLAKE2b-256 52c64f508374be7080a33d1dc920d6f857ac04406bf288aae4a499210af104dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.1-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 33e5be674c1d87e74dbb341c43a0ffe4afca5855498db30eac346cd51d427bb9
MD5 c0fc6d9c7882670a688629ab5f0bf72a
BLAKE2b-256 8e0eec89c0a3ea83583a2b15493636a62d83e1824131cae57715550c8d1c2be7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: polars_xdt-0.12.1-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.1-cp311-none-win32.whl
Algorithm Hash digest
SHA256 14c0296f34d520ff79a1164069a9c6fde0aa27821007b9470c5f38e07632b8f7
MD5 8bcf409a731599a64398398d8e5e8abb
BLAKE2b-256 1986d53923d9dcb1abfe5bc2118185f5d407ebc6fed3aa5dcb3820e12816c8f5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4d303bf554dadae6cdc5791f5030bc029c1e7d04f285e3e5373e5f6772f343b3
MD5 062198ac5499d710150d19b4357283e7
BLAKE2b-256 4638dad8e02f4e8642879d1aaee14fc4a9797fd4fbcdaed5f458a61022d494c4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6484bc01bd938680acb40606dbd3cdbe7fb78a30a114070712e5940b98cbd87f
MD5 dfc793101005d585a6b3ac6b3ee0f699
BLAKE2b-256 28b7c925b49623cd488af4467cca55931937237c04c53060b3c37adb670f9a91

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a1efc9dbe8bd81466310a190d786313094bfe24d62325726464b88b7e6e888e4
MD5 985e08ace2406a860d0d17d4ff7bd9c1
BLAKE2b-256 fee43840c50d2d5d6210ceddaa3b5a925519860ee4e0fcd924d031f69b4f7aa5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0f202d6013346f18fd564d063aff78f8e297c7223e9476be563d8b731ca31240
MD5 8b9e03e5ae339d086f73ed78ff66ae02
BLAKE2b-256 faf7c9fc4b6f5b1f1f89b7deb3c9d2984b8c9e0a6320edeec900ba6c33d9cf65

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d0087eedc87fb235beffe564eb95f31024c3c19d3ad8f62497a64dc4053f90f2
MD5 813aa1b374a2a0394cf3647aee1be9a5
BLAKE2b-256 42099a160be82e6dd07c5f984fbde5dca31dbe355d4cc5644e0da0679265c666

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4f258b63c910a57740f5b8a0802b7d0af2da0de4a8ea6f53b5b894c54b830259
MD5 86634f2301bdd9a4eeaaf84a277d34ed
BLAKE2b-256 45ff1a84970e339275c83f0a2634aa5d602738008bb62fc7e0465a6af1c8597f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.1-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 973af28f112f53dfd8bd6ba7baa3361dffcca4fc5d52d37f93651e517bfef183
MD5 3520b5c7f0d11bf0d9d3e1db25f232ca
BLAKE2b-256 4915a4251f94522aa6745b8042218128b12f8857fc2b7fe548d9a00ef90dc558

See more details on using hashes here.

File details

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

File metadata

  • Download URL: polars_xdt-0.12.1-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.1-cp310-none-win32.whl
Algorithm Hash digest
SHA256 e361cb9245df9a8dfe321c3cec6ed7c799f204cc08d9efa6093dbeace00dd90a
MD5 32d9b69b48f6d4e5929af290b9f57692
BLAKE2b-256 4a7c7b837355edac5fc19e70e771cb8d817f2b45213d6c724d3875061feade6a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 32e06e7df19c8c71aa4e7fac402f8d5081449b0643a4f599f517abb3313b032b
MD5 564aa02d2eb6137b1a2d33ee04435a21
BLAKE2b-256 0a972a455411892f1d9b7342299742db417a947406361846ff857abbf8c9894e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 dcdf0a5c12f00d848d80c5e86fb6b136b6cd71194468d4bda33cef1f8cc7fc37
MD5 2c90bfa164a709d3a76bea478aa29d26
BLAKE2b-256 cb792136f2bb1534b08bf181c0e727ea42dc36bda6700d8e0b8b8d8feae96cb1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2a623ba6e564edf56c1d2a87a6cfbb92848cc70eb9b47f4367ff603776a2d5f9
MD5 b36cf56d4ebf069f0e9fc01ab5aa7538
BLAKE2b-256 3a608c3a5a06b6b9026592ed294abca495222296e080d235a9b488c31b87e862

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5f26560277889d24bebdb51aeca9c87ace845fd3ab68aa14cc55c45843e5c4eb
MD5 54b1f1235be627df00f03345cd029931
BLAKE2b-256 aae88f9b188a7025089906166ae0ef4dfe8b209544b32a05653233bf911d2786

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 78f21251b47f4a368bdc4931b99b2f6b7aaa0639e36098e0a6d1c1071526459c
MD5 8bf68fc0f15fd80b723b0b6c06c4110a
BLAKE2b-256 0500da9e04f130ae0eaff84d69c1628158c33d24f5aa6009d0e8dd0fc47df0f7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.1-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 768bb4f9adf4cbcbd989c84baa368f5f0f3f30369962580282406fd112dc4a6f
MD5 3cb585a10c80297ab5bf2806e5136946
BLAKE2b-256 a1c4ebf06973eb5ffb09624a1927ea4b3811ca0e826825570fb1bfcff7a5ad2f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.1-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 529a98c8cf2ba45b2e60a6c9d2c7cd8c4603ad5f89a08a922a5ffa3b641d8f3f
MD5 33fd8b8062f07465305ccd59cd1473ce
BLAKE2b-256 8e3ecd5f8300f747b1f1ebce3243f0fbced925bd4bcade456fb2d5d6d191bf38

See more details on using hashes here.

File details

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

File metadata

  • Download URL: polars_xdt-0.12.1-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.1-cp39-none-win32.whl
Algorithm Hash digest
SHA256 45ea2146f837e978f0ac19e7ed9f196d3cd68285e457107709f75ad0db0a8230
MD5 38fb890a95270c1020f7ba4c238c268a
BLAKE2b-256 818954e4e122c6b6c04acda76ca6d0f2c0912940c6ed35efa9779a0c177d1a3d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 18aae315b658d333510fb7aeca32e9197aca99eb7239bec30e8146cd8eb8440b
MD5 dd256a69e40ae69cb32e1c6fe32de9fa
BLAKE2b-256 f87656b824b0e1ebc2de9d14104516061b7a7d612104b2926728372427194845

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 69c38b63022126fe734bad17d125f6d1b3eda187bf5bc7e7ade42177beadb10b
MD5 314fcafbd6ddaa30a71832f3aa0e6d1c
BLAKE2b-256 500e26e24c97a1e49a5d3380fc64345d3ef00c922dca7266b1639085559da6a9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 404540f280716322e51071d2a6e47f82912bd239522a8509ce7ca45ad245f411
MD5 12ed49461bbcc0b08a7089ae6342ed55
BLAKE2b-256 c52046133bd9848dc57015eb3a406edb9434c20565905664787fb08f66d44b96

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b0e47892571963893ca1f3cdd6d3e6dd4fdfd2f7a1e192ea711804b6db88e4e6
MD5 079050bbabcfb16debc6b19d11979d2f
BLAKE2b-256 635cb28dee816d0159248b2f8f1da7d29437f76189fffc2d4d982698a08c29fa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.1-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 b1982b60f9ca09dc714e9ade2ef55b9c97f26796fbaf615abc4d5ea371dc2a68
MD5 517f6e152776a3728c4c2ef069f5d0f0
BLAKE2b-256 99bbe077d262fe16d4284aa128c3f4660e1210c283a8334f50bd3b5a77ef6cda

See more details on using hashes here.

File details

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

File metadata

  • Download URL: polars_xdt-0.12.1-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.1-cp38-none-win32.whl
Algorithm Hash digest
SHA256 4577b11e48ffaca779a874a263247ff5ee805a2736d0b9c77dd66605f2dc7c25
MD5 ebb3f13ecbe3826e585c332f18f845fb
BLAKE2b-256 487913136fa590a58f0b2941f20fd83888ff5ae6b080c6a2e8f347792443f11e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ba48a5a8e62443735443d86c86b3618524a518186a553ec1ad14305728f13c09
MD5 2d1f36a69bf10350d52b86ae0d56f7aa
BLAKE2b-256 bf0ee9f0a2795610d3d0fa12ae4537a92425634ce63d4cb61292a49c39c4c095

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 fb4118457e9ba58d3421d31f5c7524b74abbbf6d3d658b376c3c984a9f049ced
MD5 005f99e97c5f026cf990a37460ae955b
BLAKE2b-256 ec3ffcc02c67e590d528b4978b95820447b368db73cf1319403f00fd5c5fdd2d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d0f4569871e96e88ac1a0ed44615fb62d4e97eb0df7aa227e2734d3e961248d2
MD5 c2c01123b3605b36de84d2516d1474f5
BLAKE2b-256 2cbdbbbe299cec3d46c879bd398c950ac976010973757545797f7f3e18401933

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 250a4d5d68836838edceb9a72999ba386575e8d8d9bf2b37d31d6043c8dd721a
MD5 211cf8a023f54a49563f46f1b055a28c
BLAKE2b-256 5a2c55a1664a945e5d3ca6ec1e9dce4e4a1cefdef36ff4d34a327f9b1da49957

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

0.12.6

51 files

0.12.5

51 files

0.12.4

51 files

0.12.3

51 files

0.12.2

51 files

This release

0.12.1 This release

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