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

Uploaded Source

Built Distributions

polars_xdt-0.9.0-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.9.0-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.9.0-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.9.0-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.9.0-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.9.0-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.9.0-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.9.0-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.9.0-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.9.0-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.9.0-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.9.0-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.9.0-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.9.0-cp312-none-win_amd64.whl (3.1 MB view details)

Uploaded CPython 3.12 Windows x86-64

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

Uploaded CPython 3.12 Windows x86

polars_xdt-0.9.0-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.9.0-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.9.0-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.9.0-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.9.0-cp312-cp312-macosx_11_0_arm64.whl (3.2 MB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

polars_xdt-0.9.0-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.9.0-cp311-none-win_amd64.whl (3.1 MB view details)

Uploaded CPython 3.11 Windows x86-64

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

Uploaded CPython 3.11 Windows x86

polars_xdt-0.9.0-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.9.0-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.9.0-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.9.0-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.9.0-cp311-cp311-macosx_11_0_arm64.whl (3.2 MB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

polars_xdt-0.9.0-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.9.0-cp310-none-win_amd64.whl (3.1 MB view details)

Uploaded CPython 3.10 Windows x86-64

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

Uploaded CPython 3.10 Windows x86

polars_xdt-0.9.0-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.9.0-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.9.0-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.9.0-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.9.0-cp310-cp310-macosx_11_0_arm64.whl (3.2 MB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

polars_xdt-0.9.0-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.9.0-cp39-none-win_amd64.whl (3.1 MB view details)

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 Windows x86

polars_xdt-0.9.0-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.9.0-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.9.0-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.9.0-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.9.0-cp38-none-win_amd64.whl (3.1 MB view details)

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

polars_xdt-0.9.0-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.9.0-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.9.0-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.9.0-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.9.0.tar.gz.

File metadata

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

File hashes

Hashes for polars_xdt-0.9.0.tar.gz
Algorithm Hash digest
SHA256 3634d1d4a3a64e4d19919bf3e43dda3e6ec1a7144d78eec5b56a4c1d4805aa1d
MD5 5bc1a5b023135b0df02e3ebab266d5a4
BLAKE2b-256 205bc201d58ff69252c0c7c1ba33ea5546cafd03b3485187fdf28f579891dbf8

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.9.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d2a6640798dee0dd6ed3d3eee7365aa123329ca084929bbe3c09ce8c76cc30ab
MD5 29fbcec1c3f7fae449737a71f09cedb2
BLAKE2b-256 abe316b55540b889c26a18d4a7cab3abce0bfd019c4d94cc8f2625958044679f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.9.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b51b609285570d87e2e5e22a099b5b307e8e5011b3e9fc7dc91c4a8d70816034
MD5 2b8de2aef38bfab0570f17112cf07f40
BLAKE2b-256 f1bb530c18d402db2607752ec85396d1502982c203a1b4e1a13c306a0138fa20

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.9.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2754ff40727205317980c3c4021c953cf3e2c55cb467a80b15964bf668944412
MD5 241ac3fc14351dabde6d6a55843f955f
BLAKE2b-256 4d3c1d846da2f6c81680b36ddc803203632df77546aa43d8564839aa3c8efac3

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.9.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 10e0d8eff48b264bb95e5e21f43f4ccfedcb8ae8543af909b1e742ba25648f77
MD5 7ee5171e2ac24b52272060b87aa13d40
BLAKE2b-256 4db993560a11149b2d4d0b92f15bf5c7af9964b176c4869a663defcc77ca4f1d

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.9.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4e3385b7338adc9d4417c753112e29f1995df34c972d29d5bc8e348674d3e7b6
MD5 92bd65b81a326dbb594c7f982e4d890b
BLAKE2b-256 948c5c51537f6f93a7a81802dbe24c5c688023486a39c7eef6da934d48bbdc43

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.9.0-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 09b661788c7ab553b75abadac1cbd1c508264d8d853d5187acc4ed42609f44b8
MD5 98b40dd8e1ee9c364d59f4fabe2b830e
BLAKE2b-256 4969d04889e6996a17ea0220f2abafc1f23a3bb2ed65ef3d84d50b6bc8f849f7

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.9.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9bb733c1c132f70d19e781e135e8523db71dcd6ae86997ca4d5da2f685dd17f9
MD5 fbcf70dd594bf6f14dff483da599db4c
BLAKE2b-256 a1924d35e41f08aee3901f7ad92625788433eefd4e1d6dc91e143d1d4f038a63

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.9.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4f0b4d21d5d3add9d4b5f31ab06ff94ff779072441a99fbf4c09d9a0b58194a9
MD5 faf15cdc3014fd13b02b39c0bf38da12
BLAKE2b-256 25d8a6c8c57ae8f01957f6d7d88994bc54884c5d22f944ce5a1f2048dcc474ed

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.9.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 58a2be2fed577169393a31d813467684115a9d1c7bbb1b3b1f8c54ae2c819d66
MD5 c5a81b531501390ff42a5952a67a9b97
BLAKE2b-256 0bd2198b2d1ad5b96c37d08a7a2ff52721a398043157ea372c7a49079256ef9b

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.9.0-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8d635e5253902131b72d39632811426e1091863c953a54f97ebf313f1fa60786
MD5 cea91483d5de44aa941b22b6ea0e6163
BLAKE2b-256 881eb585514f12792f4df4d259e59bc0d30ab4b0d2b4972046329d3c30dac30f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.9.0-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7d9f74fde5088758d1a1494eb53cf08851e82cc85a5781d2f84c4bb42b9ba90a
MD5 e67dc96b6de8cfbe95f1e74664fcbd6a
BLAKE2b-256 6c1add282e5805c040a8884f5eba1fa7d75c2fb3d25fa5646777c64a8e119dbb

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.9.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a1f52bcf5fe18c2e893af4bebf8199f183c89a42a6979abca6ddebbfc38aaabc
MD5 713a89e5be17c5543e5d418a8ab31d75
BLAKE2b-256 149a43aca789b2feb4d7be6590546e94d557d1eb9f8696e6d6a9ee0ca14ca928

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.9.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 93c539c52fd453264174aa36eae5ec232ebdf07157032a5f2c27c75b1eaf5162
MD5 6c13de7dcc414898f9833316f3550c14
BLAKE2b-256 13610af626378f96d803675992cc72257598f629d189802d619e951c94a4b29e

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.9.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6beaf12f3042c17632b8145a7dc0b94056b3acc8ea21979be6e93761f744de46
MD5 62ead4fdd96408f0a95364e663c1a5b2
BLAKE2b-256 481532cb0933d27c0b044bd817ff721a1dca8a480004609a9dfaf7bbe4ff2383

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.9.0-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 e6353b1507b63ec0f47d0368ecaee8a9def2b519891613537200f371498c1c15
MD5 e3183698e5b387aad2fa72b706b35942
BLAKE2b-256 be14b16ccff2f1223da0224b3206fa3bcaf3d461cf3ad2d0af634e05c37b707e

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.9.0-cp312-none-win32.whl
Algorithm Hash digest
SHA256 19a053bdc1ff7e2402710dd5dc0afccadacdf42550845a6c43c56feca2b5f3ce
MD5 ef7c558e275aceb92e6ed7997f5183c8
BLAKE2b-256 ddf463860bc0af3f91662de7fbfdb265a145c05d0a9eb5703624b4a7f68a395d

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.9.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5d7ae7cf90249ea5a508d0653499f3d4979f6a21e60d3b57a919655f0d8cff51
MD5 ed4b8cf4d0eedef37f39199ac5adba5e
BLAKE2b-256 75c9c1726a1dc83e3038fc96bfacea22a87b58f7ecb0c557b9453ffde81a71a3

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.9.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b07c22b42100eab432cd11dabf628a96997ee00a0670f3f28ded86e0c2192eda
MD5 51f03de9396a55eee3752fec786dd822
BLAKE2b-256 1e13fa4068a5ee70c98ac67982f2ff2bbeee7580c197673b6bb2aa48673f6540

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.9.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 371c83198dac9c798602f008061e05dc7c80a0849ebdc806a0ac056901f908e9
MD5 fc314a933ab4810507885081b7bb8fe7
BLAKE2b-256 203f6b9b9d2d5b3148484e953f463f2736814201f826c916bf1d2334eeb59f63

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.9.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e8a6c4deca3f6363c3e9e58514b6a5e906bf5bd30d21d4d675636024455ea9c7
MD5 a9c18fe80cd16d9454aac5d17ef7fbf9
BLAKE2b-256 905a0ecafb53bcfd34f1ef44f3728c5350592ade72ec96c26e26b739eaa89ebe

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.9.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bbc2c416d172544b53a9e4968eef89d9c6fc5445eda24ad5f3e986438700f067
MD5 2f8af5ec436f7a73451117cf5e3d85a0
BLAKE2b-256 70811c98d5d6661dbf4f53260f6ad0fc6f9630db79281d9ce4fb02e72423d73d

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.9.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 45bfb04a7d2cf46ae97e97cc7e7dcd06d8242103e729cafac097cd3a8217f3eb
MD5 33e7964b8cc836f3078a7483804a5f94
BLAKE2b-256 a72dcc9a5526390d733ce236c23aae459398a78fa26ad0e609a78c5f05fa3417

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.9.0-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 8aa3364d8d1543c706e3820f0245feb58118465ac9b933684296f3ea0910fb1c
MD5 a2871b52c1909b59145ef395acab19e7
BLAKE2b-256 82f4405db1e9a6345a22f9604e4915364c16f2fc01d85e13e7e6f7f41ce9e8d8

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.9.0-cp311-none-win32.whl
Algorithm Hash digest
SHA256 0c6e57f43d0efdf723def6c9da1d7d3d6b35527b1a0a4f8d8deffebda4270deb
MD5 ade9dee2342dc548241626b28d0b3951
BLAKE2b-256 3612a9459db38b76d4f98cb08182239939da1bcb8b0cccf965a18e3f1290be6d

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.9.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cb88db473c15a262954ac8db401e0a591082af167b11954ea787c42c5916941b
MD5 d79c40b17a473d5e09a17cf73db7c381
BLAKE2b-256 d75b4502794c2377ce47e9829f46c358f8e1b5a439a5532778cd1c3fb7dc2753

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.9.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0fc4fe40cdbbde572e2b124f7fb2854388ba502edf243fa9cb9577bf24cb50d0
MD5 70f2c94d8c67c947ee8172c21cda4d7b
BLAKE2b-256 5c21b70a1fb5de75d365b4199602052359875127290866e7f68e6fd74dcefe39

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.9.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9e940e80249e2001eed1d0783845ea6fb091556df58f1e9f7269b0dabf325f2d
MD5 e279d9b110bcd61ad478f74972022a8e
BLAKE2b-256 a2c235b0f2d8937b82c67496cc4457d61aa3a60b979a542715d9fc77c22bdc26

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.9.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1b8d455f220569eeaf0f10697ea06236705f4e207b0895007977b61099d81d0a
MD5 ede2368b1c95bb7f7622b169b70d78dc
BLAKE2b-256 48911aaaf972334c48f78794c316b19163d5a2726f0433681dd22dde20c01840

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.9.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6cbd6590de0d386a040cee8eef6a753945d3370baef2caa212b418f7d79d7d3f
MD5 65f48a41337a09843ef5ca7919b4aee3
BLAKE2b-256 485e02f4bd2735c3da50d1696907f8583741c3cd38ae712510d8caa8c4d93634

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.9.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7fd39e47592fb9bda04301c5e24bf937ba5ae9316de60031b72f26e892ad3c73
MD5 31148308357865a6cb234f94fd74d40f
BLAKE2b-256 7460f906042bdb2b8b092d4d6a0e9617c5776296b311618a0d93d60addc1adc1

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.9.0-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 c713d1c234fb19847fd5636075158e8cd52c15764db629f19dfd1510e75401e4
MD5 dad8328dee54f3e4b2b8be9c307a29c7
BLAKE2b-256 e7b00510afb00b5caaec5c9f4cac55cd4c95fa3fa4e18ef1efc720c385c1dd55

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.9.0-cp310-none-win32.whl
Algorithm Hash digest
SHA256 5fd7d4c11f90fd98bd58310c26cd9877bb8a9faaee8ab4f43961620f193cb36d
MD5 95a44d4e2e83a39af6c584006ef90951
BLAKE2b-256 803cd723a5f909e080398508e3cf40e90346a82bc7642c30ee683ca6ee0fc124

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.9.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 870f012eac4be131494c72790d0d352f96df5f0a7c7821d52b0a183c1653f293
MD5 838c296199eb458740ab28eab5d85428
BLAKE2b-256 b4a843595035029988f1a347ae03907da02d3e0fc6dbbabeb574ce2929264467

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.9.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 15169b0a774d4c694d3d4e6444ab2834d17ee1ac9c516372d5a690ecb5809d95
MD5 29fd36b16f4a2b55e3b1df98ee0cc8cc
BLAKE2b-256 e757476b097255b014698add782d704815d6ec700e9180312c35b9799712a577

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.9.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7f9b73e69019b27ee55972d3225b412b65ad7989dcec2a368996f270234f7fd4
MD5 ceb947cce7d1f1d7a7254cb43078a685
BLAKE2b-256 ca38767b7516e6fe7e535140835bbf2b5c2b06681ec4af95efb3ec46da0573ee

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.9.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fd76578834faec0b9d438ef82fa914b9630855995c5277748af9ab3e9e4e57bc
MD5 a37a29722072c120f2fb2abe0f74ec2d
BLAKE2b-256 7b830324f194f8bfea542b8751c8e8a6bb6135c399c258d3ab74446f389631a5

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.9.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 88c474cdac6f2d195f48c2f7fce8e11d3425cee2da0d50daa571a8f9d809101b
MD5 b5ac8cab573ca098fac33941ebecd889
BLAKE2b-256 2fac488513cd8c339086e13d4c59079bef988756e8baa8c6d5708fb0dd48a04a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.9.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f6e04534a8f2972f4835484073562a78e802fe85406c4c89244381b67ae0541c
MD5 e4e1347cd1ff78de35f54d725a104c8f
BLAKE2b-256 75ddb0cc227cefd461419ec174ff1cea6f91317abe1aae092fb3f32204ced856

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.9.0-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 0e0846768a2999297e3ead03744f1e4559de19035598a750fa7cd680e3ef8633
MD5 964eb8ee134b7e0567a99eb947261f13
BLAKE2b-256 d9b62d85bac35e0c1287e5cdd810dca8c75a6884eae117e05b4c13bdf1f10903

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.9.0-cp39-none-win32.whl
Algorithm Hash digest
SHA256 f147cdf0f5bf52dee9216eb4a89e2001b421b5c607b18eca152dcb4eb21f7fae
MD5 d8c91fd0386c635af7ee7ced68647cc2
BLAKE2b-256 f3c5cf0a74f82d20f4f0aa06d9f71608cbf84009bad13fbd93e2465c4b1c56b0

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.9.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0e499f239861d0066c7539ed7a3834fbe107dba2f723798b4a8afbd40b6ce910
MD5 dacffa1db3c6986457dc8ba0528122f1
BLAKE2b-256 7998ec43a499f443f600c99fd9a7b0bcb02370bb0f79449af48c2f279da16c4a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.9.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5f2fdb8719b3f2144eff58bf97a7eb5d2f5db359993aabb3b914867591438c32
MD5 be9cd7e035bc6ab6f29b8a75e6aa06d1
BLAKE2b-256 c4f4aca1ebd7f913ebc6b7cc1e3fef1db0509c174daf25750e9dec3f4d3f1a88

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.9.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 66044e148101383e7c6da900c11bd439ab4bab27d53bc61b969c41387e9127f3
MD5 49a04a47ad56a4c90fceca40bc1364b1
BLAKE2b-256 85a09b87d2f9e97440d663e405fd4cbc469644e78bb49e15003b1687eb9038aa

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.9.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d55e6217fe11115c044b7dd74f4d3c46fb4c8ca384874ca0bad3ab8620952604
MD5 28fa462e31ee8b87bef2530c503eb537
BLAKE2b-256 3e6c846972aecd1653e4ec325492e4a7d68af4792aceef1116f8968df216c820

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.9.0-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 d29e24235bdb9ecf71cc154c48e63df0ba9424517021988b168634c881316234
MD5 220a8eeea23f86cf2ad65969a7ed9d17
BLAKE2b-256 8edad54a6f14b69f659b3c98eff002bedb91fc1d7d68e2bdf6675c08dc8ec50d

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.9.0-cp38-none-win32.whl
Algorithm Hash digest
SHA256 77ec9b4daf9164a7cd9aaf87f5f73127d9320ab7bee4b429d0f1f0455e69bee8
MD5 58c278776dfd2fca949d2945496f1dc1
BLAKE2b-256 83c722a535780162f8d808264d4ddadbaa222e65bbd767be8eaf233b9c576a45

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.9.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6b6e522431bbf649295e67d4f77c9c4d31c127cd41c9a552e0b7e04c20c68d3d
MD5 ffbd0955f76f19d94fd119b7638c9653
BLAKE2b-256 9fe1e871cc9f736e8b60c8798740cda6adc9b53533b66333b68462e9f7e838d8

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.9.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ebe344dbe73da4f4012b6257ec9c00216c84077470f627c42d763815eb47c1fa
MD5 5e2c0a7bbac7908881b88491f25b43dc
BLAKE2b-256 20a6f92bed17319fc16e24f22e687713e0d2d6f325283b95746c0a917e01ffdc

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.9.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 70fcc3a90dac5d6f235b78e8c53fb8f43bbafc14bd42b838fad525f3a0334627
MD5 c6c0c1824562cb0e92800ad0233f8d04
BLAKE2b-256 e8f924b42b95815027b57b4b6f466070a47036a64e7bac5f89addb49456ce95a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.9.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 98bb3c25e2ea379b6bccfc8996f99715ca7a23532c6531553e005623d7ba6347
MD5 054b170d33996e0961fb4bad6120d674
BLAKE2b-256 8ac2e713d078d735ccdc55ba33342431a01076f4dff6b9ad0a8bb7d67d914893

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