Skip to main content

Time Series Extras (e.g. business day utilities) for Polars

Project description

polars-xdt

eXtra stuff for DateTimes

polars-xdt

PyPI version Read the docs!

eXtra stuff for DateTimes in Polars.

  • ✅ blazingly fast, written in Rust
  • ✅ custom business-day arithmetic
  • ✅ convert to and from multiple time zones
  • ✅ format datetime in different locales
  • ✅ convert to Julian Dates

Installation

First, you need to install Polars.

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

pip install polars-xdt

Then, if you can run

import polars as pl
import polars_xdt  # noqa: F401

print(pl.col('a').xdt)

and see something like <polars_xdt.ExprXDTNamespace at 0x7f5bc943fc10>, 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   │
└────────────┴──────────────┘

Read the documentation for more examples!

Logo

Thanks to Olha Urdeichuk for the illustration.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

polars_xdt-0.8.1.tar.gz (975.1 kB view details)

Uploaded Source

Built Distributions

polars_xdt-0.8.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.8 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

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

Uploaded PyPy manylinux: glibc 2.17+ i686

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

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

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

Uploaded PyPy manylinux: glibc 2.17+ x86-64

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

Uploaded PyPy manylinux: glibc 2.17+ i686

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

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

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

Uploaded PyPy manylinux: glibc 2.17+ ARM64

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

Uploaded PyPy manylinux: glibc 2.17+ x86-64

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

Uploaded PyPy manylinux: glibc 2.17+ i686

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

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

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

Uploaded PyPy manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.12 Windows x86-64

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

Uploaded CPython 3.12 Windows x86

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

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.12 manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.12 macOS 11.0+ ARM64

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

Uploaded CPython 3.12 macOS 10.12+ x86-64

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

Uploaded CPython 3.11 Windows x86-64

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

Uploaded CPython 3.11 Windows x86

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

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.11 macOS 11.0+ ARM64

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

Uploaded CPython 3.11 macOS 10.12+ x86-64

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

Uploaded CPython 3.10 Windows x86-64

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

Uploaded CPython 3.10 Windows x86

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

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.10 macOS 11.0+ ARM64

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

Uploaded CPython 3.10 macOS 10.12+ x86-64

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

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 Windows x86

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

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

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

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

File details

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

File metadata

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

File hashes

