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!
  • ✅ seamless Polars integration!
  • ✅ define your own custom holidays and weekends!

Installation

First, you need to install Polars.

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

pip install polars-xdt

Then, if you can run

from datetime import date
import polars_xdt as xdt

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

it means installation all worked correctly!

Read the documentation for a little tutorial and API reference.

Basic Example

Say we start with

from datetime import date

import polars as pl
import polars_xdt  # noqa: F401


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

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

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

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

Read the documentation for more examples!

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.6.0.tar.gz (973.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.6.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.8 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

polars_xdt-0.6.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (6.9 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

polars_xdt-0.6.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (6.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

polars_xdt-0.6.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.3 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

polars_xdt-0.6.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.8 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

polars_xdt-0.6.0-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (6.9 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

polars_xdt-0.6.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (6.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

polars_xdt-0.6.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.3 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

polars_xdt-0.6.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.8 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

polars_xdt-0.6.0-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (6.9 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

polars_xdt-0.6.0-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (6.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

polars_xdt-0.6.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.3 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

polars_xdt-0.6.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (6.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

polars_xdt-0.6.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

polars_xdt-0.6.0-cp312-none-win_amd64.whl (3.1 MB view details)

Uploaded CPython 3.12Windows x86-64

polars_xdt-0.6.0-cp312-none-win32.whl (2.7 MB view details)

Uploaded CPython 3.12Windows x86

polars_xdt-0.6.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

polars_xdt-0.6.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (6.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

polars_xdt-0.6.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (6.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

polars_xdt-0.6.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

polars_xdt-0.6.0-cp312-cp312-macosx_11_0_arm64.whl (3.2 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

polars_xdt-0.6.0-cp312-cp312-macosx_10_12_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

polars_xdt-0.6.0-cp311-none-win_amd64.whl (3.1 MB view details)

Uploaded CPython 3.11Windows x86-64

polars_xdt-0.6.0-cp311-none-win32.whl (2.7 MB view details)

Uploaded CPython 3.11Windows x86

polars_xdt-0.6.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

polars_xdt-0.6.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (6.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

polars_xdt-0.6.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (6.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

polars_xdt-0.6.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

polars_xdt-0.6.0-cp311-cp311-macosx_11_0_arm64.whl (3.2 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

polars_xdt-0.6.0-cp311-cp311-macosx_10_12_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

polars_xdt-0.6.0-cp310-none-win_amd64.whl (3.1 MB view details)

Uploaded CPython 3.10Windows x86-64

polars_xdt-0.6.0-cp310-none-win32.whl (2.7 MB view details)

Uploaded CPython 3.10Windows x86

polars_xdt-0.6.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

polars_xdt-0.6.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (6.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

polars_xdt-0.6.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (6.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

polars_xdt-0.6.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

polars_xdt-0.6.0-cp310-cp310-macosx_11_0_arm64.whl (3.2 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

polars_xdt-0.6.0-cp310-cp310-macosx_10_12_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

polars_xdt-0.6.0-cp39-none-win_amd64.whl (3.1 MB view details)

Uploaded CPython 3.9Windows x86-64

polars_xdt-0.6.0-cp39-none-win32.whl (2.7 MB view details)

Uploaded CPython 3.9Windows x86

polars_xdt-0.6.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.8 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

polars_xdt-0.6.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (6.9 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

polars_xdt-0.6.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (6.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

polars_xdt-0.6.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.3 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

polars_xdt-0.6.0-cp38-none-win_amd64.whl (3.1 MB view details)

Uploaded CPython 3.8Windows x86-64

polars_xdt-0.6.0-cp38-none-win32.whl (2.7 MB view details)

Uploaded CPython 3.8Windows x86

polars_xdt-0.6.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.8 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

polars_xdt-0.6.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (6.9 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686

polars_xdt-0.6.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (6.2 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

polars_xdt-0.6.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.3 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

File details

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

File metadata

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

File hashes

Hashes for polars_xdt-0.6.0.tar.gz
Algorithm Hash digest
SHA256 70ef3c4053cf91c8d0f437be3267796bc74d621daf840c1bb2ffb38bb446aa0b
MD5 bd6b8304e591dea510669a1cc13177d0
BLAKE2b-256 b735e5db577be5f63078d6d945066bfe863f093f76a33c3ee49ef08aef2b5837

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.6.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cc98067bdb86a8bc582194545863ac0c265b9c3fac7822c8f9287496e92eaffa
MD5 385a0d2536ab6eaf98e0f199312c2b5c
BLAKE2b-256 e8f16ba811c6e46726af24e56fdbdc1b9ad6b953af74edc424d706e8fc8ece2c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.6.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6f579df2787a639a8541762ccb0c8016248b9af550fc48ea44bd45449b835536
MD5 e4e35174aef729b1821d35d59a245e0c
BLAKE2b-256 627554f7e9183a9af90c11e1c6b5843cb468b72c41e48d44c1e96b1cbafa3539

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.6.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 93ca92a35d503fb7d6cddca1ba621c49b74533bb68bb98ac07bff1f9bec1e891
MD5 319bd469231426924594a81414497016
BLAKE2b-256 f1ed2d518a7ae130dd778302b6fb3133d4014b8100c906e9bcb85a3611a8594e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.6.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 43e46ffd2f77ddf845a97c7c3973679cbde4817a1ddbb2ecd6bcb7923669f849
MD5 ac8404c2734e84267a977f156a6688ee
BLAKE2b-256 6aa61c448a02c542615d4b8bdbea5c6f9a121155bf917ffe85743177b61a7822

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.6.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3c1e380f6cf77e9d04b18c14c962f37072dd2786583f144f0c8f905b120ab610
MD5 ce338c8811b5f10b297d4db86b517488
BLAKE2b-256 eb9c1dbbd7f6c9becb6e18d79a01a4376a1966b543479743f4cfdb70c64c19a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.6.0-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 fdf357aea06004b42d099c26c348e27c55f4d650c77cbfaab4030dd845208b73
MD5 6bc9f17bd25adeae1721f7be4cf7f11d
BLAKE2b-256 9f4cf36ef3375715974f2a1deed476876298f32f52764c5d243470b94e8e5045

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.6.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0b1735055a69874485f80bb86c7aceb980ce9796f187aed681636b545fca6cc7
MD5 83eafd29a293b849cd7330188b1ba293
BLAKE2b-256 7fc7e8b45819ec6490b380298ee54a3e345dd50689cdce4cfdefda4908766975

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.6.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fb6d01f6e5bb7e3d00effc8d2e8b62a95a5258b44a7dc1ff657f7aebf7d81534
MD5 beaced612bec64e3011597dc0b967b84
BLAKE2b-256 5a0d8f9a93ffda89e7025108f00f4cb3e21fd2a58ab64b849a9ab278d1d86810

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.6.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d940779124e09e337f141a5f9ce5eb5e8f5716afa9292a21d44af6623e13f4ea
MD5 907e34b877bd4907880d1131d3c16f7a
BLAKE2b-256 c9b7f5e6e3423403a61acbb823170095c197565ddeec95bd6cb8f54991fe4e21

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.6.0-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 62380631d0b9191f60b3093e457a1cab02b6724c88fa192817a945969b5f8eff
MD5 b5fd7fb91be17a3b0684be2d30e8a6b5
BLAKE2b-256 52b47c2fa2c8332131cfd254d463782a4f42a4fdcdff654bde7291796f84688d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.6.0-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ede142ac05aeee720c473da14796296e27e1cc38a838416c0287e43cd016e6f7
MD5 1546afff844f09c139547d8a09d0477b
BLAKE2b-256 d4272d7cf1a1715c09e30049cfce8ce5376b8bb3ee1680fec422cdf5f2f817c1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.6.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1d7beee01c931a6b401f07bf6776c55df9978ff5023bdc74578e9efd9903d873
MD5 35a71b5136d05d471a42df710aa7912f
BLAKE2b-256 0a9ca5d7e64a233ba9f5ab32b939066048904201e723f37fe0ce23ae573445fe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.6.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ae8d00a34b8334d4062d1e17d1db05a871b373f7ceaf261ba3a61a5b8cac7d62
MD5 17dca368081c7822a46bc2e3f679b839
BLAKE2b-256 45dceaf4af5077c5a84ec1ebd81c59f7901e818ec2ae5e3088172d74fcddec7f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.6.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 aea37d809dad8bb1f32216a5c1d0a724b6bb07525c3b5a5a79cf6dd140d11110
MD5 9755d51825046471e338d40618ca3d42
BLAKE2b-256 e2b52fd68da3d2ddbd6ad045a15af5d0b6e308f3618e8d38b5b751a86f5ec607

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.6.0-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 4f709c999656cd509326b34986853861ebb5fdddf93f3a0f817183b8d0b4f494
MD5 c692f148d5266eb92b52c4b63c1d2564
BLAKE2b-256 1db7d333c55233025b32e76251d3871256542067808409d45051eac86fdb2971

See more details on using hashes here.

File details

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

File metadata

  • Download URL: polars_xdt-0.6.0-cp312-none-win32.whl
  • Upload date:
  • Size: 2.7 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.6.0-cp312-none-win32.whl
Algorithm Hash digest
SHA256 ed87e10da0665e6f3871a8f9bda68eaca5bc2cee1abaf0c3e120b67df58cf85b
MD5 47c5a48c84e87dc7355010c1d0d6daff
BLAKE2b-256 da83b6a3d13673f75db58888a5f551c6721d53f3bc75272f2c9b60e4d05ec3f9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.6.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6d43e8c8f6dc4062257ba596194fd4ae04e2a07bc7938d3f7bfef2533a03a588
MD5 f68a15ca505ba39663741138599db99d
BLAKE2b-256 edcc7413a42da36bb55905ed28e50afa044cbe60937d675ca0684df823b9f177

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.6.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1044f15ae5306ada3496dde6d22377d43a8868c50a997d77d20a566943371973
MD5 8d20ba3f9c9bb93a6a51ba30f2300548
BLAKE2b-256 3e48ec63615b409e5b552ef18829efecf1b9e70aa8fb8186627aa08ebad90019

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.6.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 460506935e1b27417b2495ffddec1e83692741de11a81c36df146011dd8c8705
MD5 16828eeaff4329b8b43d14ab49425112
BLAKE2b-256 571ab8376a380587ef4813afafc4be808193d4474e60514d9900388ddfcbe839

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.6.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 01b6c44521e645787ccc34eb4bb4fe78e169edce5aaf15c8314c0aecd212678c
MD5 74453739e4d2a5328d2452f5bf89f2d0
BLAKE2b-256 88c55876ab37da2bb95ca9dc2cd8c144535625e9c27665760e3f7445c083c1a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.6.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ae488b59f79236f320bd46d31a71140a9cf79c3ff2e1fdec9b33c29b12dc1bfa
MD5 631688d6645f5cbb384f02984b5fe75f
BLAKE2b-256 fd73b89672b62c6d2d7a2333fdbed83d3c7411f0e91e876322eacb5255fdb89a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.6.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 cbfdf9bc82ea690901f88afcc38e6171706838e6761d16c549eb326baf7dfc9e
MD5 db5aa11ff433decfcc34d00e98e6c371
BLAKE2b-256 764f8abaeb410da601a6e47feddde172a678537efc90c6ee42b58ec21b44ff2b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.6.0-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 6a674fc4b310166cdb73c0b57d938cd3f4ff84f737f0a3d208324a514ef5b404
MD5 3a02572939cc60e87bc7b53b03cb73c9
BLAKE2b-256 06cf3bd09ee95976dcece32c35b36edec42a415ad8ef0247b986829d8ddab157

See more details on using hashes here.

File details

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

File metadata

  • Download URL: polars_xdt-0.6.0-cp311-none-win32.whl
  • Upload date:
  • Size: 2.7 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.6.0-cp311-none-win32.whl
Algorithm Hash digest
SHA256 5bf07d8f6dd04aa8966700bb5d5febe180c7c2c13eada5579f0ea3ac5d0293f5
MD5 68931edeaa2e3908a9a117faf4841463
BLAKE2b-256 196de2f39fff610bde1cf7560eb3443e39907a916169762e310e494d05f63d73

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.6.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1b75d89200bed388c5c26a376eb1c3d93f4188ccdc1a2dd7da682796ca753df4
MD5 f82308cb4454b05cc1837932cc358e3c
BLAKE2b-256 bc42ef4a6a6b7825abe24a9ee1617816ba10db16920e5f994ccb428b25a4f95c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.6.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4a79b166dac8bab71f781d4eee4cd915a351c67345f540224b8d5b56402b52a4
MD5 3f7b6a32b9885eba1291c3343e4ed618
BLAKE2b-256 c31d788980309775d89ba50836e4d80dd74981ddd67b408197310d8f128fc681

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.6.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5f63a5fde7c2bad46ac5995da02b75beda1be354fc349f34958094f5606f4d51
MD5 96f3fceee404c3f228ad7311193c1ecc
BLAKE2b-256 43dcebfa3213f548dd9060e5e6241c9ad9848ee5a33230bcb7e6c7fdc24867ca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.6.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7c3b88064a7e06f9c170b385932976b247c1a43729747cda146fafa66033ee0d
MD5 6b18520cc1fe36d930837d8ec7f105b1
BLAKE2b-256 0faee1c2f767c7f977d354a681c321c94fda31f3671cfc662643897049d23f28

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.6.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4bf702ebcf6e431c16715d26623d144ab29d547e5053e9679fab9a591d929e79
MD5 906e105a18c0fe51c9cb96ccab104629
BLAKE2b-256 6c8ad244053b850725c1eb68511c0b116d4028cb91801fc5f0890b6d142a71f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.6.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a2caf8b1caffceb87c1c3b8ba3ff9314151cb7d30090cec28f23c9349ae2262c
MD5 6551233e231f85700895c52a256a7cd1
BLAKE2b-256 2144598d5a05586789052a8deed0f1f21a957b7b7dc6c29db4be987ba91d16e2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.6.0-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 6443fa57b09e8d15c3dc2d348cc1aef9fefb73fc73c449c4179e7a9c32848657
MD5 3b7003ac3c9be150eba783344ebdfb1d
BLAKE2b-256 a646433d7bfcec768d0e11a18fe04b6f8b21f4edcb0c9a44e312d191b77e5a8c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: polars_xdt-0.6.0-cp310-none-win32.whl
  • Upload date:
  • Size: 2.7 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.6.0-cp310-none-win32.whl
Algorithm Hash digest
SHA256 ff80ed5b2e46240afda4aeda4a527d3135ec38751c6a68c85e99ffbc0af6a382
MD5 09b5b006e0bd5b08e6024749cc60eeb9
BLAKE2b-256 512620ce33459e5b033dc2e13b9a0fa14c644bceb912808df76b8d351f7ca549

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.6.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0ff90cdf7672f781f609a0d978e648edf6258b23bd69d1e7c3ec5eb7e69c2517
MD5 44aa35b68bee95020f5cb96312a8a45d
BLAKE2b-256 5ac1c957619ee28739e115529c681857a4bcdec31cfa3838bd5707c44ae9d181

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.6.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d1d491bdb7b98287fa5d5aaccd6d6163c1ba34314ce8e93209f4635df5a5476d
MD5 1faea1f7f69ff44e0fdf61011453fbdb
BLAKE2b-256 a665c240d1f7f30b8538235601f03b705e89aff0b6701a05d73aa46ab6d6f55f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.6.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 988868a59f196c0276631db98012fa0f0c8438706bb14cc875a8c83f59c295be
MD5 d1ed1106f80e3805b106b94d376d2b1d
BLAKE2b-256 b43e5e748c78e8846810e17cbe311d92c2dd02af90ade34622f0a8fdd9619ebe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.6.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 52e4ae483fe7034a7d4b90a5f7933b6e4e6c6b9ccf3306b48a62e2164c5536ad
MD5 0beccb474f9a7b5109735136fb52f053
BLAKE2b-256 38ecbec283eae6d2b09a7ab5689361c0464c247b2c2429339b25bac75824df8a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.6.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a3660be7617fafae5ccc1345eda83b26e9631fe152f7a73fc8a51b5825b74667
MD5 0f6eaf11a265f57a95fdcee3a13fa940
BLAKE2b-256 1142f5895c9fb7b9c1d6b3010f2b5c5997657c8c32e087d23c4ca53f1bd5b645

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.6.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f781c792b29407978aec13ba15110bc7b84028d8f6cdbb0844871761e133578c
MD5 3ab9993e5f6c39bbf596dbba6590b755
BLAKE2b-256 558c83042aae2cb8b1f11cfa7ea661ea5a4959bd6b846b9aaaded6e5d6d40621

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.6.0-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 fcc8b4aa4dfa77e92d89d931cb6bd1477d7cb88faf6506c3e6f645281a8d3775
MD5 a3c33eeb3a1a4f2a18200384ccafc2a6
BLAKE2b-256 d109a7a8ec4ad35c09fca7959cadc0343f383527ac116c3488de5aaef0748e46

See more details on using hashes here.

File details

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

File metadata

  • Download URL: polars_xdt-0.6.0-cp39-none-win32.whl
  • Upload date:
  • Size: 2.7 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.6.0-cp39-none-win32.whl
Algorithm Hash digest
SHA256 73f2cd720e1c319ab57e1762f13fbc89f17fd912d9601723c30de172b5211375
MD5 98393a428b2dfd8f4b9f8d86ff77cdc7
BLAKE2b-256 b9ff28381e1e7ae675e5b06abeb8589275db784a51479376034d89461e2adaef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.6.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 014927cd3fd8191e677e21c47246d13913daa53f58314f09315a987475f5552a
MD5 6dace182ffffb551a1ee8515c4085f4f
BLAKE2b-256 9c7ac8e654f21809d6e3f0f6681da06f8c05e7b88cca58c58c110d463f6e130a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.6.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a83aa21213a99b0d52dfcec6f49a72ee69618d3934d87d8a76f5f6864ad37216
MD5 b784ba68c6247831b5d330aa5fa9aaa1
BLAKE2b-256 4b176844befcaca83d1648e198da25d50f4712398b69962046f2ddd34975bd4c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.6.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4d6ca570a35b019585b77a27f28c1441c50a210f1a5e8946b99ee53bcfd937fc
MD5 63eab4ac0cfe768be332ab7bf9641915
BLAKE2b-256 a743b66e686e07766a3ea108740bf8bfd978a2df9102342c41a7c09bdafdcda6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.6.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 baf27ef667221662c0d9624502c25b9513e05a39aaeed2a11af9cf6d32e505eb
MD5 6431d59fd3816555a9f312f848dff9fc
BLAKE2b-256 d0955fabab4c96aa3e3a6124c27ad3385f8a485f85203cce7e60a46861993f36

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.6.0-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 dc0f23753b82bce2a4ba6596e6a9666114527e9a5c20271e25e28202c72b521d
MD5 9af9dfdedd570b7cfc86787e78cdd68f
BLAKE2b-256 2c4e525c43d08ef4b07a527391d8db5a5809ca5f1333ae902870055eacb51a9a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: polars_xdt-0.6.0-cp38-none-win32.whl
  • Upload date:
  • Size: 2.7 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.6.0-cp38-none-win32.whl
Algorithm Hash digest
SHA256 e3fe047b1de57f8f30b69420776758c2aaddd627f9aab8add9ff0a5a08a6cf74
MD5 2067e3d4a51942b103f8c0bb6935f452
BLAKE2b-256 ffae05048fd7705ed91f851e0030b9776c53e71454c4994d476d8cf686915c19

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.6.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1e0788d8396a7e1fa2a5aab142963f2373e6a85a8eac04b18f48fdf4ec5f0f83
MD5 e86ca7be867dae1249e35bee0ce7b8d0
BLAKE2b-256 27a90487745944a46802abda0a3bb4f25112f6d17be9ef1bbfa2cd5111898e23

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.6.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 83f60036b2be295b0c1606dd20ab7be8db6b6b2be384c0aae791f0302f9ca919
MD5 1bd7afac81cef7c1a10744091898c827
BLAKE2b-256 692d374009e1cd29efd6666cb5c68b6579d6c2dc239834ebe5b29943b34f11ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.6.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b200a8187118c5cebc103420536fc63e128f8be12cf26d0859f3e89a6b3e8f2d
MD5 26f8ef19801f4fd06068f5cd3408c07c
BLAKE2b-256 249177e8c79cce3c3561293679e622568a6934705f3d37ffdcf59a30a20f4590

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.6.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 15909102f087a95c58242f64ad74c7e519a4fee89184cb6d9c12168713696dcd
MD5 b05afa4238e430f9b2d455cb5e0538a9
BLAKE2b-256 20d2188dab899ae56ca454fed8d682c3fef06f548d614939ce01bc40e9dcee67

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

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

This release

0.6.0 This release

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