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

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 as xdt


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=xdt.offset_by(
      'date',
      '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   │
└────────────┴──────────────┘

Note that polars-xdt also registers a xdt namespace in the Expression class, so you could equivalently write the above using pl.col('date').xdt.offset_by('5bd') (but note that then type-checking would not recognise the xdt attribute).

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

Uploaded Source

Built Distributions

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

Uploaded CPython 3.12 Windows x86-64

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

Uploaded CPython 3.12 Windows x86

polars_xdt-0.11.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.11.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.11.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.11.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.11.0-cp312-cp312-macosx_11_0_arm64.whl (3.2 MB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

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

Uploaded CPython 3.12 macOS 10.12+ x86-64

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

Uploaded CPython 3.11 Windows x86-64

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

Uploaded CPython 3.11 Windows x86

polars_xdt-0.11.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.11.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.11.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.11.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.11.0-cp311-cp311-macosx_11_0_arm64.whl (3.2 MB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

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

Uploaded CPython 3.11 macOS 10.12+ x86-64

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

Uploaded CPython 3.10 Windows x86-64

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

Uploaded CPython 3.10 Windows x86

polars_xdt-0.11.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.11.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.11.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.11.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.11.0-cp310-cp310-macosx_11_0_arm64.whl (3.2 MB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

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

Uploaded CPython 3.10 macOS 10.12+ x86-64

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

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 Windows x86

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

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

polars_xdt-0.11.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.11.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.11.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.11.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.11.0.tar.gz.

File metadata

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

File hashes

Hashes for polars_xdt-0.11.0.tar.gz
Algorithm Hash digest
SHA256 10e243b9b798f6cd307347000b941e7332c494b90a5ddb433c5b68d16dd620ae
MD5 fffae226d8a3d7f235aad7377d04c0b9
BLAKE2b-256 7ce3510ff03c732896f5babd725e05fdc40bca9a1f34c56cbbefb1470dd56c2a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.11.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e99eaf1a9e3e064fa79a80456ff9302122327f188c37b6e0f448896f3395e1c0
MD5 f9c5005394ad3fc40b0ee8d8feedc0bb
BLAKE2b-256 c4b602afc9f62e05dabf126f8c572622189d43c833eba979c2a588588f9b28d3

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.11.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 440827c1cbdd92cbe40b1c0cac35c0c08f141b12fa515cbb1e3704aa126bc272
MD5 85c03857241202b97926128a8407cf63
BLAKE2b-256 075175984687b9c4018a68f14f06197b74690ec6462a237af0483c940e1852a9

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.11.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 af416f47fef46f1741d0de539eac4078c069026c40d90c49da2d517ef38322ff
MD5 1a60200682c67d30f8ce85b1fa2b6d1d
BLAKE2b-256 bdfc72e8f247932557ab18ca1b8df11f74835a4b76a0dc181f0c393bdcffd6a1

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.11.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 646e96e058c6827516c8481d0982c991d86e00a0d3de84c91ece09594defdca8
MD5 3f8509dccdb743ddb025158738858f85
BLAKE2b-256 60f191005b4fe60d08c3bde024affe299cfc1556590c76eb709f56937da93d10

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.11.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4a937188d315ec5900e156fa8e12dfe9a435d9298fe076e4f463a8df7051d409
MD5 ad650fc04710b844edbd61f8e7538c63
BLAKE2b-256 fd26d23c45fe74fa98b4c4a9c0451f7a2862cc3facbffdfdf9d7c71e9956d87b

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.11.0-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f616cca93de3f4d244ddfabf7d6c6abfdd9f6f4244ae6783dc57edd690fbdc4c
MD5 6f7972656e4274a3b8507587bf0f72c6
BLAKE2b-256 26e57fbee8686bd79b11b97a73c2d7f009c253abb581e8087b71fd1a66595ea0

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.11.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9672916b0a30bfcec9d1573f97fdcac39381436a6284591d201f60a89f605bcc
MD5 cb0509d985480593b797c12d6a4d2b7c
BLAKE2b-256 7a735cc1294183acc36026e89228f71e1c5221793153404a0da8800c5153fa00

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.11.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5acc13fd673446abafda331eefbeaae495096327104a8d75ba5e12bbcc498dd9
MD5 9de2f6f52518467ca1236f0346429f1c
BLAKE2b-256 4158960cdb14c9036ed4adb03084fdf0ff4145175f37a41f0393c4005fd63836

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.11.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2e522aaccb8560ea83ac5aafa1319611beaa767b75d4a852c77c42a8a1ccbf7e
MD5 1a6ad885cf69d7a115e648c111f4bf8f
BLAKE2b-256 8a446e7f13e90c225c6c2256dc09cb8236795e61f1175289c06f1d563d61c4aa

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.11.0-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 858c759209f25e9ab395a05ad1b328b370b26ee9e96425a6806e6e22e111d277
MD5 3be7ce2e85f76c12f84a1dfd4ed9a678
BLAKE2b-256 1ed483dd3b07f8b9d2880935f67b7d13ad2181f62ade4a18cf4f589d68b9c887

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.11.0-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 644c3558d5b7383d57b9d056b0ef45cc600ed04463c1f0b97357ab138ed94a64
MD5 3a988e83652754940434533ddd9cd87e
BLAKE2b-256 9f44241ea1a7924183ecafc2186b54b43d480bbcae594db907c4965bb0ed2377

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.11.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3137db28b5595a237f9af212803705bc669dd756b7ca39d758996b73c7482afc
MD5 a1fcc3fa502813748a3a8fd70fbfd3d7
BLAKE2b-256 afa0f3b2a09d2c406a8d625b1c4cbb16d8fe086c3512f11ef74670f77d1cb90e

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.11.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ee96ac12e12d05f94cba8420650f44b4fee7e3f18f11ec756f4bc96ae4c95f57
MD5 0c0741a5f82dcdd70a6b4f6576c74238
BLAKE2b-256 a7dee3c6df4579bbc1687be37a8d7dd075d23fb4d2ba749046e2e821f3125349

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.11.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b71748e27b666cc801ddf0757af07b6f4425ef40e2edb8a6b06160f29389b7a4
MD5 8661957b667d41689d4ad53c5ef5be5f
BLAKE2b-256 6bf10c3eab77c1bb1e02816ef4cef1584c75b8a7a14e1d9e0479107dd32cf813

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.11.0-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 29758efae86b8d08275beccd09769b86715788036b29aef9b47e2c665677b142
MD5 485a72b5f6146c95399a8c1ab2fe9c63
BLAKE2b-256 14988f48103c8af9a1b4d52c2e433be02c851edf0f81a2c4862adb67a05ce243

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.11.0-cp312-none-win32.whl
Algorithm Hash digest
SHA256 3983d64797691b81b94589baaabdf8cb0bcbffe6fd02699e9d786dba27fa5dac
MD5 bcaffae0a57359de1bf83ee1678584a0
BLAKE2b-256 b10328cb4cb23de4a0e6f62a21d9909aa8e7dc114d4697ed2b3face98b77e53d

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.11.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 48db7f57a5891541817a4a9cb0315789c2afee2c0a9fb1347ec0cb9d61662fbe
MD5 8896a234ffefcf05ef29735ad1312ef7
BLAKE2b-256 9ff2b57084e7ad0e962c6c9a80c6b3e69df55f579b402f064acd40c6e95a4f2d

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.11.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c87748efc2dc61e2934486c5b820759c5b5b74dc48857a12f3ad09df50b4dfd4
MD5 3dec8ab96ab946b74fc2fa777f16428c
BLAKE2b-256 cd4c7d26da7af524c144ac3db802c1468354c6f5ebd7a0543ac22eff67adbb9c

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.11.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a101dea7dfdf382fc99741f44f44ae3dad684403f1adf345c2e1dc1b638e79b2
MD5 ee847167d3d079803b58b5a5ea7f4644
BLAKE2b-256 879e8899ec150dcf7a9c8eaebdfc7b8400418d37542b4cc2f7f78e219c149aa1

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.11.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 75998929ce46d93cf94c41a71d62b6bbf4dac682929fb7e84d49cdf26e0bc6f2
MD5 ffa87faf9d4321e03950065046b49fe3
BLAKE2b-256 f9e2d9186826b5879009e0f9ace68285857b5592e3c520e3798fb202e752bc96

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.11.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 234cc06cd163d8955529401e58b462759d7db1b94f15c07954e1e128230d5150
MD5 5c5a1677a2e3b37368fadaaefd9aa3cc
BLAKE2b-256 5344f2ef0286472d3a3c9ec5ff0b1f789f4f513c2dbfbc30930be05fd18d6fd4

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.11.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 005b0612f50b025407338195d63a6d97d7f2b108022078eff1ca3c55c9692f7d
MD5 32f8c682b2fde9018a75ccf2b9969ebc
BLAKE2b-256 8ea83b09a08a612997225c4d38b692b8ebe268845d7844eab413df6147208e06

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.11.0-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 786bd7d9c6ffe9021e6f5e8de5a7e0c9e8d2344c21ab4901c153eb52a0a9eab1
MD5 18267545d13f79374e3e5c810eaca3f3
BLAKE2b-256 32910daff846d075bfe0699ad9f7122c8a79c2658b8250597accdf76d9eb4b51

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.11.0-cp311-none-win32.whl
Algorithm Hash digest
SHA256 ce431a2709fbc6d77fa042c884942a9d9fc815733e774a572c9761d8aa2ed759
MD5 d33dfa4a336f51d0c9db5b7129595763
BLAKE2b-256 d2ad931052860dc6101985128c601db909852005a83402b7ae18b65cd5c70223

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.11.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d868e6756b5a59cda2f43bd39315fb26c715da05a68493356599a1d03da17176
MD5 311ad3d3e1b7032522845ff6487a74d1
BLAKE2b-256 e8ce20a00b871f71a15146fcba0b19871f49e4126444c01f97515a3593b47a69

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.11.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 28450301bae67df0a469a5b5c2993614e2009aa61b396fa234c4b0b57202fd32
MD5 0e086c0df1c0ac37c835c55bc4be1f0d
BLAKE2b-256 147969090c215f8dacd4c7b9ddb3b9de5506cf0fa19a294c0b98200fb4ad8659

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.11.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4b87bab1c07e052be7e25b67bd547ed99b9ebf341e2db262cd8cdd612f1a9fd7
MD5 66211437a400061f3d58cd4d980f8cdd
BLAKE2b-256 adef7a95141ef8dc09163d0171ef932a0d2b363be2e0e1c0098f76a6d38ce994

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.11.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e3596e86d0df3a14ee2b89257bd2c350aa59267c8788069ef3f0146e86fbe057
MD5 a0a5edf12051e3e9304359ae98a4faca
BLAKE2b-256 2f91c69d7a36988dd6e4d8f35754a685779917d2342a9b7c3491bd5f88c5e6d2

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.11.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d254300e22aff5fad4343970a2d66e4a02a101478e246d196a47a691afeb7e29
MD5 def6b10b1f2d322e019baa568ed31f6b
BLAKE2b-256 9456312a0712bfe929216d7fb35285992bde04a307d207b2e881a0e6e467d411

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.11.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 07b8d89baf17d4e88ee8ad886c20fcf4f817df47a2e837666c18e4fd608d1325
MD5 759f0f7c58bbb564c7410cca3db21fd1
BLAKE2b-256 8770e892746bf4aea405056669e5095a5465b5a260e6929fbd41527be4b579f5

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.11.0-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 90fab5c8f44e47bcc44b7b01d0102458418818fb3db0a8ae4aa67e170003b54a
MD5 dca7f0551dda2864c86e378341dc40ec
BLAKE2b-256 9f649045d147099ede7a161d1a30addf7153cf1120138f9a89d0dba0bf397b21

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.11.0-cp310-none-win32.whl
Algorithm Hash digest
SHA256 df77be8e1e994c3c41494abf19a3ce9903ce83b78dab3208feef64345af36f06
MD5 2aab7ed48691d1baccdb8076193989a3
BLAKE2b-256 e7bc4de746fb1c0f02e3b19b735c4c76b61cf3fb191e92ab2ab2a2d3fa69425b

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.11.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5b21efac62c8f008ab47c5ab93a1468ccffdd8940cfede1def32910b428fc0d0
MD5 dc269f62eeef0a0e7da7c4f0cf9ba251
BLAKE2b-256 adb8b12fa7e02a4cbd80c85b8a93f66b8c1ad5726f39da8fb351e6794d1c6188

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.11.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b86cf049f350d1cdb99c46e84cd9e81926d0ef8ab2f721d0fb1b46add8411808
MD5 fa4cd720887ce5aee247a87e9bdbe67d
BLAKE2b-256 f580ff86261497483ac390000254718bc9ba6b4d61fe5ee5d455998e3134d240

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.11.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 95e29041423e9bd72b97fcdcf9c0c2880f45f4e77c2b79f5d506f533b0ceb41f
MD5 8b1cdc11d17cd453cd3764d57b980d02
BLAKE2b-256 8e7a43b53972e8e53c80a9c06275fc6965b328edaf12f16187675c2cc3112c0a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.11.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a24541fd9b5509e8741fd14a0b2b58b143dc5e76e34f3584093114f586bffdbe
MD5 908d6db53de53e77797c6ae162bbc99f
BLAKE2b-256 90f203cfc72200e752c99fe40d286b1d9a3de1ce5e6ebc3867988e6203ae85eb

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.11.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 39109665ced65bfa4f4b66403ffe6ae342e88641dfda56c4a257c86068061445
MD5 07bb1ec53668d1001f5b9a9153ee99cf
BLAKE2b-256 32704f48a0c0d81d97f79d8d56bb96c2023c5342d7cecc05ae08d28170a2f627

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.11.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 437bd19110cc62b6f720bd3ff329fb0e42ec2f988f64c5b9bd42eb7f600393c8
MD5 ed57657fee2270ae30661ab047e8ee4b
BLAKE2b-256 fd23b74f04f0f01ad0e1ccb5c98ccee0c04c87c139b9d616cba04d1aaca7d7df

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.11.0-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 892eb862cf83afba2aa4c95d797dd54a0ebf26c94759386810c7c3655957f5dd
MD5 8a77223d1babf2cf2c5d9eea33b3c242
BLAKE2b-256 b452a5ea61eddd3d16585f42d2e3fc5c68b62a27d44cb6de687ece1c801f12d6

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.11.0-cp39-none-win32.whl
Algorithm Hash digest
SHA256 31f5eaf428e68d16e8da9b9d45f30564602c50a0c298a465316d0596d6392a5c
MD5 2498a61b0db6d22e937e8f558bed6f8b
BLAKE2b-256 8e90959a4fa23268cfe512759dfcf0e9322b1e276378d8885b8b97b7ba7eaf88

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.11.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 edfa26cbbcc201af23555dd3391deb89ffd8a2af057d893f12bb0b2d36ab0eeb
MD5 35e807ad35276cee2faf055a42c0a9ae
BLAKE2b-256 fe28827230ec4ee7047ba0a99d6ec8ee019ce9f7b81d9bb6f42d6faa888b1e22

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.11.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 fffad7d418f30a75311380be93c75e1d0c426f4ff7bdf9bac76f23b54aefc666
MD5 e960cf165c5d644783883a0c49d2a6b8
BLAKE2b-256 3101fc8d582330ce1e0d9c8934ed11fff7ebd315aa054e596f99e58f44f5099b

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.11.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 da725bcbf23691bb45dbe24e001109186e6ab5a793b6fddfce5d28352f3f072a
MD5 aa86fefd872815f0045c5e86dcfe6b58
BLAKE2b-256 ee5d0ed0bcecd2a72c465f453864ac1fc47f81894f57ee371e4abd226e420b3a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.11.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 09e6256e0f37ca0db5b819cc4f720c96cdcf50e617e8720a67d4bed7b2739782
MD5 3b73146981b94f6998227a6c7508cf06
BLAKE2b-256 168a67ba4a65cd105e496447631dea1d67bfe5b082b7e1208eff4d4f7c9e39d6

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.11.0-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 72fd0a8268d5440cec7429462da16bb8d9fc9f4efea6d9236b713d02afefd5e1
MD5 46f92b0eed475c31e4a45807da501dbe
BLAKE2b-256 10435e472100db1fbf82dd50c725061d8557e573af4d7b9f5b4b665b69bdc91b

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.11.0-cp38-none-win32.whl
Algorithm Hash digest
SHA256 178cd713e21956246b44c77ec271da7af6aeb7aab2076b9555dd305c1f901205
MD5 2df2994a3c36a7fd2476bddeaeafa3eb
BLAKE2b-256 9b6e072ef6a962e1040ef68c1d66554a8426411f93adfaf9c54abb44c2cff001

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.11.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f1161c7823f523478ca218f165f7ebab600486e640fb05d4ba3e1aaef5535679
MD5 54c5a3d614c7f67eba2acbb096ae92cb
BLAKE2b-256 a0d6f0b26557c746374c881981983b9ba50b8abd80f7d2cf98d1fd896c5e27c0

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.11.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 927402e39f2115b46dab955f8bdb036e804019508fbd8b7d29ea17f0c9ba8115
MD5 c02353247bf416afcfda9836fd36d48e
BLAKE2b-256 a01799286cbc69c8027e50e14c1634a4da8aeed669b3c32456c36f007bba35fb

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.11.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 bd4fbcb4e58d10045da86b9c58e560ceb958353223120e9e6c655907315c978d
MD5 42205bb7a49df23d9fceb82cd700a731
BLAKE2b-256 61e1ba82ec04a3adb829e386c7da8a1b3b91fb831ade672b4cb4c439f1d29703

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.11.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c732b2676a3c73be252f25ea7dfa832a35ab10f8bd4f554c1fc8d1f216be00bf
MD5 76ddddabfff979a67e9b18479882eb3b
BLAKE2b-256 e66bbaa73d426ffb6a21fecb78205d039846044df04ea378b7a357da214ba556

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