Hashes for polars_xdt-0.8.1.tar.gz
Algorithm Hash digest
SHA256 4dd058095919bc6b3407b69bd8e2fccea43cfe7d190f6191235bfe22a823200d
MD5 4bac9d0aa821aff161e15d6cb4aa6e4b
BLAKE2b-256 28fbc041b499fd3651da66bc032cbfd9f7f6b4e391408c04e7c8966d9a1904ca

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.8.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d8dc8d7edcb411e2c91e101ba312015afb2ae4691c6ac7db77056c8c4f6f1c5e
MD5 dda2dd9935851a9cc31279db02175b27
BLAKE2b-256 ce3924f6dcc140c3512a659e05caaa0ce3b5472d696be9996455fb46f9f9cfda

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.8.1-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d1f03e910566bcbd003749ae9477d02c1306ace112b08f390fa70eb7be8f619e
MD5 ba2d4693ccf3c048933b48036649031e
BLAKE2b-256 5ed4592123801e005313f0346a3ea53e1dd7d00a8aec414b7dcb0e35d2557dfe

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.8.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9d942994ea49a7ea90b9b5a0e7bebbb12c1ac183151033b4a4fea56d39a2aee0
MD5 3f2d926d9832809bba51a58e7030e9f7
BLAKE2b-256 4f2ab859ac411abfead580371ed103e298722fe5ab237ca25c4c8248c869dc0f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.8.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 57b6bf22014d34a309f0549fb32a2e3f8f83bd05658e2308f6bca8fde5a645f6
MD5 bb90f7b3505afec11982e0334a4c9486
BLAKE2b-256 ed2c7cbc7810590bfcc617bf21909cd07dbbb54fda96526f2dda4c094215d05a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.8.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 80cbfb12879783416d24be727fa1002354e98fee8ee024db5cbbb12d69d2d284
MD5 2bae67110b8d039989846bda8eaad7b8
BLAKE2b-256 8b1ded60d1683f1e6a5cd7303188b42cda08148ca89eabc73b7183ec4e012606

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.8.1-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 38e14f00f2ea2210045945978699ffaf18ba5fce22d783f6049434b47773b5d3
MD5 63dd6770154c7d39e70d005fead4e711
BLAKE2b-256 fcb07ea0cc62c6973cff011b40a627cd98e0c7ead8b379f0aa7f0c56afb48783

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.8.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f98daf35ca75fa249fc48d59f035fb11c68f0279fd3f47d0d57a931da5b7bcc0
MD5 1276f7fd371fd70d325342f5d9a9420f
BLAKE2b-256 8cdfac6a905b314bbc568d41da0f0599fca5e3fe8bd85a794341b0f3bfb35781

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.8.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b5362a59cceec0f81521aa6494ab3b93f41f0730205f3140c69564d6efd1f3e1
MD5 ed468378f62bfaaa55d6814f4d14fc94
BLAKE2b-256 081a8fbf729aeac710f862ead9fdd9cd39f6c45be23a1335fac0ef44109c5a75

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.8.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c3e6e2acace87fb840c6bed3c96278f198e3e196afe638477d8a020f10754728
MD5 79cede71172bfa57ded6a601bfd7f209
BLAKE2b-256 27271b76d9c6b4ccc7a15d17a7d40ce53cf14459e6a0c04bd10faa1898f0d819

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.8.1-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2804784a3422f9f9c29b91d9750ea4d2ace61a37741855049791ceeb106eef1c
MD5 03be921ad5824bfb2bba536f8465d19c
BLAKE2b-256 cebd6ea7b964a0e471a11ef8efe38bd37f36e6523f636e489691c31e405ea24d

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.8.1-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 cf6c11eca5cb91285eb70f751e4004272e13cb51003d9f2e0bc80e3bf619882b
MD5 6703d661d058428781f057560ce8ebd7
BLAKE2b-256 1ae584538fcb7b6dcbbba2eedca5d43ea64b6e196889c71c4ebc8f712dc5f87d

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.8.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fb16752039922260a11cce6ed3aa5b9adfc8dc7a147c918009e46cb81c9e6be2
MD5 035d588d1a29d472d1e849520aba3395
BLAKE2b-256 e38a4fca5f9b11c41437d1aaf94e8c94b36107ef8b48e14b465dc88b31b48228

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.8.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b5a9a25bd5e3e564c7a65fcdb174ddbc5e385ca199665c7dd04b22900945de0f
MD5 7483b847e1f21cda380498fdef30ec26
BLAKE2b-256 13d5718384fe746de01565c5476d3cfb23719d82b8e217d9578e3de31e7e890c

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.8.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 71b9e35bfd55415169279b6a5de39a474a3281090f59ad4c95e586402cedb192
MD5 cf9b2bd4e2e8bf88c86baf5b7188d9ec
BLAKE2b-256 16fd06bd22d6f6953ed8e637ec6f28e660890e99683e5590687057986ff9821b

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.8.1-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 c8e8e70c02559b803041d5ab70b8e646530ca91c188b81142137559c94a93ab7
MD5 63babee3548d2f00729f79dec37766fc
BLAKE2b-256 5827352ea8f6d7d21445335a22da2d6d56a613eab0f118c9c6bb35dc5991829c

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.8.1-cp312-none-win32.whl
Algorithm Hash digest
SHA256 ea952b0ec30141af0f22785f5c5fdffabe1e9e3af1e1ddfb97a1611f38dbf9b0
MD5 e2ef9c5c9d72e133e4e44402cd3a88a3
BLAKE2b-256 50c1ac6a7588cebd3037451e62425d4c48df3b27e20fc4122020206a193d9d99

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.8.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a7edc5bfcd4b783662fb5b019790aa61cb1a7d2ec08f07963c0d8f84637d8c85
MD5 7355396d0e6a904a3aff99c633b08229
BLAKE2b-256 fbf47fe7c161f80484fa6398513e32a117d71120b29f3092c57fef2c041c376a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.8.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 49f88fc38a78c2c2f9b2fff5b7a614dbc3e541bd5825e3276dd6f9d8ec56aec9
MD5 b8f7b84e70a2e5bb0b0a47d100a2632a
BLAKE2b-256 bbed113aa780ca63d5d6f15a020a0fcc16a440156b86400e46252eb2f4b79335

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.8.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 031f7826d2db20ce813e17315e9de0a885d7a738897b664f5a4516afe311c537
MD5 0acfdac5727deed912938643238a657b
BLAKE2b-256 423ef40f36fc48ac13bf8e412f948b2c98302b4d34654a0e9342eaff0a7568ca

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.8.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 47cd651be01cf692a44342b1f35b5ebb6481e6f1c4cb9bbaf1f024d2bc93864b
MD5 945eefe76460062b282b586ab8d2cda9
BLAKE2b-256 2ffb40f1821e501a760978c9ef7b87540c1c533ce85f00cb75c8e6141f41c632

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.8.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 85379c75cd78d2c688c04f0ad5706c5f1bffa9b3fd9d373c6422af6ba1945cde
MD5 5bc09353b5114cd00eb4de8666b881d2
BLAKE2b-256 81a02a1175fef9d0fac8f5bb994bf906319dcb6b82e001d6ae438e0b6d82b703

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.8.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 610757a6f3accb9445d9eca0b0e279f12d25ade73b0416af75191222441537c3
MD5 1bde8fe79c8ae2d3b4e8a01f89284e6d
BLAKE2b-256 e202862fd5191e8336aacf38c9950caf7419f4cf243a36ef2fc6832bd05ee369

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.8.1-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 911e174ec77391dea80fe1a09367277bd206dcc052215f2b7f0bbced0991db8d
MD5 a91f1f095fde53f7509de508d774eb8f
BLAKE2b-256 c392b9ace3251b9245e4482d568a8478969f05f656a85df57f0fd5c4874fe90a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.8.1-cp311-none-win32.whl
Algorithm Hash digest
SHA256 1b6915da41ea944f7a505319cc3e110c7997b21de190000452db6c1ced9ff9f2
MD5 f9b5a9b833d7a831509ce1c5b85ed77f
BLAKE2b-256 a0d18196efa13438622e6892ce78d8d78b76e68971633e7bd0f47b1fa13e16aa

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.8.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 73e6bf5a95bf6be0f4e8bb6e6b85f8280e978c8f97c9334114d61a6af68acc21
MD5 0768cfbc8d8b97dbb2efc8de8fc204b0
BLAKE2b-256 0ff5cebd1ccd1c890b92c5e2ff0f4b5ce5622ca5aad58ea5165a90093cfcb658

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.8.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1b98334c5b471235574b7505ffc54eb2ef0f75bf67bea4955dcaa5f575125e21
MD5 991e13415c8366589648da7a444cba23
BLAKE2b-256 f296310ab766824ce199d39cfa676db344d60e8ecc3b061b06c13d7aee0f2495

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.8.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ea1b0c50ab3badf308c330cfd33d6887dbd7fef47e67b5fbf9a047bc9d2eab2e
MD5 430e5f2542004014445419ae15ca69cb
BLAKE2b-256 d8e1789346dc489e6a92dc3400300abd4109b3cc3879ad2cda15e3f3e6309047

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.8.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e5366d7a7de204248356420c4b8d78c434ccad4f4d93eb2a6aa721d02785996f
MD5 f77132c2e530688beced33008bda02b4
BLAKE2b-256 c3d0010e656fad43a948f99035272ef97682a1cffed418aa36ebe4a56e10c1ef

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.8.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e5fcdef912ea04435a6a1f228efc666e2a27b6ef35e5a2bda93c42a2790f1903
MD5 715931a60c806dc963201c0b8e7150e2
BLAKE2b-256 2df4677b4e5ff045c6210f0b5c2aa038f27eb3cb3d5ae12f8b4cb1d0f2a563f8

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.8.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7b5897fd3a73c747cb8b9adfb68eff7b4ea41002ad76949517bea7d88dd7a579
MD5 a0f29512b7f81d1e7e0c44d87b8b72f1
BLAKE2b-256 190be15a6d23a5f94371eb2a8005ac55e9f379f08a0cde26afa825ff95c60134

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.8.1-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 aaa77cd20c60b0e56743375e5e4fc081a64c62487eb6e89c4e6a40ba2859a7da
MD5 911fdfe0adcd83b8cd52c4b499596fc8
BLAKE2b-256 6f90d0ef71be1e00dc5e83b57c30e4ffbc541bdf83f1f7086dacb0d72621ccf7

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.8.1-cp310-none-win32.whl
Algorithm Hash digest
SHA256 f0d759ec3542698f18db10227a32bb034d2409b817b44b77b23741a03e13d63b
MD5 a60d8f28791926ebb1e298ba00216092
BLAKE2b-256 8796e0841afbfcad7282777bd7d5c37d6839ac02c29433bb77b4cadc30e88ef7

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.8.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f5d92dbdee9bebe4e0a0c5ed5fe4caa2c336c7d64612a186c310f0b1bf6ab16c
MD5 7e134b8f2e5430e148cd03b2f837e202
BLAKE2b-256 a553c86f44c7b7dee63b5fefd8fe34a8ae20db158588c18ece878abdb0d9a347

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.8.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0f0b72c2a898d9792002f2265ebd6af2622214856041467aae944abd77b98942
MD5 6e392a1c0bc56de14615b4ccda9d859d
BLAKE2b-256 3582247cbe0fb171ecd60f369e7e6aa1933013b37783847f61a2384c2741beef

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.8.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3c14ccad62b666a8263bafae94f94c8c73c7f11aadc862a1c56cafd794b41453
MD5 40cb0b918688452537fa38dc16d7fd36
BLAKE2b-256 bf6ac49d39458efc9a762999e864b0124aa37ccac58a8d67827e11aba5febb8a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.8.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b8f8a71c95ff3ef6baa61129a107058e30e15c8b062159dfd488b9965c4b2c7f
MD5 fb4ab6bac2749016f8e2b9d34a82af17
BLAKE2b-256 31b892b21476e1a7bedd4440b2cedf986b8def07233e34863c57f924e149f65e

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.8.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a32ee6682fcfdae8c099a1c87988c1bf457e004ae2656661c5ebc55d6ddcce07
MD5 ef08561db69f7a45a8ffa1474739cefa
BLAKE2b-256 412f30ad27fa2df5d7b9ba0c978c3d5a88d0a105ba7c49db879c2f2d9ce5f825

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.8.1-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8a86f9be717640fad85a2a09a92426fdb24d71f6a366b1258c4f33b8a9a44315
MD5 eb141f48f33a51042add1e65d716876a
BLAKE2b-256 794c95f429469e9ae36ab1aa8ffe37af47a968c8dddfd9b5a99252d627c6d082

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.8.1-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 5c4e2cee0e0d02b637a14e35bcc5c2fdc854eb66fcdd42258a3facf4e34df1e6
MD5 e6cea5b8deb45ea701bbf0fc311f653e
BLAKE2b-256 0a130f4e721e0f7492a4002673d24f0f90cb0df038fa340a48071aed9197b2e9

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.8.1-cp39-none-win32.whl
Algorithm Hash digest
SHA256 29fcc9cd75a87fcc9eef037d5fc35a2f633137a21462369cc95713abccd00c01
MD5 5fe6dd6f8d29c583aa2aae4af5133a25
BLAKE2b-256 a07128b34435a2b6e161a6cd18f34ec22985f9915b98ccf60b2b1eaee05c02ca

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.8.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 df1c1e62b7824eb90709e5d3d678de0b3761589f44118f77379651c48bccd60c
MD5 414e661ab524b81797a4e02dc3521a20
BLAKE2b-256 a863aecaef14d33ea2b1b737623fc299042907dc1c4bfbe23055bd68b9f7d55f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.8.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2c64e86dd4411fc050cda8c7e1cfe06a3d66a5f94057eb24495cf22ed53f03a4
MD5 9c3973b94ab8618075aee2c5c978d56d
BLAKE2b-256 eaf8099b60aafd9ee8b5b75cf5192a302416761960e0762f8e5547fc6c18c623

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.8.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1944df0df689ee272b9c3a4735342a829abfcfe1219372a1a217d4d6c4353c8f
MD5 f518938289ff745b6cafe043140f3e32
BLAKE2b-256 e90fdb0bf1548505fe355f97205414ab9c50a251851b4df9d8359035fa468bc7

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.8.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 336ce16be1a5cc04efe2843507130913aa65fcba01d72f4352bb0b65e152e38b
MD5 da356be36130fa4aea1a118901787aad
BLAKE2b-256 488a6770f2504bd6b61c183ebe5e21129713b1ea0936ea96c5afaf84e307a39c

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.8.1-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 a8a6c8890fb7d3b491179e87d0710bb6ee11363c766253b6da286065780f8ff8
MD5 6e467f04dfcdc05accbc59489fb94d24
BLAKE2b-256 0ab1e552515612d25c3635b071228155d0baa2882c2d54076d0d731aa8a53cf6

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.8.1-cp38-none-win32.whl
Algorithm Hash digest
SHA256 86ce96dbb80100b16dc7adb86b51e0b160c30ce924af0cb21ccd306a916f7acd
MD5 b1a975b7e7f6b64e46617152365c456e
BLAKE2b-256 f48b9651bdd2762f5f299a5d10cd2226cdea3a0a5cdcf81071864d622503131c

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.8.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d1a8d7e6bf083ee38506d68992e328130b03d8107eb5323ee6215eb0d0a26a4a
MD5 ce82527f35893f97e421a165e3d2d8af
BLAKE2b-256 8db8a26a99be459e479bca6ddf671002779d605d2705973e06dc8e536a34f8ab

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.8.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f4f755e369a3b997c23e2ca5f591e43caacd0b39260ebad8069a53b5c3943eb5
MD5 d5b8c11f7c06fad36113b7007fb39ded
BLAKE2b-256 24fbb21b9b02bd1dfcfb1912fc9555ee1ed5f4fb41cdc141c1adc937c6cd6cdf

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.8.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c5817ab1bf05d93f3e2000bcbf2d7c462d48c9c997fd4abe53ac971d21622e5a
MD5 6600a1c0179e90c69b26f82e90c2d22e
BLAKE2b-256 89c48719084d19c2b9220948ec95b2bb41a99573e0f943aa0d9ca5a9596dcc78

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.8.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1af3bc60892fd76e6d65094f10b1d2f8607b9f06f2f418a5a948f4e4d91061c1
MD5 03b09636181d73b7a671317282402d46
BLAKE2b-256 c59ecf932a60fe6c61d16258ee1550b1881f54ca518a1e089dbdc7ac8cd7b7d6

See more details on using hashes here.

Provenance

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page