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

Uploaded Source

Built Distributions

polars_xdt-0.10.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.10.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.10.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.10.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.3 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.12 Windows x86-64

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

Uploaded CPython 3.12 Windows x86

polars_xdt-0.10.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.10.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.10.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.10.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.10.0-cp312-cp312-macosx_11_0_arm64.whl (3.1 MB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

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

Uploaded CPython 3.11 Windows x86-64

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

Uploaded CPython 3.11 Windows x86

polars_xdt-0.10.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.10.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.10.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.10.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.10.0-cp311-cp311-macosx_11_0_arm64.whl (3.1 MB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

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

Uploaded CPython 3.10 Windows x86-64

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

Uploaded CPython 3.10 Windows x86

polars_xdt-0.10.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.10.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.10.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.10.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.10.0-cp310-cp310-macosx_11_0_arm64.whl (3.1 MB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

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

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 Windows x86

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

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

polars_xdt-0.10.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.10.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.10.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.10.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.10.0.tar.gz.

File metadata

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

File hashes

Hashes for polars_xdt-0.10.0.tar.gz
Algorithm Hash digest
SHA256 b67a3b82a5682b3b4895eae061ef2062114d74b5d14dbbf15f7df80f71ffa8e9
MD5 f59a74959686edbf85bb5e7f5332dc93
BLAKE2b-256 be2c59f3622bd92d1b3fc9d4a7b4b5152934b0b97a2edafd32f2da329d96d361

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.10.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 65bcaa7eed4ce6612db67f437bc403afb32d620d9b8cc73b02e79160a8a03941
MD5 87927303cd0b1334dcd9cfd93a79f9c4
BLAKE2b-256 19f785d3c1fe1521b5c611849213977f6eebc1a6bb27fc434327c6f9e53bcb5d

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.10.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1b72459ce1b2cdce8e4b14b41af81873e7722637f22d4315cdc01ad2c81d35ab
MD5 c7ef0b59248d2406d4fd46e6597c1cd2
BLAKE2b-256 79b864dfd991c0e8003236e43ab8c476223b551ff495d6a3e38a989aac773bfe

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.10.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 484a3c058f1d3ab5bcdca1862a448cd40c24596cb37564484ee094eff8837575
MD5 2574c10601c7bf146a35155cb69660ab
BLAKE2b-256 e968d3cade77e64d79201502f18c0c6f6b798240f8a6cca0d7b28022274abf3f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.10.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bba07ccad0d744d7d54dd5e915ca93869d4a172f3e673a7e4c0de8f1b454ce50
MD5 7373f3011ce330c1c9c6dab98d059e7a
BLAKE2b-256 f6038225037bf7cf3ef09697e6bc0ef8bb0b9197a92d7f516072af78fd869cf9

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.10.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6b07083f4d1d533e383753e4b090889610726412c16f9511a130f5be79933609
MD5 f62ef7fab6e65dda093cf13f6f4bb6f8
BLAKE2b-256 6ff59be941a1b8fe0e02c048155ab06eb6b3215eb1fccee8ee253af7e28e497b

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.10.0-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9bc11fa588006c42b9df6e1ddbe44905f814ec395b703f69bb3271d19dfcafa8
MD5 199650563184fcb17eaaead510da61a4
BLAKE2b-256 d81e0942506b6b642183c133bee4844eee0bd0f0fb802ee0e965042cb677cdb0

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.10.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d768c6fe2a2d87cc45d2945091fc554ae9073be86740f98f3f343af7cca2fbbd
MD5 e83bdb1ee9c482c669a9726f86a1a37c
BLAKE2b-256 dee124e5e2b144c39ddc510c289d6f332ce1fc8be3d191d8386e1560f1ddde8f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.10.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2cca2c03f4234db6fc2effd4c7a529d3c0861b8b5a1f42c6923820631b337778
MD5 a24f964a3f9be7ba08ae7ffae48d8c88
BLAKE2b-256 fe8e28ac508698b2680a2af23fcb3ee7ac859f719e057cd73f541e792caf909d

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.10.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 747947a12d2b6fafcdd6a573ea170533616e737b856a6f278aad0abe1e55cce8
MD5 aea12c4d20f2dd7c5a9bdd32eb93bad2
BLAKE2b-256 8e86e3e7df312a25ae8f68dba32398ec5216a9d9b4e35a726c55db02528f541f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.10.0-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c958c85df1b5b7e41b37fd8dca49349a018f00f98253d5fbdabaa7b50a70770d
MD5 c8cc1f27f0ad6f6c04237c4f53784b45
BLAKE2b-256 9c37a003625e1d1af4797ca46d725147c7d6245c7749b509333f5b11e4d9bf84

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.10.0-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f29f23477d0d57db814f1dbf2c4feec3586c555ca6a29c365bbe5f0d24480afe
MD5 8271379a0e7379df23d30cd606e4e0bb
BLAKE2b-256 c5554fa2ed1cd8e4f821e3387357875a45f08ffd7bcb7cf4757401cb496c6ecf

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.10.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e116ce7ff331a886109bb06aa9dea16c807fce2171b6fb9add629dfcdaa416c8
MD5 c1f08a65fa140720fb93370e252718b5
BLAKE2b-256 e3c8e96bb8142b2e6769df2a9611eadb0ec4aa8b55806ea4e8f595b0cc4e07d7

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.10.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b5f52b90a9945feb7ceba35a46deffade2b8eed51e31e7a0056a9a1da1b15309
MD5 9878a06e1aa517d5ae9f08a1ed78749a
BLAKE2b-256 c0afc5cdcd158c4dd0523026e3da21ef386e605d01eff9e7b32e1d394c843e3d

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.10.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8a249bdc517e256f3ae6c4751c9d8c5a31c346c1d704ad7ff27605426c8525d4
MD5 fb1681afa1d31c66c4cad9cd2d79a296
BLAKE2b-256 ae6dd58d7144940b5a0fd93312cc4101b70ab58d81cf812219b7fbd3013ca7f1

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.10.0-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 12664560f746c43b61d0c88937ee575ff4269897bc1d43cff22477beef3d5125
MD5 40b4bba65f0f7204bbb90b6354f1bce2
BLAKE2b-256 890e9e71a7d1a65ef4f3774fa4bfb97859b0bbb7df2614729f302ba1b4003853

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.10.0-cp312-none-win32.whl
Algorithm Hash digest
SHA256 c5d565ca4305a924e1f7c6314da6ee06cc5d33baa5b68e4af8e45c91104a3b59
MD5 2d548468d3cd74e89576a9909a450580
BLAKE2b-256 be9ce0f0370d38b747b9c738f894eb2463d025cd5110ead3f4f336a4220b6225

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.10.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c06e9e365bd02e8b5c6b128830a6b1cf4c2aa51f9e7cee92b351a037643f1262
MD5 b1da84a2f930f5e87eaeada8f4ab9820
BLAKE2b-256 f1eca1a071255bcda7c68206160c3c157dd1d68a42556ed770b9910f1f6c78b3

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.10.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8761b051c41abc2e7e1dbcdc4876f27fba22c301294b676fa5a80d802517a9e2
MD5 5c82160ea7bb9512c972527463a48eac
BLAKE2b-256 99382c1ed93fbf4f68f6156d5052b6c6e2f5266fa993bb867d2a7ff3bac26243

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.10.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d9436121ee80af362b27d770107f7eb393eb0ce3bbe1a234b6f3f0fc3c082f4d
MD5 0736b5161aed963f67dd756af8d31f68
BLAKE2b-256 e0ec6626f88cb98f2f444855f8e9bb66f3e756f4816dd3edd977963aad7ec2e6

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.10.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a82e2af44ba06dacb501477aca46a74f79e70ce20c8d943edb7dbfbd22a5db91
MD5 8b237fde81ad390001b5917c995f43e2
BLAKE2b-256 9e11334d30ce088b575bb356e3d3ee216658734f0a4d2f81d2f281042ffcbd69

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.10.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 28ef438966d635f289bbc3b43b42e8b18ff129a08858187d55e33f0cb4004df0
MD5 b1284091b51d9ce8832117f35f596ffe
BLAKE2b-256 76fb7bcca1c815d8db0c7acf2914310737688efb1ce0abf42fcf12ba5dcbeb42

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.10.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a960a0c0e1f850a226d48b0157797af3dfd7bad81dd82bd0d76843d0683b890a
MD5 f5fb093f4229ab53f319911b9a3ca600
BLAKE2b-256 8797393aee5f4e0d647ba8d8a5aeb68df5528305427172cbd0b6d85d3c1ed56a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.10.0-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 276d367592942c98b71665beecd1627c0634241a2f707f7a2b8e98f3e47123f0
MD5 2749a5b91cbb40a78443c3ea3d72a8b0
BLAKE2b-256 34cb2ee6ceffc0f974aae02997c2574a12c69d487fcf21aa581944fea58b9a4b

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.10.0-cp311-none-win32.whl
Algorithm Hash digest
SHA256 8ea0b781de69af57dec6561a2b5e826e30d74f7a0dc367c1e8e930d6c252f5fa
MD5 054950509726e99f10df3f06b9cdb3cc
BLAKE2b-256 c40115a82dbad7a66ac40f7e8850bea905b4570bab38263c396743dadf393d5c

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.10.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 39dc8664d7cc7b31d86eab19820a255b3a94c4c3cd4634e978d89b80e89504a6
MD5 a83372b612251b658b3e57ac186a4344
BLAKE2b-256 80c0ade82c8a6a0d67f409fc3685aff5f03cceb082d423168b9998c07b7a90da

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.10.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 104923132e0465120f9d95672789c7559f9e77f77d2bb9314efecf5f279cced5
MD5 90f65e6654db0ae1d5f64e4c289b725f
BLAKE2b-256 a7d423a9ed998217195de8b3093c5055a7d52751788c7cf4e82914c5603fb603

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.10.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5bb30d18ace4461b06d7f5e20db38ee3b6aeea9ccd8fb6fdb7a5e6b6d9a36836
MD5 379a2d5a52feab53b2c6c240cc5ee570
BLAKE2b-256 9f5e89c1d62401813df66c416af679033a513a9cd606fffe15f0dd4857fc5f2f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.10.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 13be51fc924c8eaf376b86bad223156f9d8796779d7861374641775a42881b13
MD5 98f5d3f408d5830f4ba0f603717bb4bd
BLAKE2b-256 cb75657dba90aecdc4366526b70a49754a02efee29f0a4f1636e129b1aaf7c8a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.10.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 34fb28cf9f45abd50bf6fc9d23a8955fefe1b5187797bee41ae4e6ec6fa4e56a
MD5 dc96ba60e90a2a06b909b49d24cf5130
BLAKE2b-256 3e5db969dfad6bb29487d0847b60c9b5f3cfb136cd8d3c1952ecd7a76a6928f4

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.10.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 115b9f2d5c44808727911df27f0fbf0325215efb59e342cb2e3c219457e75463
MD5 0e40a16299d4685827c64997aca00a7a
BLAKE2b-256 8d6970e4bab8580e6fa627e9b90daef4b6d5266fcd8349affcc0d183c5f18401

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.10.0-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 3cd0eb216f9f582c8395c32e7033ca129a5a61c1e1d60c74649ce978b5af095b
MD5 99e5a5fcab3f7b6fd4b710a80b6aab0b
BLAKE2b-256 6428b7446be2811ec9a78f9ac29b0d8f5cca16b492fd4f0800cfad3995430de8

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.10.0-cp310-none-win32.whl
Algorithm Hash digest
SHA256 f3e0c0d4e998839e82ca7c9b3a4a316d064e9e0ccf2ada39f894474f6fd5cbeb
MD5 9420acea72fa27472e481a6109ef614a
BLAKE2b-256 691f1321072936cd68d6db3207e10e6de0b5ab900671b89139f53f14da1aa011

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.10.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 01858056afd8503a2a63a5be51bebc089a72304b6f79d7ad0b2f9f6418a80511
MD5 1d8e5a12f12326f435a62fa4e9e3050a
BLAKE2b-256 49707be1598c059d3a955db510db1a3ee52b4b68dbdcd364eb00a9106214bbc8

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.10.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b8a4800a17297302c9d75d58e90e37e4fdc4ee6c5e383c91d93b3e112bbb4ac0
MD5 588b99872d9ba2face29e085fb4ae089
BLAKE2b-256 b958a3dbdad1e039e0ad8f367455566ed1acc374afc757d018163b0e2cf32c38

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.10.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 20c23c8d4dd477d81c079f7fc5c3915aec15c455f2c04315940741391c332a81
MD5 6669933e8128cd106dfdcf31d3e11f69
BLAKE2b-256 d58a22d00567d74d8e534cc4134cd356fd1d34b628ea65d547327c47822eb84b

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.10.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c9437590419523b40fe81edc5acf04dd4ae6123917620e53b5917424b01fd742
MD5 3567db64274896bee2bb158359b1a336
BLAKE2b-256 a841876a649397f8c5c9277ba41a2a61b082cb9ca2bc67e872ec617cb5d572ad

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.10.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6f2b91ee962216d1a0488f037eda71b22fe422b6f5265c547905791e660f624f
MD5 317e5256bf6278f6b2e1b0968a7bbb32
BLAKE2b-256 92409f6b30bf9bed2c39667bdc978cd9c9dfcb207421aba4c8e28ef01bf3086a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.10.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 66145973143df5bbcab0322b0b81b2fe17258cb9d9ef448ed3dc1a69535a0f26
MD5 d1c26e5c616511ba8f7b7fc804f53278
BLAKE2b-256 3982061bb9ad33f9d98f99f105fd8d4e6da8bae956e423d5ee42f0e7606c01f6

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.10.0-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 c5c95e94039d4c7c601eb7cdf9ad072d3fc38033506e7ca8c3b99b6d129b7226
MD5 57f2107c0ed181f83b501dc7930105aa
BLAKE2b-256 1261b98c10c71e22a3e683285990810bd2d7ca8c58c98bea2b92da5cfd888197

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.10.0-cp39-none-win32.whl
Algorithm Hash digest
SHA256 510409c89ad8ac4d245d9a8bf513870a32cc3f31429a255da42176f1dd7a0d20
MD5 360313c8455f2f47beea0692a4d99a15
BLAKE2b-256 848d00dbe53dbcad6026e83b641ae084929e3d2df4dc04bf0dd4421a155a62df

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.10.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f2ae07c9c94d72d321b4680416f5d935a2a55993e033a12b35866aed06cba2b3
MD5 d67cbd17ca0fd86d2f418dfbbfc152e6
BLAKE2b-256 5d75ef2d086828fe98ecafaba0846eba2926b8cb63ea59249e7f81f58cd3fa4c

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.10.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8dd9bbf057fd21b482610665cf95da9d26dd898076be5f649e1a4b434ece70c6
MD5 2e183ae41b1d48ba59b612679affba00
BLAKE2b-256 704d027c43a3540af4c27631c3824c244dd434d14628afb14e15fd293d291259

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.10.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7e8118566e67fbef9f94524c0aecc4e47aacb37327c85fdf26bee1c2d64ba24a
MD5 8f3160dc66117d5a73cea5a34684b43b
BLAKE2b-256 8ce0c442e6ca5d26b247c9ab9fc83982b639e2ea75c2033a08d134de516df3e4

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.10.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ebaa264ab54ad61d1543bd46fb40142d1df542673497e9466f5805e0ea7bdfa0
MD5 e06d137001a61b5df4d45a026378088e
BLAKE2b-256 c1e03dd00199984868c4d9f3d2d6d8762074eb8bd4ee9a7a4def32aa5b1d0e0b

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.10.0-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 4801864dd189830edf42abe526c42e215285cba13dcdf3474fc267b9ff90f040
MD5 9a6ff0c519f04b8e0d9484f98537e97e
BLAKE2b-256 77e9ad6d45fe7020093509a35e680e160e87cec9984959a5a03e33b7a3d7b6a5

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.10.0-cp38-none-win32.whl
Algorithm Hash digest
SHA256 2dbab7d759c915da03e83f6ee41572f255209a2e0b256a2d4b853f4dcaf21a2b
MD5 2d23f72b68c7f23811b538c107dc60fb
BLAKE2b-256 b5e010c9d473f02626cd681340c5171b1396139d4df82998698b40ce4f56b7df

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.10.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c7f6f818dc64253f3abc5bc65b94eee6ec20207aaf703db89ee6b3a1470ab0a4
MD5 c8011a1f3e0e9fb833473b7711c2bf2a
BLAKE2b-256 da89fd7fc9fe1ba93a46021aedbc12de31c9792805a469bc369d31e79a23f3f2

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.10.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7f0d0ad68df77658e37b02bdb6d60a230f5727f4b9f0c20a74eef2dc3ba67185
MD5 f7de5f44d22365b277e04f296618365f
BLAKE2b-256 d77d55eb30f860379e4d56c3f9c664455377691f9dd5efc053cd58ac4565de7a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.10.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 26bbbe8907835658cef1f30fb7d5c5d732db7679ef3dbee05ecb6cc16d5414c2
MD5 65134a467d8bbebbf0d08b02318eb928
BLAKE2b-256 65a019314206cc18f1baddc32af7b5c29c27171040fb18ea252ef5333951dbdf

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.10.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5036150beae2e59927d34e6b88533f8c3ee52065416f6ea1cceb27d21eb6b5a3
MD5 ea0ef5eca9af5c1ac112b4a8b7ce3fe9
BLAKE2b-256 1972230ea540d04cc10d5fd959babdcbe51992138631b51b3fdd7e7ad8d17e47

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