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

Uploaded Source

Built Distributions

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

Uploaded PyPy manylinux: glibc 2.17+ x86-64

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

Uploaded PyPy manylinux: glibc 2.17+ i686

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

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

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

Uploaded PyPy manylinux: glibc 2.17+ ARM64

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

Uploaded PyPy manylinux: glibc 2.17+ x86-64

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

Uploaded PyPy manylinux: glibc 2.17+ i686

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

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

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

Uploaded PyPy manylinux: glibc 2.17+ ARM64

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

Uploaded PyPy manylinux: glibc 2.17+ x86-64

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

Uploaded PyPy manylinux: glibc 2.17+ i686

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

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

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

Uploaded PyPy manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.12 Windows x86-64

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

Uploaded CPython 3.12 Windows x86

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

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.12 manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.12 macOS 11.0+ ARM64

polars_xdt-0.12.3-cp312-cp312-macosx_10_12_x86_64.whl (4.1 MB view details)

Uploaded CPython 3.12 macOS 10.12+ x86-64

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

Uploaded CPython 3.11 Windows x86-64

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

Uploaded CPython 3.11 Windows x86

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

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.11 macOS 11.0+ ARM64

polars_xdt-0.12.3-cp311-cp311-macosx_10_12_x86_64.whl (4.1 MB view details)

Uploaded CPython 3.11 macOS 10.12+ x86-64

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

Uploaded CPython 3.10 Windows x86-64

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

Uploaded CPython 3.10 Windows x86

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

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.10 macOS 11.0+ ARM64

polars_xdt-0.12.3-cp310-cp310-macosx_10_12_x86_64.whl (4.1 MB view details)

Uploaded CPython 3.10 macOS 10.12+ x86-64

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

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 Windows x86

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

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

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

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

File details

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

File metadata

  • Download URL: polars_xdt-0.12.3.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.3.tar.gz
