Skip to main content

eXtra stuff for Dates and Times in 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.12.4.tar.gz (976.1 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

polars_xdt-0.12.4-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (7.5 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

polars_xdt-0.12.4-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (7.6 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

polars_xdt-0.12.4-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (6.8 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

polars_xdt-0.12.4-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (7.0 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

polars_xdt-0.12.4-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (7.5 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

polars_xdt-0.12.4-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (7.6 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

polars_xdt-0.12.4-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (6.8 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

polars_xdt-0.12.4-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (7.0 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

polars_xdt-0.12.4-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (7.5 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

polars_xdt-0.12.4-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (7.6 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

polars_xdt-0.12.4-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (6.8 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

polars_xdt-0.12.4-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (7.0 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

polars_xdt-0.12.4-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (6.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

polars_xdt-0.12.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (7.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

polars_xdt-0.12.4-cp312-none-win_amd64.whl (3.7 MB view details)

Uploaded CPython 3.12Windows x86-64

polars_xdt-0.12.4-cp312-none-win32.whl (3.2 MB view details)

Uploaded CPython 3.12Windows x86

polars_xdt-0.12.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (7.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

polars_xdt-0.12.4-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (7.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

polars_xdt-0.12.4-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (6.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

polars_xdt-0.12.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (7.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

polars_xdt-0.12.4-cp312-cp312-macosx_11_0_arm64.whl (3.7 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

polars_xdt-0.12.4-cp312-cp312-macosx_10_12_x86_64.whl (4.0 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

polars_xdt-0.12.4-cp311-none-win_amd64.whl (3.7 MB view details)

Uploaded CPython 3.11Windows x86-64

polars_xdt-0.12.4-cp311-none-win32.whl (3.2 MB view details)

Uploaded CPython 3.11Windows x86

polars_xdt-0.12.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (7.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

polars_xdt-0.12.4-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (7.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

polars_xdt-0.12.4-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (6.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

polars_xdt-0.12.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (7.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

polars_xdt-0.12.4-cp311-cp311-macosx_11_0_arm64.whl (3.7 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

polars_xdt-0.12.4-cp311-cp311-macosx_10_12_x86_64.whl (4.0 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

polars_xdt-0.12.4-cp310-none-win_amd64.whl (3.7 MB view details)

Uploaded CPython 3.10Windows x86-64

polars_xdt-0.12.4-cp310-none-win32.whl (3.2 MB view details)

Uploaded CPython 3.10Windows x86

polars_xdt-0.12.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (7.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

polars_xdt-0.12.4-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (7.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

polars_xdt-0.12.4-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (6.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

polars_xdt-0.12.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (7.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

polars_xdt-0.12.4-cp310-cp310-macosx_11_0_arm64.whl (3.7 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

polars_xdt-0.12.4-cp310-cp310-macosx_10_12_x86_64.whl (4.0 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

polars_xdt-0.12.4-cp39-none-win_amd64.whl (3.7 MB view details)

Uploaded CPython 3.9Windows x86-64

polars_xdt-0.12.4-cp39-none-win32.whl (3.2 MB view details)

Uploaded CPython 3.9Windows x86

polars_xdt-0.12.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (7.5 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

polars_xdt-0.12.4-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (7.6 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

polars_xdt-0.12.4-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (6.8 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

polars_xdt-0.12.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (7.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

polars_xdt-0.12.4-cp38-none-win_amd64.whl (3.7 MB view details)

Uploaded CPython 3.8Windows x86-64

polars_xdt-0.12.4-cp38-none-win32.whl (3.2 MB view details)

Uploaded CPython 3.8Windows x86

polars_xdt-0.12.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (7.5 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

polars_xdt-0.12.4-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (7.6 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686

polars_xdt-0.12.4-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (6.8 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

polars_xdt-0.12.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (7.0 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

File details

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

File metadata

  • Download URL: polars_xdt-0.12.4.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.12.4.tar.gz
Algorithm Hash digest
SHA256 f6191c68bb73ed818aa9529543775caaf070e52397bd1edffd97a322e4788cb1
MD5 a0497de66cc589af305dce4c40c49041
BLAKE2b-256 32bf6b49f62675cc4217c72c89d74f1f8fd3b91e6f51e81de2c3682aad81fcf9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.4-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 68966d1b458be920f189b5a6b0674c7483ba466d1e0053fbf66b603c6a4174e8
MD5 804e5b62a03a83255b804796932fa304
BLAKE2b-256 50525c2e1e19cf4b41c475ec7eb508854055f64a45aafbeb7b3b417354737805

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.4-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7846cc95fae546f22737abe39521d84491b9ba803cac1779f750450ee6111561
MD5 1fbd6a9166295083cdcbaf23b7b04b88
BLAKE2b-256 8e7fac19731148557aa273e9dbfcd907d47fb20af6fcae3fef5a18453e0c1c80

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.4-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 dafc9bc966b85699401a75c9a7b3d7147dfaffd80f87b94564d71f883ff37a9d
MD5 6faaa8bc10430598a03b2c04e317060d
BLAKE2b-256 5c60162ed4689f37880c98309e25f46bfcf8fb508e3dd48f99e84b971523a73c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.4-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7107a3c70f58bcefb8d2a1feaa4ecafcd4dd8aed6bcee87988f86e98acbfaced
MD5 12e6f66acc7440eeb2c9e72b9651215a
BLAKE2b-256 a1ee6cb99a79d30b12b76707eff92975189aae18259599ca75db1402deb3f691

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.4-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6196a099187f8e67fbc8c5dca0fa50394f106438f67d62816f7a5123f598aeea
MD5 ad3b8c0dc680094dc5fb166c311d4a2a
BLAKE2b-256 491d06260f1db56508f4a97f4cc262b8696fe6db908042f4054bebc5c6af0e6e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.4-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c64db7aa29d5cfb812ca842190110a10e67a38f562bdcde8756133c0cc024fc5
MD5 f150fbc3ebba2a2a35a09122c8f48334
BLAKE2b-256 0870f079b80b6b2c6e6e09270b8897e5dbfd7f155d179d8041e546fbc56a0d52

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.4-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 07b0da3f3d8d9ed472d98174ae57a06df2c927cd02db9bf567aec9536ab5e013
MD5 19e51f5f951951cd8a29ee3253c30438
BLAKE2b-256 bcea04e481305d8a632c4fd7f7ef102e994711086a5193c4d61c76f096281f6a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.4-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 57a1aeb11dba35dc8bd1194acf5cb7301e3f8c1ae25d7d73b76c819db7f3cf0b
MD5 02fdf310ce5dcbd3c3c282a427bc201e
BLAKE2b-256 1efa29960f1a49e20dd24629de9f2f0de68fc5b03d55e6e5f5be56c97774620a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.4-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7d6eb6a9d8b239c421e0563cc5bba693dade10d1d8207744d5894c1bdcac93ff
MD5 ed0907ee38e159cc07c1917346c2d5e2
BLAKE2b-256 b2e61fb5e6f7f5b128c4d65f460937e77e44ef9cb1c914ae629fb34c39847707

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.4-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 afeb3485126912d6c1aadbb40e8112992f87728cf9886f9e747c406812144544
MD5 9d3a59da225cdd8e613b95773b9c0a4d
BLAKE2b-256 7667f080292cf72e2fa3522e1dc6d7e36c0f4ab17d05128d3e38cf546d5dda14

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.4-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2f8f88c0d68a543f96dae15d50f6a318fb06f36ec62f02aed5c55acab7128b90
MD5 3c2744f93348706eed7bfa8ff317c04f
BLAKE2b-256 ef33ca1a2ab80bfbf16304feb1b6686c2e6f2f8934323d655fddeb45797c33a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.4-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 709fa4d34dc90a162ae3607b667dff47a10584a7b0f08f0dc6162764b01664e5
MD5 c79aad2540a04540f416913fe1f941bf
BLAKE2b-256 bf436ebb7166ec4be9c88c1ed3903e203df7aa283bad1a19fe311b1e4edeffa8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.4-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b4d1c0045073306dfd15a7fc13fd58629c98090221441994c6cc72f3c0eb7fe8
MD5 a32eb1250d84584a410b147f7624861d
BLAKE2b-256 43cc387175dd282bbbb6903061837aacd164873a58a87b6a75782c5214e25490

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a62d024f95b9cefab066ed574c221b9f446c7feabb4f777e6eddbf6dab3b2875
MD5 6745a4f0373bb46477a39a7b96e57e8a
BLAKE2b-256 63706ee13243d7e8be2ed1488324530c3e74c665df48fe1bd8341af717efa890

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.4-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 eb17e33e1e718abc38a626f9bd2222cf731ec4bd9f319cf6d7a093797344c249
MD5 62cd94cb462bc57f54097142b792abba
BLAKE2b-256 079596ca54e3a2b59890f5f11f2008b4164b57cae9bac1fa2babc9b86e333eec

See more details on using hashes here.

File details

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

File metadata

  • Download URL: polars_xdt-0.12.4-cp312-none-win32.whl
  • Upload date:
  • Size: 3.2 MB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.4.0

File hashes

Hashes for polars_xdt-0.12.4-cp312-none-win32.whl
Algorithm Hash digest
SHA256 2834231cc168735368052acbc2ae2d2c0d27db6bec120ae6abd922ba5329e49a
MD5 3d257d18aa7a322d5c5a4c30b4129377
BLAKE2b-256 4988a63f57370c59f0f0d600fcfefd258b30190367a6e3a39d755418acdfbb91

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3f9350898d6f3c304ca8cefc03273651f58f10c6adbcfa33567beb5b86d06cc4
MD5 aaf5a100042f6f367a17b249eaca9db4
BLAKE2b-256 c4df04880cf347bef2b6d742a1d42efcdf9c2aeca4df8aed6449f685fd0e6a76

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.4-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1061804cf4dd2bef72f4c7519d7c72c581fd1cfffa5a43a9ff9c548f1d0dbb84
MD5 0d730fca7b5e976c777b492b7937493d
BLAKE2b-256 9822d2627420a5cce4f9ae04550a174dbb33ddeb8af79b6e1f8003ef86595b84

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.4-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e0f240979fa17f4cec5b35d374d8b8944ca73ea168a3fd2c476d13cb21d2ac95
MD5 ec8b20758cd3469d29c1d997c075e589
BLAKE2b-256 ed6bc17e88c28dd94efa228c12d7d67772605170f038599d82911ab0b66f40c1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 650728cfc64fcf1f3026d6ea6f923883f97a83b3a9e2b08bda802bbfaa69c952
MD5 08db71f30ae90a9c584c48f9c44081f7
BLAKE2b-256 18a9ca5c48691f2e71149561a1ad2ae303e902eec6929c8ad1f402ea97363256

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7227f3216e994fb63b01a396a94ed6ba8d563a7101d5b8b975fe796e8a6e314b
MD5 103c3d7f30adf5b3d75275309fe21eb3
BLAKE2b-256 efe6f790c94a0f3edc21fd1b4b5ad354f3272ac8e36ea27b61973ebab7005619

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.4-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b95a4495a8093de3eacef64576dba8c1ac21906ce105881693073510feb7a759
MD5 7f77a70cbd86ce66bea5285d90b2db0d
BLAKE2b-256 4cf0f2a7e9f319db361a1ca5ae659b6ea24cace5b03d529b8107c4dc86c4feeb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.4-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 f6eb09d49c86a7860c8facded8c5039a34659ce1a37864b73efb562bdf7d61ad
MD5 bff288fd5c12f41c8eb9c33e2d01892d
BLAKE2b-256 6027e0e7f6c3f471857dd9662efa743ef780c9d0fe531ca997d136ec09cbff90

See more details on using hashes here.

File details

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

File metadata

  • Download URL: polars_xdt-0.12.4-cp311-none-win32.whl
  • Upload date:
  • Size: 3.2 MB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.4.0

File hashes

Hashes for polars_xdt-0.12.4-cp311-none-win32.whl
Algorithm Hash digest
SHA256 e048825b1358eb30929c96d04d80d2c3296a6caa05af8815028e3aa736bd362d
MD5 94b5f37173fe35d2cc38f70b492dbf11
BLAKE2b-256 64c683c3759978ec0f327abb2e071e8f3da6ee6fd0f3ca832f7aff1244af7699

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fe5c99a4b67793eab3271ca91384f7db49f8c0d076bd01effa570d58bc0a2945
MD5 2a89ac3496a9b0ec7a053ceedc2db7ca
BLAKE2b-256 e59a030f79038a57bb41363783c8d8b1b94b02bb9b6c1f6a5a582efe2d4cbbb2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.4-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 14be6d04863fafb64d9e1020edde4629914c5f5478ec9cd82b74ce7252735b49
MD5 53e9797c6c0b958220da45de4bccca5b
BLAKE2b-256 fa6fdeb77bd1bc2a31e5cbf21de3af3e5042d3a1e4134bb2f88618d90c206a36

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.4-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 913347458deae412caf9d9132b6e31c61a635b738b7e58d5de4fd91391addef1
MD5 b296ce2c5e1614c68feae246ca9c8e80
BLAKE2b-256 fcb6f2861e30df763d6a2a7f15fd5952e41c3d189a569af7cfcd50b26f461902

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 11f0149328e73817c3160d5255ee89be46a320b5c25519eae8e28d5c4cbda68e
MD5 eb05a5e33cb1376102280c29702cfb68
BLAKE2b-256 061a38a16d9f9e3a1914f1349896c419c38399d3ac437b92a8337b8cc3a7fabd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3f6d47b23fdd70c532f1150a4af9061c6f80533b357ceb498278ddc324d8a07d
MD5 5b1f2f2fa686cb4c7d1db17cfa489717
BLAKE2b-256 6fd762a5114ca68694a07f45416c2f11f47b2cb358a87e802d0cc6119ddf11a4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.4-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f5bd4474782e9faafa6f976a07a38c97b853a0a5aff9629a8fbe4d6454f8b9c5
MD5 ee3499f008ae87b4fdc9bc535e38d6c0
BLAKE2b-256 fffb188de858bf9e16b68b0ecc0c34a643204dfc547fc5bceb62a9759498b5b0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.4-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 c3d281b6cf9b5208d716b2d8ed5c82c53373b81257fae5455c9099ec6ae6f3a1
MD5 7554cadbec6a33c4134efe799500a8b8
BLAKE2b-256 55476b6ec531d7a28e0960713e75f5b356fe80660c257181183cf2cf578219af

See more details on using hashes here.

File details

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

File metadata

  • Download URL: polars_xdt-0.12.4-cp310-none-win32.whl
  • Upload date:
  • Size: 3.2 MB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.4.0

File hashes

Hashes for polars_xdt-0.12.4-cp310-none-win32.whl
Algorithm Hash digest
SHA256 b9195ed6ea5cc90ee22e6bcf52791002573a1fc12f33898be28037c7e4ce4458
MD5 56e78141296c89fe96ca50e346441373
BLAKE2b-256 052f4431086960d97437cd938e9e825e69fa53704bb890bf5bc153f6b24dd313

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7d689e5c8b6ba79316732006b81595ecab25406921dfbe862a98eb21b824cb76
MD5 0dbaa8abdb1be95a91613b7e839e4ca5
BLAKE2b-256 90c2c33bcb1a2b5af4dae1910ef7c1333679a9c82aa69e1e9dccd18d9cfeaa47

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.4-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 62b9d6eee2adfaaec3ab0321c0e71f43a5085e245a72e138f1ad9757c26e6ade
MD5 25b0507cd20865337d46651101725810
BLAKE2b-256 f23d3ad80386f8b79855bffe630c63b2c0226a6e8c79aca01c7df89f64227a31

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.4-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2afe9a6caabd45f33e3412d782509e4ec54abacc4a4a460efb446135d85d5472
MD5 92346dc6d648d54223c19c5a435d96fd
BLAKE2b-256 e929b09df877b9911326bb5e9b80e11ade57cd5c07e6daef05e2a6b0630a781f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2691102530169ea1bba2c1154b70e5162b54c3f06ce4b4f7bf354a7a16c68278
MD5 7c4e6f2994bdac02745a625ecbde9f17
BLAKE2b-256 e09a4e0c94ca24c11fc6866c2c084cc7bfbdb9bf661becf18a5665a4eae073a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.4-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b28acf4b9ecbc0bbf9b0c9374b796525072af9b1f95c15ef8f735dd3c5962e1a
MD5 980aa75cec717bfe3cb67aa247d96173
BLAKE2b-256 9b8f9733e9f84b06a31882e1973094f522ddee1f6c20ce5384285bb9c717bee3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.4-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 795e739116e451d44a535d1b2d5f2cb5a73743e090cc46a9a01634249d7457ae
MD5 a00476f989b16e8d9984853960f77d0d
BLAKE2b-256 f2097853c000f5448c556dd5cc77b1c54a4d9d834ec9fdcf6b290945e268f5e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.4-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 1c1077aaec39a2cdf1d40052d42079c0f96a6dd9b9c91c1cb4c51c8d92a99c48
MD5 e958126b3aca2a7acacd18fe8c12595c
BLAKE2b-256 5b975d393b63bc178ec75a570fda48f162d2773c13364339eded413702bf59e5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: polars_xdt-0.12.4-cp39-none-win32.whl
  • Upload date:
  • Size: 3.2 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.4.0

File hashes

Hashes for polars_xdt-0.12.4-cp39-none-win32.whl
Algorithm Hash digest
SHA256 de6637b3a7d4bc0cf2df4b5e760bb4f0bdb1cbb41bc7dc7d53882a6637988329
MD5 760ebbc5196ac8d0e7e7f86d6db02548
BLAKE2b-256 ab974710267bf5e2b0d3b314f4d844c71d2b3a858b302639ed9aea1d6cead223

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2feee72be06afe632c84e0e1624aaa404d48c67796dcc09ad9660c506bf25b91
MD5 1d5ac9f5223dbb9c02415076245e42ab
BLAKE2b-256 6c2ba0ef57856d3dedaf218dc0fafeecfc2fb118acdffed84259591d24ced912

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.4-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1f245de34b0fca12ab7f04f767cbbd4a402d2105f22d2ff35c83e2595735a0da
MD5 8c16275a89817075b89dbdcd30e275a7
BLAKE2b-256 cbf5e6587cc3acdecdb9bf78956abfe0de4a932804fb76c92f558e82d75eb773

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.4-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6e2b7759da231f1883b91e9d85d660c1f423d46c1d4a6af9f47a5bf98464d9d9
MD5 0cdcd7d01b4e052b0d50c80c1dee9572
BLAKE2b-256 ac1aa1d6a50f0df498030dd3fb69e9b32ae1ccad8c0ab949e53e30caa84b013c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9420d55412871e86ea5e5639935725d943dc82fe002965ccb6e8e98adfb9d8a6
MD5 8ac866173cee013f5d447dca1e6f9de9
BLAKE2b-256 01e31c1263ae562a7004b65a3656a83c6ac05322856effa143fd976b09f2aa45

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.4-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 1fe60eb6cdbdb6d276c7d06498fc69184d1bf14649d066aa83eddfe2d0f6c365
MD5 8e2a6b484f9f5634b200d8989e08f4b2
BLAKE2b-256 8aa934f227ed7346b421446e9893d7f8f4f8fc69ac0c9ddefde34afe0bac08f4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: polars_xdt-0.12.4-cp38-none-win32.whl
  • Upload date:
  • Size: 3.2 MB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.4.0

File hashes

Hashes for polars_xdt-0.12.4-cp38-none-win32.whl
Algorithm Hash digest
SHA256 9d9517fea069666e371a6dc91accff2a8373ad692a250ae5746bb5714c51e352
MD5 99f9cc2c85ae2281b1995b12a53601ce
BLAKE2b-256 fb65f29efc33647e793c02c714db5c9e8d3fee0a691b9fdf4906480c2d8fbfed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3de46a926493f06442fab7d417c4a282d73d3c39e62157e461d3a85b0877dd42
MD5 f477a7ec8025f0a886ff7c479ec7eb21
BLAKE2b-256 c89a3f5894fc4ddbc3a9e2b3256451961f560449601958a24aa0aaa1f3ca23e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.4-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0c333b9377df811e21850e398c102182c3c8fc70a9c93fe1c024ebd6caff0382
MD5 90ea28787dfb160b13e76c6641e4aa04
BLAKE2b-256 4108994f32249d58315993dadd5790d0e7dcc2055f551c5c4916c2f20779fc44

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.4-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 205e25ea65d5654adc073b89cbb164f8995eaa28fed00ae60a20e3f8c7ead5da
MD5 f0da2de7bd86b5a32a0ee8a7ba71b6eb
BLAKE2b-256 9bbda85802d0a73263f6fb141e08753351a6608173992f14be021e84baffd00f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3ea825bc63a53e2d23cc66875123e28d6ffeb859e3cc37e7252350c663a1458c
MD5 3945303d828c02b9b33e0616065ffe6e
BLAKE2b-256 84d8c0b3b81ca190e372231efc836cbdfed7840c5bf1606a63f979e4c1fb0026

See more details on using hashes here.

Supported by

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