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.5.1.tar.gz (970.9 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.5.1-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.5.1-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (6.9 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

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

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

polars_xdt-0.5.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

polars_xdt-0.5.1-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.5.1-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (6.9 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

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

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

polars_xdt-0.5.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

polars_xdt-0.5.1-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.5.1-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (6.9 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

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

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

polars_xdt-0.5.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

polars_xdt-0.5.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

polars_xdt-0.5.1-cp312-none-win_amd64.whl (3.0 MB view details)

Uploaded CPython 3.12Windows x86-64

polars_xdt-0.5.1-cp312-none-win32.whl (2.6 MB view details)

Uploaded CPython 3.12Windows x86

polars_xdt-0.5.1-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.5.1-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.5.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (6.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

polars_xdt-0.5.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

polars_xdt-0.5.1-cp312-cp312-macosx_10_12_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

polars_xdt-0.5.1-cp311-none-win_amd64.whl (3.0 MB view details)

Uploaded CPython 3.11Windows x86-64

polars_xdt-0.5.1-cp311-none-win32.whl (2.6 MB view details)

Uploaded CPython 3.11Windows x86

polars_xdt-0.5.1-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.5.1-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.5.1-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.5.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

polars_xdt-0.5.1-cp311-cp311-macosx_10_12_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

polars_xdt-0.5.1-cp310-none-win_amd64.whl (3.0 MB view details)

Uploaded CPython 3.10Windows x86-64

polars_xdt-0.5.1-cp310-none-win32.whl (2.6 MB view details)

Uploaded CPython 3.10Windows x86

polars_xdt-0.5.1-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.5.1-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.5.1-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.5.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

polars_xdt-0.5.1-cp310-cp310-macosx_10_12_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

polars_xdt-0.5.1-cp39-none-win_amd64.whl (3.0 MB view details)

Uploaded CPython 3.9Windows x86-64

polars_xdt-0.5.1-cp39-none-win32.whl (2.6 MB view details)

Uploaded CPython 3.9Windows x86

polars_xdt-0.5.1-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.5.1-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.5.1-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.5.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

polars_xdt-0.5.1-cp38-none-win_amd64.whl (3.0 MB view details)

Uploaded CPython 3.8Windows x86-64

polars_xdt-0.5.1-cp38-none-win32.whl (2.6 MB view details)

Uploaded CPython 3.8Windows x86

polars_xdt-0.5.1-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.5.1-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.5.1-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.5.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.2 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

File details

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

File metadata

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

File hashes

Hashes for polars_xdt-0.5.1.tar.gz
Algorithm Hash digest
SHA256 511f4834ae6b0b42ee9fcd1b5b3c2af3537162cc6c9a69b0c7ffc37aa48e55d1
MD5 281b2912e52e8bd3a52e6d1ca3660df0
BLAKE2b-256 d1c36da490282d3a8a202820eebe96e5b23057363d3432a5b48c4031e91e11c2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.5.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9311747fafff6e889ca5a874fab8613bf8f5b475d16255a030fad35a217f95b6
MD5 15b95941a3072529409de11bc941e59c
BLAKE2b-256 0c9297b4488142ebd6cb081d88a142dd2f5298c9ac5df07e5d8972787350a6a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.5.1-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4b081f8560e34e3abf5fbbb4eca89417556499abd530958a7b039c88961db374
MD5 6b1e364e4ab1fc3508a068a9c8eda290
BLAKE2b-256 3a13230ca9a04c74a9b650ee47e699cbc6257460bcf0dcd7243ef47a2fbae046

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.5.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7ec1780581eca4d4850cd10fc1492942cfd586167ecd3d02ff87537bfae3da32
MD5 7522f19bc8b3db3cc87210c9dacb0440
BLAKE2b-256 5add7ddc6726e78449174a9954bacb441cef3b8ecfdfd288e54ebf3d76a37088

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.5.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ec164273dafccc11193b6dc4f07ab212bc88a543ebb8d5a28c89619fbcd5f251
MD5 89a6d3416cf9f78476b26f60ce6b7753
BLAKE2b-256 0e88c42c2f496f49413eae5a0e70c693eed253c5c76f87b90f3d8e6348d3371a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.5.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cdcfb446a66fd31926934ff166b40696c064a39849ba044b1574d7a319e79e1d
MD5 71e98d7edd30fd74824ab6f94d74d560
BLAKE2b-256 d5a1eae5a1ca33e788124545aa48f3c8a961387ffc420ad456edb11cdf8ae9b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.5.1-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 72b407ffc7a063d607c9d42fdaabda385bae596992d014060b3b32baea33d277
MD5 d90f447bd25115e70b52d4c6858061f6
BLAKE2b-256 5e532d6e069a46d380075189fd46cea6f8cbfc778c7fd57d5c5a6a8400f7c657

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.5.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d2ca768ae300223be46821419a7faba2277589d82975208780b3d1c5024d5e93
MD5 6f1ccb90801f5b512afb4b76cff8dcd8
BLAKE2b-256 1b5c417b1023435bce27db25a67aa5358ec8201bf6cf39164ef956174999abef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.5.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6310ebb141d5f6740ba18fd4e8b095d9c47be145ab6ff831900ab944e826ca9c
MD5 fc83c6e1a000390aeeea32b254ce468b
BLAKE2b-256 3d964c2ddef76091a719fd6557b36180d6bb6bcfcc0b5e5c0fbfc9d0608fc0e1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.5.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1e9dc960ace3f9ccb6189accdba047c88e72ea8fa34c2636b1573d9efa8b70c7
MD5 4cf922e1742cc6ce5e07916e33fcf482
BLAKE2b-256 0796bcbae0154e8b8e444ec60eedf15fe5d3c562121fe69cfd315ebc04ade8a5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.5.1-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 256c61d28ffb6cb4525da33fb709d8e15100b82e424ed6e48be31a6ab9b0b36f
MD5 3abcacb3722c21aecd4005c05fb6b6e8
BLAKE2b-256 37d8396d8627d58ab9fcd639c6a93ff144e1fde0aa9aed8d359c444a7a36857e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.5.1-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a8c95ca2e66d33c4a6ed9dac8451922f673c68424273cd60826df956e3589fd9
MD5 0eccb41511b2fe60e9f9c43d729124b9
BLAKE2b-256 e656eff007418b172e0d73a255b473786b74eff9ef26f2a8e44a7969c164dc14

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.5.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1e5c57e03e6c7bb06d5530ce0e79571560f330fd8e744422061c3c92bd7d83ad
MD5 8f37b94e63d07ec99a476bf92c22b820
BLAKE2b-256 3a6a90bd7623191a0efcb4234900504643ddeed149d1d521ce245745b77b7a87

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.5.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 81b0640827920c5b61e5937e7874d545f143bd3cab74f1c9891315ee3a865964
MD5 41c12184bdd617dd720f251b7fe3438a
BLAKE2b-256 83c77b27863b39ee6a6f936d7b85c4b98b3ccb6d2bd8431cbcb97b74cba932a4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.5.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d8a9eac9fd101e0d39ea5f155886d09b918cdc23c6068e8b8c33200b1cef207c
MD5 baec9a281845f31520a3020a3a77a439
BLAKE2b-256 897e30b248db7243ae064b7497fdf156ab9516aeee108195d33fd3c5a4632272

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.5.1-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 64d1ebdb1efbbd07664d7242a5bd4ce36685cc80ab8d08dcbfc1afb16060dcd0
MD5 3a900e3bbabcb52e3467fc9027d22903
BLAKE2b-256 2f8a14872eabecd773a19c1907ff02156925fd7bdf33a9b50a9bf04609afecd4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: polars_xdt-0.5.1-cp312-none-win32.whl
  • Upload date:
  • Size: 2.6 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.5.1-cp312-none-win32.whl
Algorithm Hash digest
SHA256 368dfd3a8d2947ab52468aa9429fc7d9ace173d87f19f2f04cbecf3366ec0e0f
MD5 e43f3cf9e7251bda641dfa2828ce4b82
BLAKE2b-256 ad92fd1ef69391611390b57dcb8df4c9eb801997dcb978856773c89cc5504b04

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.5.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2af7229c3be061d88d3ba7f071cd2ef7a43263c2dc9ff51c7aa2d165695c5648
MD5 86af8951cde9bd7ccde8f09c5287d307
BLAKE2b-256 17bd5b8d1ab421af562738c2e4e2c1b45c4e9dcf3d2655393a9fcf5e533a5c27

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.5.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 493b3ac0249572027a1147c829c3767784745fd5f635fc77f75314dbc597ab44
MD5 f3cba6a2702afc819534b1f26051098c
BLAKE2b-256 44740efc6976b89e9ae58ad6bd79055eb5de5a4acab7e93b332b8e879bdc7cb4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.5.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e955c75e3d48d272f8cfe3ff4371977c871bbe2ad254f59c36d294e869c91bcb
MD5 279401d2297bdbb3f79d2042855e7154
BLAKE2b-256 28e20d964b0a325d93f86766e19788f06585ccf82c89beebf33ce25665dec4e1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.5.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f41d75eceef8b01db04c2e794bda554cf2525754a37721fd0eb4d9057ea3f4da
MD5 5d558486ded677a2b45011ff5f22a47b
BLAKE2b-256 147956e261843f3c88a0c5fc202b4a566da9e224549da30655c0823d961b3b21

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.5.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 549f841466c32408bd423e315ffdd3c10e9716db449a934b8832a70a660c1a96
MD5 1dc6ab77e379a7cdda96a440fa42be2f
BLAKE2b-256 4709382aea364f8f30e6f4335789f0c838f4970e981cce4c2b57bec46e66a298

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.5.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1587f55090a76003ecdf660a8ed5d588a674577be11b8710028d21d40c78b028
MD5 fe0a3da7b3bb8fd68428f04587ad7843
BLAKE2b-256 b6e19beff672bf132eedfed0a7d4502bce231db97eb399a3ef7935111127380d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.5.1-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 0c27bf3f65335543472c036e31352aa5732d09493081a85c7ae45d6b70990420
MD5 af256bd7d95fb4dba20ad023ab2f539b
BLAKE2b-256 dd5f28c5f2d05fe46980ed71c47b72a6bf101fb260a82d3e91a9dedc3c78f403

See more details on using hashes here.

File details

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

File metadata

  • Download URL: polars_xdt-0.5.1-cp311-none-win32.whl
  • Upload date:
  • Size: 2.6 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.5.1-cp311-none-win32.whl
Algorithm Hash digest
SHA256 730e4f9015893fd54c5fb59487d3b05be9d433805025b533cb34766cbc72524d
MD5 318d7e98ea94d30686901165bf651eb9
BLAKE2b-256 14d541d375901114a0f45502c96ffea9449b0c30679d467e19e0561c7368201c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.5.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6eb4ea04af2a8ef4c5c7381778140349d4700d59ad23a8b8fdd32f7addac5cbe
MD5 cfa9802fde7d5401a3f47c5e6f08187c
BLAKE2b-256 8f032eb9d48feee7e3ebfb49ae8b21ae8a302e6fe9b32cb0f60291820450d1b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.5.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d48a6e408ddd6902cdfebe799882ab6642187d24b9bfb5b12392b61be79fb480
MD5 0b892e62c7c6d29d760f1d2f9563fb26
BLAKE2b-256 6ff3427fe0b9b0418b46bf2325006549e9c57305213cf0615832c3ba5f04d5d7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.5.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a9d73fb2eb815aac6c06962b518527f5333ba527844bf8265473db72c324121c
MD5 676949ad86acffac60a9611e5b6a9eef
BLAKE2b-256 d01c453b9cbb66b5de00ec7f3858558a47cff9e12b01f2a35129b732bd545cb8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.5.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6770e65c7edb0893baf3cfc55ff98065838402e445ba6373c56ea0ce4d765c1a
MD5 08b6de4bef5aed955227826df160cd4b
BLAKE2b-256 90229b7ea33b807c6e92490fc1602a5df109627b7f9b2da6afbaa02e8298b987

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.5.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2fda3bbbf2875f7a7142acd132595b0499b868e9fc63cb9fcae8d2037f0ea6e6
MD5 d83c0f2a910c4ad9526d8dc8db81463f
BLAKE2b-256 7802bac41f8b313060e588fcac61a2784a31719d9285778a6d86bea8547fa148

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.5.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5cd431f78fa64d498026e1c23fc8b37a6fd7dbede170ce99f1bc0492a226fa2d
MD5 a1880e692cc246ee3cb6c208ba2788ab
BLAKE2b-256 6573cf717e544a3a832c7574a0bf43646b18940b15f7707270994db990bdd41c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.5.1-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 8a64d1bbcacb7d2c28ce87aff1217a0d9bcaadb1acc32e9354d9c0cb070b850e
MD5 316ac077193c9b6c4eff754167238d8c
BLAKE2b-256 75db7fd4f00e52baf3d9995be5f7ab5610b19d7ba32b97ebc9f934781beda488

See more details on using hashes here.

File details

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

File metadata

  • Download URL: polars_xdt-0.5.1-cp310-none-win32.whl
  • Upload date:
  • Size: 2.6 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.5.1-cp310-none-win32.whl
Algorithm Hash digest
SHA256 90e6cc00e6c5c0daabeb514572a645c779451f18dd7fce54513e9c971da40c5d
MD5 d73ecb5e1ba2f7f87194f8ff8abfeb2f
BLAKE2b-256 a804e1c95720a10f3a3fc04680929eedb30fd505cc12992e5f839a6f94e3e8b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.5.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b49b7029bf3c65966ec2911d34f50a0b09c8dabc7c6d9b8a86380264611a02ca
MD5 90286a82ec55a6f99388c944175e6dde
BLAKE2b-256 e94ca828a551f42622f41286adf8f50573a02c6006093eff0f3cd0e17cbe5367

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.5.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 bb34a3612001f3370307d248a670df57a92277c1be6a9f51506741b5d419151d
MD5 a96cfed0c242629a4ba79428eff36f92
BLAKE2b-256 e4ec7b6ae4deaab0c35b0c12af4f271a6f0198290e062e442cdb5d2f283dbc0e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.5.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 180d818d418156fe5555dfc66c27d46a86dcdc1205403bdcb853bf5086f91181
MD5 14a65b390e7288408ce09784a68d0522
BLAKE2b-256 866488edb3e6d2feeae931860735af90c49c5c1ebb216d6b91af1d3cded884ca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.5.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a9f0665888141184cfdc404dbeebe135a031d2d746ab363fb26166c3a01d80b8
MD5 11f1cb984f5e23f782cee15f997f0570
BLAKE2b-256 14f160746f5599975a7a639489b45c9604d8703df0de17a1da35dfa82d26681c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.5.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 23acd235d240d4c0cbf4c8faa9e5f6ee685cf4f4c16832eba97bb118cfab0d4a
MD5 6596c4e51a6226b77db489a218c5c295
BLAKE2b-256 0f18409f6dd2a04c52ae712d08ca1dc4637a22a7b0d803a58e0edf4f8a81cee1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.5.1-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 55d9db0631475971f944eb1bdc865d268e46558382da9c1a3eb761abbc8bbddb
MD5 6be453d8836948ae96eaabdeeda0ce30
BLAKE2b-256 75951676871743dfe1890c5eeba969d6696962116f9d8c40ab92d0c9ad28b682

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.5.1-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 21212e4e93e94dc8ab9da46cf3c6c81ccd8e44da08799385e9ce80fe17586bef
MD5 e84570c00a8fa3169d08dd8fe03575d6
BLAKE2b-256 709ff59a2924efa9c22c54908c1d6287e320f4809756ba4a5edf37defd302617

See more details on using hashes here.

File details

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

File metadata

  • Download URL: polars_xdt-0.5.1-cp39-none-win32.whl
  • Upload date:
  • Size: 2.6 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.5.1-cp39-none-win32.whl
Algorithm Hash digest
SHA256 c4672a5c1b18ac7d842dc381d3adb288090e20fc8dbbdcc0923fa2c813c06083
MD5 106c18c5a3fb462636f13c5273747a63
BLAKE2b-256 bf1837df9fbb30c71f56f2d58380c9500c1dfaeb8173d769ac19a4e83ec93134

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.5.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 299cbc076a19479906d4c53a8dcf3fc4768ece114a9f8a9fe797604806d444d9
MD5 79fe1eef215e2018cc64432350e832ff
BLAKE2b-256 57bfe6a700b79c1fa03119d77fd579b2acd42690782e984c9c43585288442079

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.5.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0ff7bed715866dffda52cf77052299a5e2633bcac5836ffc0ddf27e393bcb4d6
MD5 4c7e4c0cc0affc054efa9062681e25f9
BLAKE2b-256 3ca03f32c199dea198dc0def77532076aab879672800656a66c2e25066712d59

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.5.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 453bebf5c30508888b78fdf118710bec9c1fae86cc05bca7c308cd3965f47c1e
MD5 70620075e79771b81fa4a82203f3a27c
BLAKE2b-256 6758da79cf04b37280333990ea2185ba3bd72797d72f06a4055988123f7cea5c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.5.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a4add77d12ba58f8a424723b2a0061ef516279720d13a57f08cac770bd03d72d
MD5 6f890a7baf4a9f574114c3932806848b
BLAKE2b-256 43a1243b142c858a0485afde8f3d529e459e3a35277d49648b17fa3620ca666d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.5.1-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 917c6ab70cd4573933c20c4ab9e7b5568f40b0a6bfbbe3095113dafb0e5e96a1
MD5 78e66af968df1dc888d2fe2bf660914b
BLAKE2b-256 c1f2693373fcf9b7e79e8b36e548e12a1d2e0f7ed5d2be179f1321da7c7e2180

See more details on using hashes here.

File details

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

File metadata

  • Download URL: polars_xdt-0.5.1-cp38-none-win32.whl
  • Upload date:
  • Size: 2.6 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.5.1-cp38-none-win32.whl
Algorithm Hash digest
SHA256 6f9f09b1232cbcd8330e87c8e0978d32d972d742e359b2a104adbe4a66afcc3e
MD5 63663105a339d35899c15b257818f4bd
BLAKE2b-256 26950819bd591006a76c89916c89c0fdd87cbf18d2dcb1bc7e6cf2f356f48460

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.5.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fd9901bb34c4e707685936cf8695fb175daf5da7a5e176df6e71ad373d5e5da5
MD5 c428cdd3de54763dbc5dc168b8ad0053
BLAKE2b-256 505f2416a6908a01c0bd52f9fa7b7befdb0f4b615e0cf7a522e6463f97337dc5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.5.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2871e16c3be8ad031eb0b23fa0005857a918690501091029d982214ba9cc12f0
MD5 06c027901fc45b5e7ef295098f7e10eb
BLAKE2b-256 c51f1212db4cc2cceeeaa89299e1643c39e24577ed53e80abf1f220c57199cfc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.5.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 eb0d8b3de5f74b8c25a29a2a55f735e36e8b54d0ef819adae9b27cf1481c5ea3
MD5 5b1e6762ebc680d90f08539cbf0549ce
BLAKE2b-256 70c690aedb0fb053c52e23df6faae053636540e9ba35a4581c841c0c8a67b642

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.5.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 93b4d0d8530b3dc9619165cb3d10162e114e8cf6c1ee8e6b4786a8dc7e141312
MD5 b6b5ff5aec2e4d88c17550bd70ce90f2
BLAKE2b-256 162bf934e576c1dbb846aa82d210c435daaedf4271de39abb44b253a8156b92b

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

0.6.0

51 files

0.5.7

51 files

0.5.3

51 files

0.5.2

51 files

This release

0.5.1 This release

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