Algorithm Hash digest
SHA256 4d69f7cd467652c845f83bec8563b3b8a942ede20d5c94cb5a65c5fad8641826
MD5 16ea53e1b3da9a392d1e7c575ddb9b98
BLAKE2b-256 7916e8f1e9ea3367e058821ffe31d6507398a7a726f585214e17675610cfbd1a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 713a6b2f7f347a212d7e340dbf56d1a76c2b3f18dcef0c6a3d7e939da21f920d
MD5 a0631f5b8271e4c215d7f39b98fdbef7
BLAKE2b-256 00d3964a2d5b63ef5ad0886a9d9fd1f46fc03738899c1024f2dd8928d88930f2

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.3-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ea63b03ef27e00405dd24403401cbddc3761c75c2da5ed3ae67b1d75441aa4f7
MD5 0d5c5abe66d14b7b450e60e6d3a2dd7b
BLAKE2b-256 d298e0bd4bbfcac2dde15773c2af969ecc0c3a2ea78dce1c3ed55d7f104b27d9

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.3-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 bfe6611b874c4bb19f7ad0f1a51e1795f179ca4d453ec373f437262034467df4
MD5 6e798678cbf12a98bc9c255d577d2a1a
BLAKE2b-256 81938fb5d52f138672ea759754adcaf776d9e6b54b22025a5a85703bc075da17

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.3-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8c9fd511c453e4c878ae1c0753537da25f6ba3f41d433e0c14db628faea04607
MD5 8e62bbcc84f214bd3daed932edf4f9c0
BLAKE2b-256 ada3adf83fd0f89104c4225715630fb5eb48e63c5e91d766c8022440dbd41000

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.3-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ee91e91fe3ca5cdb863b2fc70183109120f9e9d11440cc4b42fccb9bb2bb8396
MD5 d583fe5d8d5e5d653d3ecf91be3e510a
BLAKE2b-256 9b3300badefe1ec4faca64ee748ed6336dca5d962daf125262ade167bc5516f2

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.3-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3149d20674efd2ccdb5f81441eff7ab5a17c31db7ae99b41413d27c70311ea68
MD5 cfb4aa2607be048a5d3ca5e009f74d5f
BLAKE2b-256 ecaadbb3a880fb18d7612f5abd44791076cda92883d72303bdde1f6f8f83dc93

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.3-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9385930c82949d843b2fa4c07d9b8acd569a74a9e1f613be3573bf3fcb0594f9
MD5 8ff646d929f9d7aa7716ed41edd5965d
BLAKE2b-256 33dbd65fee4f53c5e8dd799a8378df928023613fc060d53a263a89f3305102bf

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.3-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 07e5c6ff5a9dd0aad8f21cc581995ca2d285b7bd3a4ec002b840e1b615bc353f
MD5 cd4ec8050e55b2743c0f5adbe4fbf3e3
BLAKE2b-256 e0493d73be6e2822ecec264eca7c5a95ad125f3912f13c40562e47c8dab37d26

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.3-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c8d19884d4cd07f89a42b7cb32d8326f0ad8bef6eec025cd21152bac1c95cd72
MD5 b63bcd36903e5f125af241930dcbc897
BLAKE2b-256 ff870d341cbf5568d58d20f2222d407c8c80b909ea0b5512b094a6158ac5c908

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.3-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 fb894d67dc5ce069e526a2be005fccc086e403a94e1aeb019068bde96b293b61
MD5 997145a5f98f936433b3f8f97cb2ff88
BLAKE2b-256 8733d593e04fb17c79cf0ca009b5d5f7f3255ce35d30b56a68d682003183ab54

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.3-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e422c5550a6822e2c6ceaf721580f9caa172d000888b433bf63096f7da374d8c
MD5 796ffda24d7412afcfb7134926a5d0ed
BLAKE2b-256 a5c56c8fddacc5b0f0d94fad042d93cc8051cf82d3450e39b8c83d222dda85d0

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.3-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b99da1e6cc067a5115910a8b76e20fd85296076a36b7f13fff4c8e9ee62d6503
MD5 70933c16b0c499fb6d04dee8a0ea35bd
BLAKE2b-256 cf000234e542ef6250d3b00dca4c769ee23d01bb67a920078fb623918a0157b7

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.3-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b56f00c7f86664e5e17f9d266a8dac1272acb383949dad8cbc6e70b4dc3fdeec
MD5 7eb4946a6a86c750b8e30cc9a2fcf50c
BLAKE2b-256 8ef8d9214d2deb90841f29e1a71f5fc83505098db73fa94721cf797435c1c954

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4ab459b3d7ed0f0c1506ecba94ac4682de7fbf0601ec08e18582acad27d5e723
MD5 b5638e66769873d8f74ea9caacb3f1dd
BLAKE2b-256 bc9d972fb5a0cc0d1772797026153c7bda416b7ba8128fe275135b3193d23b5d

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.3-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 d27e0523e7b26e3a78759a2ab5c19b2a002c9a20e6182bcc327f42e71d28acf3
MD5 b5250c13c211fd2fa6021e3bcdf42d6a
BLAKE2b-256 4dc0c9ad06e9ed143281774223a6dc23d2a40060e7a96a1ff960e0b3c2f7c4e8

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.3-cp312-none-win32.whl
Algorithm Hash digest
SHA256 d3eb3d42fcc171aee90a226fd4f4f5bc6a9b2ca7482c31f7658650e84b785957
MD5 211762ce35c6e77b1439515abdb2e0e9
BLAKE2b-256 00052f7af4abf523a177d441b129511360b7c7cd08d0682eedeae186dd74aed3

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2da8cc981f22b59ae543c33dfe20b471e2d12769636e87125f122fd3d4728a6f
MD5 27034d259a2847425dbfa15896d127be
BLAKE2b-256 f14f91f48287fad16596749405b8629d8e9de84fed435f66ee18296a45a67039

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.3-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b83f85f87d03665204d291536731cfec459739c4829f17073c549fbf66f537bc
MD5 f8770f2f70d9805969b5dfba3b4c5a75
BLAKE2b-256 33bbd3f032fe1a4fb72e80091bb4be077adfc4ec03b3a531f9f0957341298937

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 faf6806c07798f76528605cede65686008a4750a5689b10255070805047e6ed0
MD5 121c768b46b7b861988b08de7d55baef
BLAKE2b-256 0eda5e4d7357bcb771c3052cc281d1d60c25278de1e1a034a180fa37ed0b05b5

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8b7dea197a3473c05d54acd6a36a31009dbe086b189ad956d102e8f00cae1391
MD5 a16d31dcce6bb810eb7fb14aa410f8ab
BLAKE2b-256 272672c4b4c56a36f8c956fcc53875d46e96d7593883004a3191515807a192aa

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ca85c8aa2aef0ff9b346652114513ff3e237d0d16e302e155aa4a820aa9b3dcb
MD5 d4e89b6e5950442b9ce681a8eab69ade
BLAKE2b-256 3bb91322cb2d5afbe3dfbb6e1c2d726a05e3b47bb9fce78e357414559f76a68b

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.3-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ecfa08ab2c098a097b2f364838c981b04c7ff0a6770f420461f298615c5fba2d
MD5 60b2caf35ef9e9bd6e264d6dbde63008
BLAKE2b-256 79e116fa19eb44c4324753546ec5b1c0e1205c85256ed0ceafb1bbd441b6a4bc

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.3-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 90432de8ea9c24cfa25372eb90b0260b343b4f3df6006ea612aa906b358616c3
MD5 2c2b99a8057783d48c59db308e48dee4
BLAKE2b-256 f8300f4149025e38e22e4be6085e253d839dccfa3c3dd6803ae7988f7d99c349

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.3-cp311-none-win32.whl
Algorithm Hash digest
SHA256 3cebefd763e7cfc3fe7ab8410d24a40c4055c9162423a270bd664a2b2bad68c6
MD5 55fa52545dcc8e78686631d6fafa6604
BLAKE2b-256 fdc8a93a2778ebc65cbb69b343a6a9253e7efe5583cdd61220bf5dfa2d0c348c

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1908a12cc926677dabb5f2e16a7c0ca79ced42f3386c488b5f9383c2c93ec31f
MD5 fd555bd028eaed4797ffefa7d111c649
BLAKE2b-256 ec88e592ddcdef24fd9d0eb6c8089286f1d9b51eba7c3826138744a8a9fd3bb7

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.3-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 170c48eaa9a61f6b797d9886b92531348dd01d40158d723194045bceeee09f91
MD5 d21cc787a8108f69e696acf6c68de695
BLAKE2b-256 c2e2788cdc4f8eb34300a452555893e0f834a1dccb083d423a82f2c3c38c30ce

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 997d42d292e3d65a9b36dd89d07271513788a9d28659b04812ce57840e88ed4b
MD5 bd32861a24d69892f67cee45fb471401
BLAKE2b-256 2991dc6387e5cb069a9c313b37805a52b1bb069ecca6739ec8f3e71845c673a5

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4ef98c424b4c3ec523151e90c786fce48192dc0d2c299ecbcd0510711b0868d5
MD5 02999d771e831c7390a7d77a6466b6b4
BLAKE2b-256 269a3c0ca29723e182ca678f0b2f51c90745f6a49012367716d6ffc47ea7fbbf

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5ba202be925e398fa25aecb16ab60894ae19e5ed69d34c0a91dab5ab84d39a2e
MD5 2370032facdae80a47f63325f35966f9
BLAKE2b-256 2056b1b0c9cf7b3591bfb9743ca4dbf9ef65030d593f669eba5fdcb0427aaa6e

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.3-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3afe669d01b1b4017d93f5876bdde79f1d4346e2dccc89bec543c25a546cac69
MD5 b4a717670ec8da0c71d557e9c9dd28da
BLAKE2b-256 60497e4e16fbf566f43be8369b4665dd8162a250cc8a756137300fc03e806129

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.3-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 1fd038cba40701d909359dd45bcf021bf8280da577adff8666766395a4f7a3aa
MD5 f050115a50f7f5ecca594829fe1484fd
BLAKE2b-256 674eaaf4c1a7a2735cb5aca03039b0c4c25535cf70d66e21a8763b5f01f54f90

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.3-cp310-none-win32.whl
Algorithm Hash digest
SHA256 61cdb91f958f00ac5c7eb165faa2fdb15463f93725e4e951c6497cd40eef8caf
MD5 3be6f039284b7838fe6adc4c85460e92
BLAKE2b-256 44dc884c8a0e43a03cfb562f4d5827413950d6b9b540763a14aeccb5822d96f5

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 40a2b57c19d46feec35c66765ca1e40191376a943d2b4e53a033330084c372a9
MD5 eba0ac172eb4191b817796c1ead322e2
BLAKE2b-256 bd1d99c56e0046073f6bca02e7b8bb56261af770234e4850fa8ecedd9dc7e6ad

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.3-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b490514e7ff2a8fcda8e124fe27a2617d0b75bc95541d76e199d2f7b3563ee0d
MD5 827d39894f29ea8fc7674f887e199305
BLAKE2b-256 8469bcb4c2b54a703f2e681281cca607318dc21790c98e949c314d957509d02e

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a31b592f1fbc0630956addda7ee42f7524159391843c3b91cb2a3d22355baa18
MD5 86ec940f334da1bb87f63ca8f855befc
BLAKE2b-256 80d2ff702b1577587ce84909107ade3ab0ac30eb2d5f29145c605b72820a29fd

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e8613897c2277fb6795b3d18a0725d18424610262de5db22164abea38cd484ce
MD5 240a8748ba02da6462ce37fc7046cce9
BLAKE2b-256 323be9e2f26e8e6c4463a0e542437cd555cf1838a0e71dd7d0f13b44e2db1456

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f7cb0b402a3794d89f9ed4899c3fdae06ada180cdde99fbb1d0586d4e00f3888
MD5 c19eabde3f57ecaa9f5a6133296059e1
BLAKE2b-256 c948bae1b159d1d2d15a6a937cc292909e64e5c38e1cbe385a9f3a1a32b5dbcb

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.3-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 123bd2fc6b03274ec728443c5d60858fc6967fcc87aeab420e55eddee1398bfc
MD5 46bdf57f20ae210b2c6ffc6f1c291e6f
BLAKE2b-256 83735350f37c5c4613fdddec2e4f883c66af3043ee9442489f76ea736d515d89

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.3-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 c0fcde6bc5e788097c41c0e4c59f9167255890766018d0fa294d5166b95dff9f
MD5 470e7f8ffa6cf9beea640b133dc5f30a
BLAKE2b-256 94b55b830089043c5b3d6c7096d0f9ad509012683b101293bad671612626f500

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.3-cp39-none-win32.whl
Algorithm Hash digest
SHA256 1bebf68147a3eb944074c00f0ee324182cc3c5de39ab2763f536ebcf4e86b2ac
MD5 ddfe242ba2a334e5d267021b89de3e7b
BLAKE2b-256 3df51784d98a42061dc836cdce65e19f3579b705eb025c8325050e26e9ff15c2

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 89310965eb87b1fb7153a2c4063e4c4a9a37e9faaedc2486d30e8efb8b46551c
MD5 de92c0ee41fe9c9321e3f27bab8a734c
BLAKE2b-256 ae1b004aeba78f276f2bb311db1a3a5758889ee25ede9a1fcad2131c50b742d9

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.3-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f5386c72a7ad54b0b6ae4fc69bf77baf3248533f41e7e3111919e8f08193e4bd
MD5 f7e41717fbcef82bf7b1c24300630c5f
BLAKE2b-256 fa722002812b7e670609c2aa8dda2f7b9db9aabaf72e906f76933cc6ea58fcf3

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.3-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 fd868fd8a50c62007b916681d5c0d30605733468b7295bb71af038f531a80a84
MD5 53807e8d412f43175fb23f1118f2f1ab
BLAKE2b-256 957512f190d752407ad61fe28cbf6f32f1e23130842e7800539bbfabda2460bf

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cbb86db9268c01c1d0857127d45713065c2bd9d18f21e521bc0db80a9dc9a78f
MD5 8f37a1e68ab9dec65cf758f6e66bb3b4
BLAKE2b-256 858db813258545578e2e7be18f5025b355e622a9a7a4bca9915fb3269b8c3caf

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.3-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 20fbeb7187eae250bec1d9fba171f68617fc8cf70d2dea80e9d6198d6b62d06c
MD5 16921b30070b835c30bfc58e9ced99eb
BLAKE2b-256 8557ba542aa125368424ef51c94f0db9469619417429a1f798eaa78f726ea51a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.3-cp38-none-win32.whl
Algorithm Hash digest
SHA256 0e434d6f0ec61d9675478cc5de27185ad3cafd46b4ba5aef984a780f45affcc0
MD5 2a91ed7bf1e287a18d38bbd24cea5dfa
BLAKE2b-256 36b639e58fcc21715f4470f5669eab5122ff7db88b09df439a851ce0dceb0943

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 84aa1a39054c1d6dfdec6ec4f90365502b0c4591deac69f65abc1bc620882943
MD5 5434598ff10adcb37f9ea4c77caaed10
BLAKE2b-256 294ae74cd1842f41a9e6c77a4667a5cb314ff60df0f51531c037dbd9cad0e110

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.3-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 41ce83f1e12851db73d2f76e38ccbc2a52c72712bf28e3573d1ce9ea36d50fc5
MD5 ef92f0f7ff383753894d1f1b379d5cf8
BLAKE2b-256 1a1e064acad689c21b7a399c566a19af08c27288b056ab4a588722f09bf5fa07

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.3-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6b619bed730150de81cb24421a8996214c8265bf4fd467a58948690ff551b999
MD5 43081964a8843cfe7fbcd1d7c1b8adc2
BLAKE2b-256 50eaefaa8ef30fc15bf01677c49a2630321fa0621795df0b806fa04a9e97f170

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_xdt-0.12.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9d8c01411e199f60dfe58875f780e717e345c191473ec8c9bf60d0e7478d4b86
MD5 12241f9fc2bc707c2329ff2e016f815c
BLAKE2b-256 fec304fda7f0e9abe236d3b528f3994876215ed5ed270e5ef34e294cbe22811b

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