Skip to main content

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.

Download files

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

Source Distribution

polars_xdt-0.8.0.tar.gz (975.2 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.8.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.8 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

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

Uploaded PyPymanylinux: glibc 2.17+ i686

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

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

polars_xdt-0.8.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.3 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymanylinux: glibc 2.17+ x86-64

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

Uploaded PyPymanylinux: glibc 2.17+ i686

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

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymanylinux: glibc 2.17+ x86-64

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

Uploaded PyPymanylinux: glibc 2.17+ i686

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

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.12+ x86-64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

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

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8Windows x86

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

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.8manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

File details

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

File metadata

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

File hashes

Hashes for polars_xdt-0.8.0.tar.gz
Algorithm Hash digest
SHA256 42d6725cb5687f6e3f4e958412d8bc7b349ee4c6cf2b41b2ad4be6de1bf2cb2f
MD5 7ed35ae6596d98568dc3d30169341488
BLAKE2b-256 a8e8cff25a6ebfe33c53e9ac6904e9a4f18561dfa928c7798e4a3cd3dd5168cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.8.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 978ad4817c93ca27ebe5bce486e92f7861511805f042dd1ec2ee185af0d4c324
MD5 a916144136fddfb27e8a5eb3f0bbef21
BLAKE2b-256 8c2974abd50eabc128d7981a89a91dc5b2ac9b777e850cfd52df5758a4cda75b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.8.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 fc616a6c09b52d3d4e40611675341842980a7d8ed6c95254611b633b4571c331
MD5 976aa4ea03ca8e80e42f0f57a37af54f
BLAKE2b-256 1f3aff951ff9aacf506b2ccfd0eb1c89682d9e224e486b1b4362a211021b7f70

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.8.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a5defc635caea17bd13a6314bb2ccbcf12500079ed819d247c3e0cd4ae3360fd
MD5 bb6901fd29c83e86ee16d46141fee015
BLAKE2b-256 3d213ea5fc79fd72eaf6a1ec76226cb3b66a3a9c5de8642f47b429f2d4ae7b66

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.8.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b3b98d1334af1aa5f94c021548ce5a73e2b119716dc119b62e013ffd36ed79c8
MD5 46b4502dda75ea9b037dc4560069c7b8
BLAKE2b-256 a81ab040b72c19f75a7517e2a3438c2b4d470c11c62efb50e92d41673bc0cecc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.8.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b9dcf80fdfa212e17188e4f35a724a2c22bae2e5ef66e9a5754ee7791274d97e
MD5 f26eaa63046b9227013f3a14061a3194
BLAKE2b-256 2fc06a0deb9bcbe0b6f02d3f75fda868fef0fb96cd5ff73c3b20d1b318550724

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.8.0-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 034905246d614f12720e2dc9ee5d28def389f7e1114f5dc375911694ba9e9cba
MD5 874a7a36c65a0126e50c17ea1d356141
BLAKE2b-256 5b9120f5298071e4ca4ec02fb0b67d4f28ce948db65822c4ebcdd0b29b94ffbc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.8.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 cc6c10fc3b387b280fc081b483de7840ee2498a137b5d766ae5a829718b2fea6
MD5 d789441b9ebd661d05efc2103e20a245
BLAKE2b-256 7162c10f7be32c407393264539f725f2b408fae5ecf1a8cad0a64950e1621ad6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.8.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 086186339dd28c84f64dd0c162c916ea44222026d16d485ee6af743eb48e7871
MD5 7a0717b8fefff8547f9bfb908a7b2e66
BLAKE2b-256 52e40fdd6fc460f6fd3bbf74eadd75a2c52cf6d6cd0b94634699141166e004d6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.8.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4318fc9d23daf451ebd9e2f534ce4fa8066b73742517bfa022dd9b662b9ae2e8
MD5 3e62f349a6fcb194d2c97ae2873e03e2
BLAKE2b-256 3c57a4897ae6ced41ea3c8c851b8baf9e05aa863fbb970cf7fc6e9a9b9de7d06

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.8.0-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f4116ea5bbcaec186c1b15d46625b7556b900215a77b164d95444b3025a0c716
MD5 3e001a08cafcbdfe7312fa64f420fdef
BLAKE2b-256 ffcfd63c1af36b2745157e42d2d26105b8a84dd083ea0a4a066b7f01ba71a0fd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.8.0-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0be7227aaf383c7a79a8d1073035e9b49cf38ba42ab8c5fa11078332f8044522
MD5 f299ec3a7ce94c2fcd77757debbf2036
BLAKE2b-256 7a45c63fe209a0a17a2693c0658fc3b82405d29fbb20f54d8423b0c351f80053

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.8.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0fe6e73fa3314ef2c8c2eb747241578d72f4618bc41fbd74b89f0f3f20e8d299
MD5 02dd39c58949badd46ad1edb7302913e
BLAKE2b-256 a7eea447d59693a63bed94e5daa46ca81d5960d30dd919344fd811d1fbd981b1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.8.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 41b7510a79aed1baf1bc0622cdf79578ac6286dde3d1ca54a0a6bbf834dcd9de
MD5 8e9924e83ce408401580c04bb1150958
BLAKE2b-256 a191e32927aa65735cd98c783bc8c07c01d83659aa5ad9c59128671061c879bc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.8.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2fca9cedcdb14989caf2156ec02066c75b3186d4a3da76c06c4f844161446569
MD5 f9ce88436ef0723f59a8fa9dbaf42f21
BLAKE2b-256 4c7c5c852e8b14df90a87d349f5289c2e21062c992bbacef01c20b88e4535590

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.8.0-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 8e876333018c56680becba5b06551993350d047b6a2d9d4c1e2ddde85eab25ce
MD5 aba97596827697083786e1e59defe4eb
BLAKE2b-256 9c705f011f0df0e025421585a276a0317875edbc6ae24f48d36aeebc28eed2ff

See more details on using hashes here.

File details

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

File metadata

  • Download URL: polars_xdt-0.8.0-cp312-none-win32.whl
  • Upload date:
  • Size: 2.7 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.8.0-cp312-none-win32.whl
Algorithm Hash digest
SHA256 d84f4510a552882486f07fb981668bd30f440cbac0d162e9b8c616cf310096bd
MD5 a5346f596852e8893d4d601a8171cbcc
BLAKE2b-256 9e5bf8e8a7ee9ed90e3f3c4824645c341237ef673df2054b10f5d1734b4ea27f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.8.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 457f1cb2063871ad7813235299e1cef51f311e26fc89f9bfa5b7ef711d51ca83
MD5 35b324f76376f4c096ac4f0022347cbe
BLAKE2b-256 717bd596f07ba5c5d2d6404c21398879df45326167e45f857d0b5f3cc58328b1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.8.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3bfde886e3acd8e794d6e6b134c54e449ae9b7175b2e711e8407a80987f176f5
MD5 c7235dc9a7eb81108f52915c10177cf5
BLAKE2b-256 30580de83672619f13ed4c7c84ca7135aa52204ddf2a4a2b17ae4712e06b8186

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.8.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3533c387537f41a7531dd1157f4681e370cdbe095a17acd0f514966143776ef3
MD5 caeb3c241d94ee46d7f6c914aa81d6e2
BLAKE2b-256 28e618cbf9ef98dc08a185fe22df9080a64d33d47c5be411ee5e820214a4ea7d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.8.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 aa602a3071201186cef05420c294c2f92edcdcca606bb8f08ed4dcee791a554b
MD5 4700e6e613d32c4972aaab02ebee9da6
BLAKE2b-256 db7dcf9449bf892b2c86410549b0867a13b30d0371c539b93ab87aafe5e16c34

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.8.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f8d34ed8b7eb15540a668e9fa504fbdac095f8682f4ca90f1e3e222f70e3b58a
MD5 7caab3ab9f39df9a1bc0589e3d5dba55
BLAKE2b-256 d6cd34ac8260132d4134c021b285fb79b35c8eff3527c2240bb94b9e942ef423

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.8.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 983cb30db84ac1a6bfe0f2f22a46d270bc8b01ebcf81fa024f65e3376aca245f
MD5 3c8b3103fe179d65109057daf9478ce5
BLAKE2b-256 780e85637cdadc8c6fa8bc2bd013da546e5318c82d8f9b08f6fca10f2a781bd8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.8.0-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 eb5b1fa941a77ec12aa9f31bda12a82c32a0bca794f156cd7c517d9b9499dc3c
MD5 56993a2b6e63a75c54a0ff099bc879e4
BLAKE2b-256 8394185d99bd1a11eca548f2a4334667fffb2cedde0e2e111a4c1b79b39604ae

See more details on using hashes here.

File details

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

File metadata

  • Download URL: polars_xdt-0.8.0-cp311-none-win32.whl
  • Upload date:
  • Size: 2.7 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.8.0-cp311-none-win32.whl
Algorithm Hash digest
SHA256 fffbd984f241f53c90ae1fed75ed8e8ea42177b73d7c06af27c3340a9fcd17a8
MD5 e2a4afb2cdbb68354a32317ac0a0cd8c
BLAKE2b-256 926ca59fd99438960a138e6ec4122257cc32b1c5aa6d5e3d4ddca318f6b37ded

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.8.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e61a8325f90cc86aa5c47232b6f8c1223015745b5d9b37a25613004df608fd3e
MD5 13544b90da969c704fdeeea9c40d2bc4
BLAKE2b-256 8bb42dc7e1ccee19c4642ec0fb6a8fd131be6c2367a492be71f05473ed01cf98

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.8.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1b48d3f22b5c829d1fbd16bdbdaece77a5272c167088d1f8195fe055d4b5f730
MD5 327358e29642458b20974649cbd11af1
BLAKE2b-256 2be9e30df1d8514d418dc55a1718b0b30dfddb7bde5b601df4406e21535781c6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.8.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 47d7e5bd6a595dfc9a3ee59ee7880bf38865064e30cca8cb2c54f50f2fff5855
MD5 b80bb4688d6becee51ad2a92c2959506
BLAKE2b-256 9073c3dbe649e2cdca21f419cf89c43f3112ce9328bffa2e8be297a16df35846

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.8.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a24526b1b57b57b6e1f83218b7098da71970ae314ec53eac56ff9da739c018e1
MD5 6e764b1097d960089219586953db826a
BLAKE2b-256 32ec45a6930c79bcd97074ecec76c2f6a0beed5003c6cb1e8d78961f0a47d496

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.8.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3db45ccd2a58ce40104052cd206c34cd7134c14741819f42d66d0acdbfcfc576
MD5 8c79390f3482feaac1d3cad6e658de97
BLAKE2b-256 13e99496ad445d1a8d6667c5f3368fc2cb543fa456b1efc345b0e4c4aa990c36

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.8.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ecae6a080574ade8f47e4c68c331596e793b560714e82bf5381e7fd062139b32
MD5 16b3ff63ed3a753d885788708f94cb99
BLAKE2b-256 8e926c43273382bebea4c69ea4e430fa1683334bdaaec6d8daccc9c247b37901

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.8.0-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 198504d3e293a9cfd4e63f3b4fbe8399f28017465e5ece774db5fe5a12dfdab6
MD5 e77c2244b6661f9e06e26997660793bd
BLAKE2b-256 12c5fe2405fe2e83741023cc658c394272bee9e2a659bca57c9bb18926e069dc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: polars_xdt-0.8.0-cp310-none-win32.whl
  • Upload date:
  • Size: 2.7 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.8.0-cp310-none-win32.whl
Algorithm Hash digest
SHA256 3c33b55573532e7a0c506f0fab81169508d5b5cf476a0c9fc51de6213deb0436
MD5 621833297c701a4cd0a762f674da97fc
BLAKE2b-256 5ac20c05f53ec4c8d6b029b3100e40afbc26895019ca5671aea13cfabc11bec1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.8.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 49c848340486c0e2803f4b1ddeb24a6049127598ca2f7dc4e975f4ea0ecab95b
MD5 819ef1766681d6d260fc2411988192b8
BLAKE2b-256 1122bea7915166e249391a8537f8260fbabee9456d759a9dd86acda36163d18a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.8.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6626a6dce8d41515a61a26d54d103dc81bd391aad6e0c4043633f1b5589def9e
MD5 a283b342a7ba1996ce0966adaa8c0521
BLAKE2b-256 77bc864fe446d03efe89e58059cd01bc72f07b5ec8158c0af8fba08c1138f03a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.8.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b1d7dc6ab97742530518210ad5da5d9fdfd0534bc092a9c3cb8cbb8281fcc0ad
MD5 526c170d4874504ce7e593335dc36c03
BLAKE2b-256 7573c5cddd2b1902cb3c1f1d4de5ef1121dbe711e3fe6567bf32f4f9a3497967

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.8.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 56da972e4a1a223d432029b8ab8dd838ca6687de85d4583c1c0902e829ba9ba9
MD5 2cf0bd53b248ab1ff552072ac921d22e
BLAKE2b-256 86c1392de6537524757c67ac38c1e77fdea74611f4798aa213eb98a1cd7b149f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.8.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c55c6d04708846a62dba0b5ded057c2fbb6bb213978a25c8aed2076d95042454
MD5 5bbe4469533a8cd3501b17107e111d18
BLAKE2b-256 d5a3b705a7030801a1c474a45da5fc4dc52fa7466b95ebf701bd33855f5d4ddb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.8.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 100df49140e96673c12539543a3535ab8e142520ca8195dd2276947f54abb271
MD5 a9c423be4b245d195c623341a8b8738d
BLAKE2b-256 f79a636041bb212c71d8fb5badd35d58db681c6ce46798f15ce2b9104b5625b2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.8.0-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 f7b1ae7a89c4e1c11ee7675aaa7d317d012ada3f795fef4a1fd0ff9908916dec
MD5 5d88d7c857815ded6d34b03cac74627b
BLAKE2b-256 3d66f43c48cf2a9561396b034a78c2c05b5b267180dae19f36fa7f3980ad168f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: polars_xdt-0.8.0-cp39-none-win32.whl
  • Upload date:
  • Size: 2.7 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.8.0-cp39-none-win32.whl
Algorithm Hash digest
SHA256 ecdac294f3ae5bc5aa353c1aa776cf140eaccdd969f838032a9e1e7c79ad962a
MD5 669d14b0518b343ae9a0a92f994a25f9
BLAKE2b-256 4f754fdee5f6554415de481ec138373941369476a99113d4e579f696bb14b41f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.8.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 53dbc589155a732bb3ce25e7fac968284c39ae065cf34e1a24b1d31e252a435c
MD5 4a7e33e9d13f5dcfebc79c13384f9f8f
BLAKE2b-256 d24ac303d5e5f54729ac0cb6f44a8aac6caf9796dc0f7a3861b89ccc50f0e2a6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.8.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 46f6be15dea4d288fefd173a840913b2a8e621f4d7de291b2029117d4697b3d6
MD5 292e47c5bcf4096a0f9e2475bff5f7b2
BLAKE2b-256 27310cb2814bebd158161d25f4480a6bf99b8892f8664a0010ca0a12d742c96d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.8.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 00db8f6749835df9a69fa16500f271860a9c21420335df630e7e6a6ad7981491
MD5 676581a5e3ece3a338becdbe8b25ff14
BLAKE2b-256 fc4f9833451603755d8273622ec0485c165cfdcb930fac22b3cd2f72ade083d8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.8.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0f4694f22be94697a73ced5ca3bb32c7e9ad2d38d33b4a22b265b53bed8ed508
MD5 b8f52397482b4550e53c5f08cd5924bb
BLAKE2b-256 e40ef9095f3339a1b1033db95546505fdaa4061e22ec3c22ecb88eb4185d37fc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.8.0-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 19d059632e24821844a9320da6b2f19a1c4fd0fe7cb612c347cc88d2c6b009fe
MD5 baef019d5db019fea84def0c80f5668d
BLAKE2b-256 03712a3482e8351d68a00fbeafda26cf7af0e922a10e53e51907a6a33ce613eb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: polars_xdt-0.8.0-cp38-none-win32.whl
  • Upload date:
  • Size: 2.7 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.8.0-cp38-none-win32.whl
Algorithm Hash digest
SHA256 5ed2bb702aff197d66cd8ae6f7e4f630425970021df1678535ec806698608874
MD5 e0f598ed36fe20582e386cd6d95efc78
BLAKE2b-256 3efdbd9fe020cca01fc62a63ac18c94425fc0e3cfc0424d154cb14692ce8700d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.8.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0a676b2178a01d9c8a1640a545b7933fdf839d18b42647b6f71ce9006aa64e30
MD5 681bf481078ad287ec1f129662546376
BLAKE2b-256 577d7a13cef47334ef2c7e590e408bd203fdb38fef50e94aaaddf357e8532552

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.8.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1a05b4d620252207ed31570ec918bef43f7df0196480bae7e2684a4e463720fb
MD5 8d49f13abb3a872b62701c00eb8ca312
BLAKE2b-256 fabccb649d236248fad64482fc3295086b71ca94d7f48d40068e0a66ddc39b0b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.8.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e88d8b45e1314292fc02b8ae20092e2fd70f0d88110ecfa252c37ff1a2f15bef
MD5 bfaf8c5a8bbcfc9d117660f3addaf78b
BLAKE2b-256 48a3c8e5fe42a28cca1f0424380b63cc10bb9daf49c9b1b9cb6ea14a53d7b7aa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.8.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 696c0e3877c5d628f2e7a1e078f757bc37847678687ee00f0419a688a8873406
MD5 aba1fc035ffff3e829ace9f236c7d92b
BLAKE2b-256 a310b846a9c72d597ec47f21d871a48e7c5fec533f2636c00a2bfe72c6eda009

See more details on using hashes here.

Release history Release notifications | RSS feed

0.17.1

6 files

0.17.0

6 files

0.16.8

6 files

0.16.7

6 files

0.16.2

6 files

0.16.1

6 files

0.16.0

9 files

0.15.3

9 files

0.15.2

9 files

0.15.0

9 files

0.14.14

9 files

0.14.13

9 files

0.14.12

9 files

0.14.11

9 files

0.14.10

9 files

0.14.7

9 files

0.14.6

9 files

0.14.5

9 files

0.14.3

9 files

0.14.2

9 files

0.14.1

9 files

0.14.0

9 files

0.13.0

9 files

0.12.11

9 files

0.12.8

9 files

0.12.7

9 files

0.12.6

51 files

0.12.5

51 files

0.12.4

51 files

0.12.3

51 files

0.12.2

51 files

0.12.1

51 files

0.11.0

51 files

0.10.0

51 files

0.9.0

51 files

0.8.1

51 files

This release

0.8.0 This release

51 files

0.7.1

51 files

0.7.0

51 files

0.6.0

51 files

0.5.7

51 files

0.5.3

51 files

0.5.2

51 files

0.5.1

51 files

0.5.0

51 files

0.4.3

69 files

0.4.2

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page