Skip to main content

Business day utilities for Polars

Project description

Polars-business

polars-business

PyPI version Read the docs!

Business day utilities for Polars.

  • ✅ blazingly fast, written in Rust!
  • ✅ seamless Polars integration!
  • ✅ define your own custom holidays and weekends!

Installation

First, you need to install Polars.

Then, you'll need to install polars-business:

pip install polars-business

Then, if you can run

from datetime import date
import polars_business as plb

print(plb.date_range(date(2023, 1, 1), date(2023, 1, 10), eager=True))

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_business as plb


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=plb.col("date").bdt.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   │
└────────────┴──────────────┘

You can also count the number of business days between two given dates, specify a custom calendar holiday, and create a date range excluding workdays.

Read the documentation for more examples!

Performance

Single-threaded performance is:

  • about on par with NumPy (it's essentially a Rust reimplementation)
  • about an order of magnitude faster than pandas.

but note that Polars will take care of parallelisation for you, and that this plugin will fit in with Polars lazy execution and not require any data conversion.

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_business-0.3.8.tar.gz (20.7 kB view details)

Uploaded Source

Built Distributions

polars_business-0.3.8-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.7 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

polars_business-0.3.8-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (7.2 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

polars_business-0.3.8-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (6.9 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

polars_business-0.3.8-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (6.1 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

polars_business-0.3.8-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.7 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

polars_business-0.3.8-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (7.2 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

polars_business-0.3.8-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (6.9 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

polars_business-0.3.8-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (6.1 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

polars_business-0.3.8-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (7.2 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ s390x

polars_business-0.3.8-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (9.4 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ppc64le

polars_business-0.3.8-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (6.1 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARMv7l

polars_business-0.3.8-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.1 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARM64

polars_business-0.3.8-cp312-none-win_amd64.whl (3.0 MB view details)

Uploaded CPython 3.12 Windows x86-64

polars_business-0.3.8-cp312-none-win32.whl (2.6 MB view details)

Uploaded CPython 3.12 Windows x86

polars_business-0.3.8-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.7 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

polars_business-0.3.8-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (7.2 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

polars_business-0.3.8-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (9.4 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

polars_business-0.3.8-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (6.9 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ i686

polars_business-0.3.8-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (6.1 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARMv7l

polars_business-0.3.8-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.1 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

polars_business-0.3.8-cp312-cp312-macosx_11_0_arm64.whl (3.0 MB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

polars_business-0.3.8-cp312-cp312-macosx_10_12_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.12 macOS 10.12+ x86-64

polars_business-0.3.8-cp311-none-win_amd64.whl (3.0 MB view details)

Uploaded CPython 3.11 Windows x86-64

polars_business-0.3.8-cp311-none-win32.whl (2.6 MB view details)

Uploaded CPython 3.11 Windows x86

polars_business-0.3.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.7 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

polars_business-0.3.8-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (7.2 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

polars_business-0.3.8-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (9.4 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

polars_business-0.3.8-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (6.9 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686

polars_business-0.3.8-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (6.1 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARMv7l

polars_business-0.3.8-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.1 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

polars_business-0.3.8-cp311-cp311-macosx_11_0_arm64.whl (3.0 MB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

polars_business-0.3.8-cp311-cp311-macosx_10_12_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.11 macOS 10.12+ x86-64

polars_business-0.3.8-cp310-none-win_amd64.whl (3.0 MB view details)

Uploaded CPython 3.10 Windows x86-64

polars_business-0.3.8-cp310-none-win32.whl (2.6 MB view details)

Uploaded CPython 3.10 Windows x86

polars_business-0.3.8-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.7 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

polars_business-0.3.8-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (7.2 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

polars_business-0.3.8-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (9.4 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

polars_business-0.3.8-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (6.9 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686

polars_business-0.3.8-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (6.1 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARMv7l

polars_business-0.3.8-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.1 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

polars_business-0.3.8-cp310-cp310-macosx_11_0_arm64.whl (3.0 MB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

polars_business-0.3.8-cp310-cp310-macosx_10_12_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.10 macOS 10.12+ x86-64

polars_business-0.3.8-cp39-none-win_amd64.whl (3.0 MB view details)

Uploaded CPython 3.9 Windows x86-64

polars_business-0.3.8-cp39-none-win32.whl (2.6 MB view details)

Uploaded CPython 3.9 Windows x86

polars_business-0.3.8-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.7 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

polars_business-0.3.8-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (7.2 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

polars_business-0.3.8-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (9.4 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

polars_business-0.3.8-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (6.9 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686

polars_business-0.3.8-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (6.1 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARMv7l

polars_business-0.3.8-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.1 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

polars_business-0.3.8-cp38-none-win_amd64.whl (3.0 MB view details)

Uploaded CPython 3.8 Windows x86-64

polars_business-0.3.8-cp38-none-win32.whl (2.6 MB view details)

Uploaded CPython 3.8 Windows x86

polars_business-0.3.8-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.7 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

polars_business-0.3.8-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (7.2 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

polars_business-0.3.8-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (9.4 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

polars_business-0.3.8-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (6.9 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686

polars_business-0.3.8-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (6.1 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARMv7l

polars_business-0.3.8-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.1 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

File details

Details for the file polars_business-0.3.8.tar.gz.

File metadata

  • Download URL: polars_business-0.3.8.tar.gz
  • Upload date:
  • Size: 20.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.3.1

File hashes

Hashes for polars_business-0.3.8.tar.gz
Algorithm Hash digest
SHA256 bd5fcd717574bedb433586f8d7abfabd63d2c3f0bbc29824a9f441b762b478d7
MD5 36e407190fe7ca739b9cde63481767ef
BLAKE2b-256 288e3e9398c95e31429a15ba76a2af88583cd1f980f7b36d4b9ca9c74819452f

See more details on using hashes here.

Provenance

File details

Details for the file polars_business-0.3.8-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for polars_business-0.3.8-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b40d497032d6a6c3a8c8aaa5cd365b84573c6fe404da13208c268753d223ceca
MD5 17b64cb28eaef0643d41aed5e9cad7ae
BLAKE2b-256 cbf97bc115c78306f4b9ab80388c95c5dd105f6687ec8e400a207a8802426208

See more details on using hashes here.

Provenance

File details

Details for the file polars_business-0.3.8-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for polars_business-0.3.8-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 fd4f937192178eecfb80e75c3429ac9e32ceb79249499c8ae8a758579508c4e3
MD5 b7e5b6e52431450bbfe5e250dee285b0
BLAKE2b-256 fbcc5c9a26253c1f035a14d54eb76388fecd0fbeef923112bcb6903ce8489c35

See more details on using hashes here.

Provenance

File details

Details for the file polars_business-0.3.8-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for polars_business-0.3.8-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0435fe0b8a0c801e5607cd8fd1b9bdab4d5219985576f4b3fc1add196742560a
MD5 aa3007f965e7bc6a56b6f88c110591a1
BLAKE2b-256 d2e0bc20e8d5d756b416267ef042973e32b0939ffc86da7972893f88e3f7c129

See more details on using hashes here.

Provenance

File details

Details for the file polars_business-0.3.8-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for polars_business-0.3.8-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 75bfeefe51ee9800831284eaf3969a07fa4a16c800f83f0ca2cc34060b189e55
MD5 1dfb42a43d503dc2e1150ff94fb7e8ff
BLAKE2b-256 7be642dfdf6ee87fb9da76be73275e0b7fdbeb5f78b1837932f068b6ac6b1b4a

See more details on using hashes here.

Provenance

File details

Details for the file polars_business-0.3.8-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for polars_business-0.3.8-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e49fc88de9992b78ab3224f4555a28243233d95eef0060601dddf9c05a100bf1
MD5 4f5e894e6e286dbe97c7d20849917e0d
BLAKE2b-256 a07a75299f451330c37816b8e932f9aca7b46264d94fdafac1b3c6399a09bc22

See more details on using hashes here.

Provenance

File details

Details for the file polars_business-0.3.8-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for polars_business-0.3.8-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5be69fb426ca8049a16bde5841a5d64edad832cc7ab17206982c44d9640b1445
MD5 d50c3f50faff2a19a3f64516cb903795
BLAKE2b-256 c67c21450925ceb773a4322ea9c73fcabe3f851440a35b04bc2a20533c48f7a4

See more details on using hashes here.

Provenance

File details

Details for the file polars_business-0.3.8-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for polars_business-0.3.8-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 499010f14a133e8e8dbb8065e0a61ae765fc93c8376c80c96d7177e015e4ddc9
MD5 756780650ef2d03eed62e61acb40fe8e
BLAKE2b-256 c06b74d716be6f583c20d24c6d783a26088e0ccae141206c0599e819b0d0b11f

See more details on using hashes here.

Provenance

File details

Details for the file polars_business-0.3.8-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for polars_business-0.3.8-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d57d8667b11c4b9ab04f83ff15d70a73e0e7243e85573e6af2715ede174249f4
MD5 a4a375d74cd3b212e6a991e838c8fafd
BLAKE2b-256 932e58a07c87e0944b6f780c1bbdda00e04a93eab3b9db5d7d75940aa8f8a029

See more details on using hashes here.

Provenance

File details

Details for the file polars_business-0.3.8-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for polars_business-0.3.8-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 df72d3cce3cc2ca9178c247e9f42a3c05ff3f74d34a10dee59805db437285c59
MD5 5d0acb48c44275c879c8be71e10fdbfa
BLAKE2b-256 4d2eada3e5d292e8a03ebc2cf37df59a410ee1dcfc6838c17922ac6970ff28a9

See more details on using hashes here.

Provenance

File details

Details for the file polars_business-0.3.8-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for polars_business-0.3.8-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 270f1fdfd4e6c60c0ff47415905784d43b7168355845f982b0b0d0ee17f6b35c
MD5 453abf9cee85829608d999cf710f8ca7
BLAKE2b-256 7e38fe8e2b6bd8068e1155bfe3306eb91122d0b1d03364b85363108ff7f759a1

See more details on using hashes here.

Provenance

File details

Details for the file polars_business-0.3.8-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for polars_business-0.3.8-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 615bf0e94e1e3ebf439f2d193fa61cb3522b5f505ceda5c7982c058a5de7e64b
MD5 702b07aeb7ed16fb0dafb9eb8bef8fcd
BLAKE2b-256 9e766653947510aa450f7906d1b774107afb5b70c8172fc44c35ddd72f56a90a

See more details on using hashes here.

Provenance

File details

Details for the file polars_business-0.3.8-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for polars_business-0.3.8-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 732e1c18b8baeb19393f6e11cbcda38048e97ec71f0ced5390a69c54b0391824
MD5 f191d54434df37277650633609d30b09
BLAKE2b-256 b1ae50b9aaf9d2354d3ee573b910d1dbae67e90d0fbcd06f1c7b7f269685147d

See more details on using hashes here.

Provenance

File details

Details for the file polars_business-0.3.8-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for polars_business-0.3.8-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 66e128ab49286f9b6e1b8e9414bd1626d37238fe29c1034feb291fc66865acbe
MD5 98431e00247d9c6f0deb8f8fcd395d3b
BLAKE2b-256 8452781b9c0d6b9929731d3f627424f3c9f6998d0ad5843a86eff7351f5076b1

See more details on using hashes here.

Provenance

File details

Details for the file polars_business-0.3.8-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for polars_business-0.3.8-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d5cedc2a504f277040fe1b9526a15958184178a7969384e54c4647e80deb7fa7
MD5 ac65eef2e23600fcd9d20a12cf5b3f16
BLAKE2b-256 bedce6bd9668c0fac60b9fd2f369e419014ea43bf1c937d5ca78c82d70e00410

See more details on using hashes here.

Provenance

File details

Details for the file polars_business-0.3.8-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for polars_business-0.3.8-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 08396335be4e5840ff7c39fc7be4ec1834531f8eb5d0bd431e4c46059dab4bff
MD5 57f7bce85290c9e7bdce76666b8c07b2
BLAKE2b-256 028c0e998c267144adde6d54ff5c619405a37ba9e16199c4c96764c95b075f1b

See more details on using hashes here.

Provenance

File details

Details for the file polars_business-0.3.8-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for polars_business-0.3.8-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a4518dfdc870ba6875185c436b8dc07b33504938a422972c3ee866be643d5ce1
MD5 e2f38acf3b24d5661074cc617f8749c3
BLAKE2b-256 7294466c1ce2f10bfe8455191c9a3cc22323fdf40779a85620b1724bb4039a30

See more details on using hashes here.

Provenance

File details

Details for the file polars_business-0.3.8-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for polars_business-0.3.8-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6b43005e748323cf15b510eb7cd369751f8448ff2b1ec1cec633567fc66134a7
MD5 280ddccc34f522b80f72a0426f5a1f92
BLAKE2b-256 a281f597b2e101e83929c49ce892154114251499a948c5c1e2c183d9e4bdb60c

See more details on using hashes here.

Provenance

File details

Details for the file polars_business-0.3.8-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for polars_business-0.3.8-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b905c621c119e5760c147735b1562ede658231ef30db4768a958313a9cb75dc1
MD5 68b29c5a8f5493b6a5594ae6bf2c4b3c
BLAKE2b-256 b9cd5c541fae1f8ba4271f0f392edb840fefaed0ae3d6da148a6f7a9a992f548

See more details on using hashes here.

Provenance

File details

Details for the file polars_business-0.3.8-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for polars_business-0.3.8-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7764c1c7e096a18628e043d1f69b9bc7a7ae8eec559ae71bd5edbe775bda5d22
MD5 cc627a95e010f2859fb91e2267610a1b
BLAKE2b-256 3237127bf0ffbceebb39417fa49380c40cff5a1d1a8e778513037680b0a8476e

See more details on using hashes here.

Provenance

File details

Details for the file polars_business-0.3.8-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for polars_business-0.3.8-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7160d79617a5ff474db78a454cf81c5362007db23eb4324ddb2cff3e7c20e23f
MD5 15efe111c14adc7c9e7bf13461529e75
BLAKE2b-256 04e60f5625deec3ae7f6360d0a55acc56a5daee3ecac1a4475178e36a47300fe

See more details on using hashes here.

Provenance

File details

Details for the file polars_business-0.3.8-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for polars_business-0.3.8-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 47f34ac92c49c8087c7c73d4fb01aea1c6a4e49b38b01f54f56566edeb23f448
MD5 24033548a42f241166b8fa89aaf0f69a
BLAKE2b-256 b5643a850647ccc3522d1f4f1e27493206cb6893d48250a92c7f88ebec2aae82

See more details on using hashes here.

Provenance

File details

Details for the file polars_business-0.3.8-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for polars_business-0.3.8-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 de1378ea0455d220b2a986222b9c5b2638dec3c356d4584f67c38d9ecf309c2e
MD5 e9433e40f6c53ea504f62149d5231147
BLAKE2b-256 6eb2127b0db1bff9f37aab44b97f4b01531ad3928ae793814bfb584b32da10d9

See more details on using hashes here.

Provenance

File details

Details for the file polars_business-0.3.8-cp312-none-win_amd64.whl.

File metadata

File hashes

Hashes for polars_business-0.3.8-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 8163c8941df596ec9c473e1e39c939de2273193216e0ff4f28230bc5c781d57a
MD5 df00ea9ff1c0d0906fb95754a9c22f0e
BLAKE2b-256 73d9e503e1c06a3276e63103fbb6a8abb216d0e0a38df725db70fdc8ea95948a

See more details on using hashes here.

Provenance

File details

Details for the file polars_business-0.3.8-cp312-none-win32.whl.

File metadata

File hashes

Hashes for polars_business-0.3.8-cp312-none-win32.whl
Algorithm Hash digest
SHA256 220451d87c1ab77edcc1d5ba61893981b7b052df0aa0bbdb3c3baba54da03d5b
MD5 6026377a1f4cdf6eb358a3bb27ebb7a9
BLAKE2b-256 eab6112e576d4b34f185bf77b138da290048553b1bd72c83ca18ac0a594b5ebe

See more details on using hashes here.

Provenance

File details

Details for the file polars_business-0.3.8-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for polars_business-0.3.8-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6b5cd70afaf5adc7a1e8d5c43a750a462a0a7168ee71a315a4606be257dad465
MD5 adbada7582446748129245b3e655905b
BLAKE2b-256 88da52aede5eecfe47a706d9c0b1038b35dc1160e392334a36b8dbb1bfbd1195

See more details on using hashes here.

Provenance

File details

Details for the file polars_business-0.3.8-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for polars_business-0.3.8-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 45cd9ea0553689fceebbf4d00cad8b4f27a172d301909b915d2385b25ad7dbcd
MD5 d0ae7f7871a6cec85df9794ce3e4819e
BLAKE2b-256 766e220ed5d533119a1f2a998a544393ed1c581fe89c358445349c77f3863856

See more details on using hashes here.

Provenance

File details

Details for the file polars_business-0.3.8-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for polars_business-0.3.8-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 af63f37fb912a28bd5ea6a2cba9712fb5226a43a7d1d6dce1157ab07c0bd37e5
MD5 26c57a565f73ed59b3b188fe0aecdbaf
BLAKE2b-256 669ec151e9df5daab5e5b61ccebb20c70ad54c712cbbc926f39b9163bce9852a

See more details on using hashes here.

Provenance

File details

Details for the file polars_business-0.3.8-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for polars_business-0.3.8-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 95f2bb7b0157915181bedfd6c62d040293aac5c5d9f0ac86f11fa507385e1b67
MD5 11e623e4d853a05be0bd4f3df096ce82
BLAKE2b-256 541f0cc52ddb52c17c3616135846208b29234254d606b2268b5791646ae11118

See more details on using hashes here.

Provenance

File details

Details for the file polars_business-0.3.8-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for polars_business-0.3.8-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 778d2a6f2905688cf8235837dcaf9000306d819c0a13fc9ff1c0841b65a8baea
MD5 7b31692e3853248694d3a597327f7b0d
BLAKE2b-256 a78b51478391fc21574541493e7a56b0804f19de7afe23e2a13a2598bd85f8f0

See more details on using hashes here.

Provenance

File details

Details for the file polars_business-0.3.8-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for polars_business-0.3.8-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e25d3642f988784c20940f16011bc246fdffd60508f151a0ad8f3af3cd69a743
MD5 d2687526e5533b1cb0ae6ac7a8dca694
BLAKE2b-256 39b9062d359950c6fdcc328757d7e31798e778a0938ad06605ba2b5bce061c2f

See more details on using hashes here.

Provenance

File details

Details for the file polars_business-0.3.8-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for polars_business-0.3.8-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b2d9f6d268fa8d098dc4c56820f7002e8f15e1dd8b4a81ee52decad4d73763ad
MD5 d17d56a1101791562491409ab0284a39
BLAKE2b-256 4327ac923d61850ae60eb83ae562324477e09961e2d7ddc95dfcd88b91ffbbbe

See more details on using hashes here.

Provenance

File details

Details for the file polars_business-0.3.8-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for polars_business-0.3.8-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 19a9529339a5b49374ea51cf3c37cb162bb20757313454daf15f0edd4780e66c
MD5 beca80d8742c7097b2512b8a93db0bee
BLAKE2b-256 85df7574eb0de978f89426312cbe3bdea1b265ca861d27565bf76f3ab0985199

See more details on using hashes here.

Provenance

File details

Details for the file polars_business-0.3.8-cp311-none-win_amd64.whl.

File metadata

File hashes

Hashes for polars_business-0.3.8-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 f5a5c27492e151723aad1516d83331fecc09537601e4dfd0ccb4d08417642ff9
MD5 c2aa7382faf92c30ed2514164d968eb5
BLAKE2b-256 aac278fd13f12e645a077b0e75ebff69e6bcaf8399f6169fe8bfe720bda13a0e

See more details on using hashes here.

Provenance

File details

Details for the file polars_business-0.3.8-cp311-none-win32.whl.

File metadata

File hashes

Hashes for polars_business-0.3.8-cp311-none-win32.whl
Algorithm Hash digest
SHA256 8d1fa9ad463550fd823dc5c63c9e95255dbd920f34cc2c27074c45cad5452650
MD5 e480c12ae6f6f6f8285df5e62ec27596
BLAKE2b-256 ad8eb4f7548c6db8a676ba302e93c22005f4720417cf485d49fda1be51d93efc

See more details on using hashes here.

Provenance

File details

Details for the file polars_business-0.3.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for polars_business-0.3.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b3a8ae6112831e2acd2a8c803c5d77d10b6106953ee73e5ac4aa88b7d7f45e8f
MD5 d60b95bc75257010ce9374ac25980d50
BLAKE2b-256 6e027335820b362421aaf66ea297ecc9ca10117af6d4e856b9e5d9c193ffbc66

See more details on using hashes here.

Provenance

File details

Details for the file polars_business-0.3.8-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for polars_business-0.3.8-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b96f3eccd5148da8b1ac31d5ace9cd90e239c82f15ff8592db567e0025fd37e8
MD5 4ed984e319517019e9278663d41654ab
BLAKE2b-256 fb9bf5c56ba6e7ce0ddb0ad7cfdacda3a71b76d2706df9c0ac5b9b9d503a8ac2

See more details on using hashes here.

Provenance

File details

Details for the file polars_business-0.3.8-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for polars_business-0.3.8-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 066973dd250d30df30e6ee6a96291488067bae2a486f5816038d79bc4daf1f3d
MD5 074f7abf9d5bdcc4fd7841153191d67c
BLAKE2b-256 abd4d14b7d9b1a2def0bd4be7609d771b6fc594bae52750007268846091a948d

See more details on using hashes here.

Provenance

File details

Details for the file polars_business-0.3.8-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for polars_business-0.3.8-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6da68d403662177e3d0054cd7cdeb1e8915c3c78c48e1fe39cef2d08d5507826
MD5 5441414b11d014bb4d6b3c95d9413cb6
BLAKE2b-256 0856f865ebcee2eed163a7ea5d1e76ebb1728472cc237d902ae2ac20c7c39e66

See more details on using hashes here.

Provenance

File details

Details for the file polars_business-0.3.8-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for polars_business-0.3.8-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e53cff72920a00bc8afb685e8383f4263248ebd8a712395d8de6942f6d3fb5d1
MD5 a9edc7acbe6ef76520cd7e87bf777d4d
BLAKE2b-256 6cf9ac98a8bb34d00ace620cb282fbf9777c23667ac0c9ed0b4b4f6719f7dc84

See more details on using hashes here.

Provenance

File details

Details for the file polars_business-0.3.8-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for polars_business-0.3.8-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 79eedcf22be58aeae98cb1e3b312ec8154bad7373e5a72a65bccfe27e7c5a4a3
MD5 c28c595907af77926c99e9388fce92f7
BLAKE2b-256 87ee8824e143492666007b286c73bb7c37b03670c7b8dbab2e7ef563f39913bc

See more details on using hashes here.

Provenance

File details

Details for the file polars_business-0.3.8-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for polars_business-0.3.8-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8fcc8c5feade17ec1759157cba150e43ddfa6c70deaa16096f44dd7adac0d5c5
MD5 bf7af5205773f75d1b31f6343c34bb75
BLAKE2b-256 8d917fbfeb9141147632050223fab840105cb4cccf09a8ce0382d4271f2077ff

See more details on using hashes here.

Provenance

File details

Details for the file polars_business-0.3.8-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for polars_business-0.3.8-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4e4dabba1569973c29ef03599bf9d8e42fbc7e95349cb8f1047d88369705eaf2
MD5 0827e703f1e007a8cb1317f9ddc7cf13
BLAKE2b-256 aa344f6b8c6ba2ed189ba76994c2739a1c8555b3cd483ae0fa6de23edee03c92

See more details on using hashes here.

Provenance

File details

Details for the file polars_business-0.3.8-cp310-none-win_amd64.whl.

File metadata

File hashes

Hashes for polars_business-0.3.8-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 0a37fab55020911c89ea084b2c8ba571c087c979108604e28015f7784eacef58
MD5 8d3ff3f85ae5cc47ce3f166c79daa7d6
BLAKE2b-256 b6852432b3e65bffee4529d2f6fbed19796cc878af75181760bccb9984a980f6

See more details on using hashes here.

Provenance

File details

Details for the file polars_business-0.3.8-cp310-none-win32.whl.

File metadata

File hashes

Hashes for polars_business-0.3.8-cp310-none-win32.whl
Algorithm Hash digest
SHA256 dd63758d2c03e60bb9a20ab085c0ab478f622b9893fd047fe2096b805f994260
MD5 8b2cf52cdc48e2444367a0d17baeb309
BLAKE2b-256 641d5b5009c366cb08bd5cfef615b97be3e6848ddef11cc331084fb9dfd6b3ae

See more details on using hashes here.

Provenance

File details

Details for the file polars_business-0.3.8-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for polars_business-0.3.8-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6d9f64981b7ff239c3739956309d94cd434f545f9d405ba0c077adcaa16308c8
MD5 2045ebe1bef67a290588c52c09060a34
BLAKE2b-256 bfe2c716c9a3c83f71c4770970ac825437518b6aa0855d67ddf12f2394cb26bb

See more details on using hashes here.

Provenance

File details

Details for the file polars_business-0.3.8-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for polars_business-0.3.8-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 651b457c0be0e7eee4dbc7bb2c9c0a454e5139d0379630889a85e81fd02f5f75
MD5 7144a39bb20daeb98ff5bf6a8662b439
BLAKE2b-256 ee622dbb28d6477c3b0c5e85ce183471221a8c63f3a465efafc2f0989afd8738

See more details on using hashes here.

Provenance

File details

Details for the file polars_business-0.3.8-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for polars_business-0.3.8-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 cd271475734fb9f1a182a277f197969c24f1251d7b9d899e93003ccdc41bece2
MD5 157c2cee7a36538270914bb059503f24
BLAKE2b-256 767dddda1b68c6ca4dcc29dfbe0647cbbc5004fd6a290b067145b6bc2888e6d1

See more details on using hashes here.

Provenance

File details

Details for the file polars_business-0.3.8-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for polars_business-0.3.8-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8ec6477aff4ceed51495e5c2f030caac1f221b563efdecea6abc8d18dcf85af9
MD5 c9c982131d91b323b5c5589f3f3dbba4
BLAKE2b-256 08bb815033e72d6b3a0105526dac5e499e6109eb50dc6f0678ecf8814d2779d0

See more details on using hashes here.

Provenance

File details

Details for the file polars_business-0.3.8-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for polars_business-0.3.8-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0b969f2ae79496cd689d60b571c2116876466286c321957d25bc715edaeb9239
MD5 fd3bb1887fe46b4b58b5d849e6747538
BLAKE2b-256 d643b517876cc3d5961c31d4f8f1709a609e184f0a0b9ee59925824efff458d7

See more details on using hashes here.

Provenance

File details

Details for the file polars_business-0.3.8-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for polars_business-0.3.8-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 432d2113ffdd05ac933cefbd283746980f514747c6dbedcab61b6f41281f273d
MD5 1129662e78e7072b5685e0741ca36358
BLAKE2b-256 f4bbe38d82bb9f435380a6e4e752ebed4524d2a8c84c23f5ffca79beea31f469

See more details on using hashes here.

Provenance

File details

Details for the file polars_business-0.3.8-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for polars_business-0.3.8-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 223b652dd43d9ca1b24abead969be726646c6166b48794d52c7188f363d4f83a
MD5 b00ab55035311087935647673df2f849
BLAKE2b-256 6ffdc32c77f4b6122b38f46e5e4e4b93eeeab5c90fc94b2b70d5f30734cfcfca

See more details on using hashes here.

Provenance

File details

Details for the file polars_business-0.3.8-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for polars_business-0.3.8-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a4a2ce82fda332586361805f06012ddef3e68c9542d493e817409beb2c47e395
MD5 d184a13bf247d172a98cbfa345037586
BLAKE2b-256 1b0e89ebd9f57f5c893ee72443268b02c3da9253074b72f51846503f74caebb2

See more details on using hashes here.

Provenance

File details

Details for the file polars_business-0.3.8-cp39-none-win_amd64.whl.

File metadata

File hashes

Hashes for polars_business-0.3.8-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 d6b376f55062f54532a17e2462e7b0c1690edd0a26dfcf47f9bde03b04be858e
MD5 cc86d6cef43bcfb005b5314e6a392061
BLAKE2b-256 d89d24e0218879377accee056cce6b16b532e64329c9fc4d17831c98b1ec31cf

See more details on using hashes here.

Provenance

File details

Details for the file polars_business-0.3.8-cp39-none-win32.whl.

File metadata

File hashes

Hashes for polars_business-0.3.8-cp39-none-win32.whl
Algorithm Hash digest
SHA256 864e716998da0597acf8f312b48cc7c720ba2b4fcfaba7020fc044ed69a8da99
MD5 cc3c9c45d5182e9715aad9d7fd7e33b0
BLAKE2b-256 658ae1d80c7d96b57e72d914f508f0ac0258d9919978c0339454e95ac5b980a9

See more details on using hashes here.

Provenance

File details

Details for the file polars_business-0.3.8-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for polars_business-0.3.8-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 04af09e07f748b36e59c9fe065d7bd797bee2c5d138da22c87ac9fed5d4e53d2
MD5 950025741af0a4c679f2f4ab2205318c
BLAKE2b-256 737a4999d39a7281d8d811d5dcfb57b666cfeed7af8bb299028bde12c0f35f8d

See more details on using hashes here.

Provenance

File details

Details for the file polars_business-0.3.8-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for polars_business-0.3.8-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 598e39d06d969fedff3582b6f21dc58c2b9c85f24a1635371c0dfb3d39f5ba17
MD5 9f6700edb40e261421c5bfb418fb3cc4
BLAKE2b-256 ba356d29c10ddfb751728d607ae3506f05dbcdbd81b7eae0ad9e3fcafbea8534

See more details on using hashes here.

Provenance

File details

Details for the file polars_business-0.3.8-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for polars_business-0.3.8-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 db685b73a343306bc0cbaf3144702ae6ed72340ead8ca5b4d7a51c34ca83f162
MD5 ae8ea4e3e7aeb18472e896a19d999a4e
BLAKE2b-256 1efed08b14d8f554a0047ae763f3783b39ee59c727729056af3b0eefa6974b14

See more details on using hashes here.

Provenance

File details

Details for the file polars_business-0.3.8-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for polars_business-0.3.8-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f93a7e6a3e74d3be1cd97e5a371ccb244f31977084aa162b3826dec072227d00
MD5 9dd0d603c1d3b289e6eed3d78f2b9576
BLAKE2b-256 6528b40e362b269431234aed422aa92d253730129ae272eb7fb4d0794301619a

See more details on using hashes here.

Provenance

File details

Details for the file polars_business-0.3.8-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for polars_business-0.3.8-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 894a2009d64476b96a30a0dee442f56af7ca2ecb5b5569e20bc6a92e28956ba4
MD5 2e97ab7c7ebb6f8b17eb4d289c14de12
BLAKE2b-256 db45a2f5e0d375aec1ca02fa08d4062186492b87c2a8a26a4d03b961f2392fb8

See more details on using hashes here.

Provenance

File details

Details for the file polars_business-0.3.8-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for polars_business-0.3.8-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6b2ffd88e6d5887f87d6fdc6dd5772ec513375f3bf57927b08bdd21677141ba2
MD5 d8bb0e529e154558828c3e59933e877e
BLAKE2b-256 3cd16f97d37039a2cce524d7fc9cdd2561afd6435c0387d15879ff990bf026ed

See more details on using hashes here.

Provenance

File details

Details for the file polars_business-0.3.8-cp38-none-win_amd64.whl.

File metadata

File hashes

Hashes for polars_business-0.3.8-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 9a91edaae52a885ad0e715b5a6d043a99a558cb9d671953aaddd067af9050e9f
MD5 ca67620139157e8dfe14276068206617
BLAKE2b-256 a95b8cff9e5f725e14f71f239288e3483661d56f9f21c61bcb56af64ad8d5a08

See more details on using hashes here.

Provenance

File details

Details for the file polars_business-0.3.8-cp38-none-win32.whl.

File metadata

File hashes

Hashes for polars_business-0.3.8-cp38-none-win32.whl
Algorithm Hash digest
SHA256 daaf54453093a9b39ea599b7c064d7de978a688d38196c785a37eb74c45e3ee1
MD5 235fb88b53eb5368beae9edf980b0adc
BLAKE2b-256 409e7c151bbd3dc83e0d57192835382eb8f2556ab8e3073f851d1e78b6a7ead1

See more details on using hashes here.

Provenance

File details

Details for the file polars_business-0.3.8-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for polars_business-0.3.8-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 890ee5139de563fd12f5a5f05f1e97083f639055e25957009ed18c189eaa4d8d
MD5 fe1163e2df0873aaf08f14739fe8bbae
BLAKE2b-256 dc670cf79cd5b6dce622b28da607d81676a6c6721e9e6f9bee61da3eb2d58435

See more details on using hashes here.

Provenance

File details

Details for the file polars_business-0.3.8-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for polars_business-0.3.8-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 235fb3ef813f0c6ea3e1f14fa0f1506a757e5bafc0fc2d0e7d50585c7cae8373
MD5 97736012bab1ef1c74ea6a1b183b2297
BLAKE2b-256 6081f748ea49c8f47fb2a10e007e352bcf8fe7ff1187b386eafb701f77e301f6

See more details on using hashes here.

Provenance

File details

Details for the file polars_business-0.3.8-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for polars_business-0.3.8-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c2cbafc5a7cd48ed2474d6dcdc4adf4ae24cbed753bf51af6e451be990f4625c
MD5 3d0c603cfa9e1ca280218beba200769d
BLAKE2b-256 6f5e9569c5bd72c1d0b6f3939cd2b7bfb438b21dcbf831899a6a02abda69240b

See more details on using hashes here.

Provenance

File details

Details for the file polars_business-0.3.8-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for polars_business-0.3.8-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1ae1f1a28b549322018b0b0169559e800a0797d5d9301a9c83967ce522fada12
MD5 e2682d6b282e72585be9e826208d1d38
BLAKE2b-256 24d54db3d38412e0d7d36f12b9cb4f68485b48a281a0e4d930b418457af6cded

See more details on using hashes here.

Provenance

File details

Details for the file polars_business-0.3.8-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for polars_business-0.3.8-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d8ab0b1cc3c1b0cda4512b526896b3ec4386dcfc2e7f94016550d1e5a12e2fcb
MD5 b3c56618e4e232bdca666c131033e2ec
BLAKE2b-256 df5fdd050ed336eee96cf0926691dcf36d933bc62e1b071a6a200d786241ceae

See more details on using hashes here.

Provenance

File details

Details for the file polars_business-0.3.8-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for polars_business-0.3.8-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 762cbd8e79ef26a248ff4e106a5788ff90b46665442d869257bedfba80fd29f5
MD5 cc4278e0686ba8e9eaee7828c435f8ab
BLAKE2b-256 cdb2b9fb470f5c65c0a4d4e186d9d8d71ed15aff522b2c1bd38b965e0f352509

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