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

Uploaded Source

Built Distributions

polars_business-0.3.14-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.14-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.14-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (9.4 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

polars_business-0.3.14-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.14-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.14-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.14-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.14-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (9.4 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

polars_business-0.3.14-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.14-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.14-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.14-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.14-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.14-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.2 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.12 Windows x86-64

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

Uploaded CPython 3.12 Windows x86

polars_business-0.3.14-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.14-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.14-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.14-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.14-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.14-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.2 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.12 macOS 11.0+ ARM64

polars_business-0.3.14-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.14-cp311-none-win_amd64.whl (3.0 MB view details)

Uploaded CPython 3.11 Windows x86-64

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

Uploaded CPython 3.11 Windows x86

polars_business-0.3.14-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.14-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.14-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.14-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.14-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.14-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.2 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.11 macOS 11.0+ ARM64

polars_business-0.3.14-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.14-cp310-none-win_amd64.whl (3.0 MB view details)

Uploaded CPython 3.10 Windows x86-64

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

Uploaded CPython 3.10 Windows x86

polars_business-0.3.14-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.14-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.14-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.14-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.14-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.14-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.2 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.10 macOS 11.0+ ARM64

polars_business-0.3.14-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.14-cp39-none-win_amd64.whl (3.0 MB view details)

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 Windows x86

polars_business-0.3.14-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.14-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.14-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.14-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.14-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.14-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.2 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

polars_business-0.3.14-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.14-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.14-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.14-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.14-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.14-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.2 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

File details

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

File metadata

  • Download URL: polars_business-0.3.14.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.14.tar.gz
Algorithm Hash digest
SHA256 eb0968ad34b1f4f7d867da0ed1687ee62246afc03c9cce7808ebe5381cecc018
MD5 94437c23efe2f250d9b60b1595f5e263
BLAKE2b-256 f139fe9fd0cf2450cde48972876a029a4c5bab4592717f4b8ef2b6f9040bb814

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.14-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 117cf669462acfa76f897cdda61131a4ebfd232a650e85779b4de1d4d7f2752f
MD5 0126cbe09b364b59564d04a56afd9d38
BLAKE2b-256 324aa4bb12deb9e405bffce246e73f4e023149bdfcc5d48bc26d15fa84bf9962

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.14-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c158bb9cb0d7f8117c27889d6f0f7f4c538fa96347361baf5a4d9ad3fe4815f2
MD5 55da700ab3f1aef32a3de9e1033f7059
BLAKE2b-256 46260d8f45b0dcb41cdd29908ee0faabb8720531d2561b676a5b5350a91e802f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.14-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 fe5cc20f215a89ceb6c4b2fde91e25c6c06dd45de0434b6056d1f4283f225412
MD5 f1d95bfe4efc339b6902e0ca7b5f4118
BLAKE2b-256 dbd581f52b4addf8d0ce90b343100658a27edbc279352982fb2df189ced13f14

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.14-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9a52be99d3d93ffd128cae56b346b6c4558f5a5ace97568741fb993d0875d6cf
MD5 8f9af4e0708fc3fac9bec9572ae3ec1a
BLAKE2b-256 a449403c38523c7864fd6124baf3793bcd102b7bca066c7b6a1b40241f7567c2

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.14-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 912d85c7bd9d36e6c3bf18e5d13b8a63e0d042d5c3bbadc078b58759cf2dbb7c
MD5 6f19c14b5ee25011770352a4a2bfce7e
BLAKE2b-256 71b92478dc8853d0e1390f568b258fd8e2d51ab11dbb39bc4c9aca613f1ed336

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.14-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b89f23ea3dbbccaf4016f63ddf22901ce702d9649eb0ddd16f622ac218a07b03
MD5 15b1bf8407ccfa3de9f98569c190e868
BLAKE2b-256 c82f02c43fd0b02edbdcc504a84a3f0ea8c73b1c3b4788e36bcd1cff5e412f1f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.14-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d1dc4db8c4dd321a32569f063fda12ca4c6d6c78d67bcab9c92309792536bb84
MD5 e2328db96b89cd3cab61f59e6a5f87a5
BLAKE2b-256 94d3ff4802673ace4665454a31a79b9def9462c2bd75f8b524e3dc2a53c10159

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.14-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 faed6e241d0713273394ac458abe507b9d89b819cd55dada74edd10496cb59f1
MD5 14ff9e31b2136cc067d8d26cbf6a0e9d
BLAKE2b-256 1e4852e65c10bbefbca17825e25115c7f5e089b1b75e983b8667a46767d90a45

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.14-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 938f695dfd082a03eb5f8f41e922097e53f5c3b25d84d518eb93a521fc4bbbe1
MD5 a714a4edeb89facf0fa3bee84b069ba7
BLAKE2b-256 e9c32b53b6a0f425cf8ad4e31af40951a51d027ff247496931ed6729193a2c52

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.14-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 771f580df19655539e42c87c1f10e7c8efd25367c9b1253c78261f2f2625d0ef
MD5 6b4de6ec1571815b6148f86aea8242f2
BLAKE2b-256 0210ca4f1c05cd1814cee50277876cdcdced0bc63ea5d299874beda15e49100c

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.14-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 fa68940d773e6383ede5c76d5840b37ad06b51888d153a20eeb98683c4e4d0d5
MD5 a76685a4c88570f7e31f14cf3978da19
BLAKE2b-256 27f4b7793f25d3c3ec10d45fd0917355476edfbe02be3f046a80e9d73632dbd6

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.14-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1041a39277f4a02cad0fb79b5f90395dc30d7859abeb74082c5f14e4b5add183
MD5 864c38927cb055fe7d442c1f163061ae
BLAKE2b-256 d203d4c47b2c67a09294410a9c9bf3f6ee014ac5eb82509bc8728a488b648394

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.14-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0d8973a33cafb087c9a035bee7a5067a45be776fb1fa4c1bf3adcc137512521c
MD5 b717622be0e192117a6aefc3915b6c2b
BLAKE2b-256 d2293bbde20292a262bbb6a8e507026539df9f8f95119cdfbd0638de1fff0937

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.14-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 722f55f294e975bb07912b29128cbd1fc8368fd6b86249e5d70027ea2be511e2
MD5 d566a46e74b79f3d41b921a1d9d954fb
BLAKE2b-256 e6cf5adfaec46583ac051568de76f72c172da58846a8381c6f92c4b283c15915

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.14-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d8f592d232edcd03ef928e70d5119314ccaf3d00c24c7ceab724c4a89b872e3a
MD5 2d2da8d5769ea8134176e2e8ab6a2edb
BLAKE2b-256 7b64ebcb9bc7a44a5ee25892b5c777c0b1bd9b72088c222326951fb983569158

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.14-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 46aa3b2bb8db3a85c7cdd0f01ff92993c17abe0254c7aed0b9e53094df72449e
MD5 05443717311e79123329608ee3c92afd
BLAKE2b-256 d2c772457f1055de2724468061fc9efa88c1d4fa776921c5e668ebb77bca69c0

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.14-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0eb26994bb81a3ddf99332b92e23aa4a369af44509379b0a857cff0f46fa18fe
MD5 bf6a956093033f1bb0df40e9456af9e3
BLAKE2b-256 f75017051e408c1c4e4f6d84b32b83d03e7ba7847773b1e8db95c8f0ffc3edd5

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.14-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5e297342bcbd9307cb20e913914641602716c01d3d595d14056a15098ec65f0c
MD5 cd4eeaad686b51d53819b05164ad5e2c
BLAKE2b-256 21abca50edea0583b387e57dd79ec6adc6be12347ae84b17b7a24a53479c5e12

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.14-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 936fed5bdd29f7c71d1b142ca17742f1c6e772907a06113b7783d9197e76160b
MD5 4ade47f6123265c29f0a8a2dce671124
BLAKE2b-256 354df4a11b010b4a89fe46763556cfd4e78a2719c19bb4e3bb006bded995a1ff

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.14-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 89441bfbc454a947d5d79e411e3a9461c74cc8bbae4895b44da50c0aeff797a6
MD5 d97ec37e16e7bc20f247526bbffc5a73
BLAKE2b-256 9ca5a6a31f219162733b6fd8d9e3d9d1648bea24a9e061ed4115d36787305780

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.14-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ee616e291bb252f3908ab6bff7a71aa498213a4e1a783ead6e6aaec833a698d3
MD5 347e37a3be042fe65fc5df203c45d4d8
BLAKE2b-256 367e166b8f9e157e308d897ddd1c35853cd5177e0085cafb7d9ed47a99956f50

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.14-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a3c411b319cec9be49aa21d98da3640ce217f13141a3d4d525869aece447b697
MD5 ed400be1271ec4094123e047b9585463
BLAKE2b-256 7da329df3b2bcef1adfa980b6f265d186b62293afee384a8c51066ef2b9b2783

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.14-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 41253e225f630e8fc129bd9ef2ac52229794a791edb5b72bc42b0fe3fa3de487
MD5 762d7193c26f1673be153764f9d138b4
BLAKE2b-256 9bf43e94886e10222f311bbe849316833387848ee4be453c5beeb37f296fb9cf

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.14-cp312-none-win32.whl
Algorithm Hash digest
SHA256 ae08099132504431846d422f18b3624774ea18fe1117c0ff1190546957ebc8c9
MD5 9c4f682d551297dc3ddd4eddec21d7a0
BLAKE2b-256 cce05ed3865597545a79cbca4ff4e778261ff24b8b0747023b2ffbfa0cac635e

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.14-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e68d0e7622de66ee1234b19549883ca5d93396cf4956de9c2ebc8525b3a90f20
MD5 6592f8dbbf07202db559a56b256a7ba4
BLAKE2b-256 c5c51d73864d6624b231ab8d69da0dfbf8178bc3a3951f79a6ca6642524fa179

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.14-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 bc660077959adece0f4c8d7b36497278f870784f1fbbaa8a954de07077e7de5a
MD5 01af5865814e5a3b5f41f3d7a21ed062
BLAKE2b-256 0273f9de02e3975af4662a8539f3134e9eb360997c33174a6982b9ebbdee3c3a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.14-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 37b361251dca8a2278ce585180544b56bc144a08e93afc421e950fd3a437522e
MD5 92be709473c18d778e9539b0b0b0e2a5
BLAKE2b-256 cd83c12b2faf7a04183b26aa7fe1ad282b60edeae743785dacfdbda7abf6fb01

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.14-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 54065617da33a0d72e4bfd56894ebb536b61768c20b51a09e1ad9876ae276784
MD5 0b4857ae5475c96090e0bfd56c90bfcf
BLAKE2b-256 d673f96eae93ad05d662aa534095d1e3859bdc70c8a91195c9440cc1df5e37be

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.14-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2c61f1adc4d29600ae681d0447f4af82e2c0792fccbb2c0439a7f95c2adc7034
MD5 50e97511549f895e712bd44b8b95cbeb
BLAKE2b-256 1d5447bfdac204d8cfcdf48289eb6bed78b8e3d583bdca5a10933d73b74733ed

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.14-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5ce6c93c47fc2ea77dadd66020886afbcadce1214a7aee722a26f4df6da1130c
MD5 b614c52338ccaaf35dadf45b740b1a49
BLAKE2b-256 bd6af28ae6a9dc798b3e0f8c9dddee71677dff9fbf6a5fc332f74c049ca31653

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.14-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ce9bf2943693107ee1d9b712c2b1cdb4a5d0e23f476c8cf5eb5d4519e590f43f
MD5 7c6f76f720c63768532c4863da1e95be
BLAKE2b-256 d64e2bfdad77f0fec45bd67799283720f2f2925b9040f23300361b0ba670f0b7

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.14-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 03aa39367f76a44728f68e17f33ef3a2f72f28ca431e0ff2e224eef640c50f45
MD5 37b7a6c51111c3123cf1fa46cd91ea27
BLAKE2b-256 17306c29281294f4ea2d92c558efba631bfbae86ca913fe46df723ccc98dae3f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.14-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 a2be843b7fe98e1a9cf1b6a4bb3c79bf9872efe52e9b44d05a26afc2115e0e19
MD5 be9c32b17fac630c4f2f1667641008c7
BLAKE2b-256 ca6747929f73ee8b1c3e4db70483178d027544445a4ef9064eff54d8595698f2

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.14-cp311-none-win32.whl
Algorithm Hash digest
SHA256 d45832dea0989276ecccb812ec43d909a0249ac4399a881576e2715a12f1d648
MD5 b2cf9882a4a331848d2ef5fba988d05e
BLAKE2b-256 3b72ca5f498d3b7c30e4b5c6d3b7f54786ab941023e00da6ae8e05e9f38c568a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.14-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3dd3ac74fec3aed2a6f9abca9e876dc847de799a98e42d4a686597cba4b597de
MD5 333c980e7aaa80d88a5a51d5b7062f91
BLAKE2b-256 4585f48b93340391ebc56ef106bb028f3c5da2f5da2b416f4b466ded8c32ce1f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.14-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 85110793c3e32b1344e99384386e7ad5835bdd62320c7fbbae4d3606d072c7dd
MD5 049b7beb491c3a700ae0cad886ed2b27
BLAKE2b-256 7809b1a7f0415776d986739e28b0f89a449134c53da5f9c39ab2c2f9d298413d

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.14-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ec2cc9264d27d5da4e411c5fd2dd7c930bece5437c50caf43ce14cee0b120bc7
MD5 0d68c707e3c8c3841b1e2437cd55d6bf
BLAKE2b-256 1d0c4a51c1b7d7733ee594de1dfbb8a019010a0f65d6f1edcbf9549472c4238d

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.14-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 38ad64e81ccfaf4926adc26d7af1ada17bd5abb3c2fd0adc23701b8a725c041a
MD5 a307a49002e5f5942faf52599974f827
BLAKE2b-256 62867a630dc733dcf574aa2e6990702544422ce50310346ad7ed3babce1dd465

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.14-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 65593106ae6c5fef7a199b3746752723ae9fc9fef50e6d3f8656f928350ec945
MD5 d6680f3e49231008c4502ed3d3ab3f92
BLAKE2b-256 c2ac5cfeec1db68815c84e1af8a245721f7a5093dd69295643fa75fa1a9cf62d

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.14-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3f136284ce3dbcce9adce63706e8b26bb769a0bb34e2ea677e74904069ed75c6
MD5 1f185f907b3d83f326667caeabc11ebd
BLAKE2b-256 af3511367f1ffdf173f545b5485c0ebc8963cf724416bd19ecf0390b4974771c

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.14-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3c8b81fd129ada0ffa931c7d643031d0947810ae61f54312a27c6ca0226c4d10
MD5 acaddd9f7fac6314c6a3c252ec5da8f0
BLAKE2b-256 73327208ab2bf35f485d864d3d01a61c74994ac4cdeed7385e921e0909f92457

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.14-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1210e46e0c1a73a89a647f73ca946de1e48748db43dbd86e5e03877d8a2541e5
MD5 b621a705e38ab5351f610c6e364844b1
BLAKE2b-256 821d27238c5b925cf61a47fe7154bd8026636335243d1481ed647fa3e5049b55

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.14-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 eb8fb61981644ff3dee8c688ab1dae65f6173852d696765b482dc3fee2d2e323
MD5 cd544b40b435a0e695311f7483606d17
BLAKE2b-256 813888e4867fc2445a5c12419347c28031a7254cebad198c688689de3a4f6714

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.14-cp310-none-win32.whl
Algorithm Hash digest
SHA256 7253d4f333b878fcfd017ffedc0ccf87d60358cd93b959a35db2c916ab32dfc3
MD5 4ca4eab2b4637eddab7d87efede19bad
BLAKE2b-256 ae3e5a31bc8bca31e8dcc8551a8c5b7d86be064e4c99b9442d0a07cac90f81ed

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.14-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2df2245d4cb31d1333f57b0f2c138681470fed4b4105d78a565cab03e4e185cf
MD5 cf53a1cab2c0b87c8256f275f997bb98
BLAKE2b-256 9abf855fbbb3df54123a905f98339d301043f2b7c46ed158778e9b6db230ce3b

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.14-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2638ae92198a145d0fd783ebe993666b736e77578879c6aa3ef74cf3ebf42bd1
MD5 3a5a1be2e80061129f2f438b393eae16
BLAKE2b-256 839f6178fe2cfe299ab466e2d9b679f4438ce89aeca0974b095526dbf53abef9

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.14-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2faae301e7fac85173afcf0f6c14185fdd27272424e6d43c92afbcdcfc2f190a
MD5 52dad346979efd45fb51e1bc7e400800
BLAKE2b-256 b051ca1232bc52ec1ede57c1899f4692fa5a9e21231870de6c9d6bdc1c3a7287

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.14-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7534feab225a3551c7863fb379ff924e5979133a1c05cc5b00ba43384c14e2b1
MD5 9ff7781a8455468a47c78e3320c301a5
BLAKE2b-256 5a4b0ba1eabf0aa978ab80368119ca2ff419e8f549349e4ba352a402ea99b761

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.14-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c5e3beb6269804dd1a4fd461c7df985bb97b67f5db79da3b9835b28cc4fee95a
MD5 9115a807a939941535dfc7aa14695734
BLAKE2b-256 bc412ecc0820c32543b6ce98e28d3a3d510a626e240f2cb2cf4e4932ec03ad79

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.14-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 dc27f448755cbbe36c4829f504135ff70062935a99bdbbe3be2024c113a91a27
MD5 895a1d8ab7c8c0bc628fd581699d2b92
BLAKE2b-256 2b4495bfd9bf65143101234d2a3c6802ef8dd2ab55fd5abf78872b91365652ea

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.14-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c01fa2e08132acd0f5bd49c6155a3cc396a2c47c622033c39027b7ff3310c23b
MD5 e6a15bfabc42a4fbbe0d2768668049fe
BLAKE2b-256 bb0cb92536cb3698182b699950835006ba7db2353e55aa0f4002c7c58df4b3a5

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.14-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0e07040a96a175517ec155b1e60ed319117ddacb51b9565c797f59d896c5aaa9
MD5 df8029239785fa7aa4374fea917259c8
BLAKE2b-256 cb886e8f5c8aa5baf3b09407d1bc7605bb168b875770f9220e8ac5aafc195cd1

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.14-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 46526d5e16a7e1492f22ff665a5033bcdb91238d9d92538466c599df451b01ca
MD5 8731a38489e2465bf7714a0c4d838d59
BLAKE2b-256 e1ce45b7c19f6bbe075b3dfca8ee93533fc7f86324d07801c57f9378c7ab8aaa

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.14-cp39-none-win32.whl
Algorithm Hash digest
SHA256 03ddbf09d13386643b8f8242fb9ff5710a99ebe232949f01ac23c048798e61ee
MD5 57e46601ff7db06f67b6b921f941cc8b
BLAKE2b-256 598333cd6046525a1e07cf579cf7fa4eb326f208b90bdc2b7186198226be7489

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.14-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c86c4fffa78cf9226eae43893ad21b08ea56f2b1918abb665b921d9a68ebffcc
MD5 3d666c9eabaac7d5e26c82306da84f3d
BLAKE2b-256 125ba31d6177d426ccf0fa329d5a14e01f380c0c23e5e92c95889d9c920d8cac

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.14-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 fc956984730643c53d29551822b5166f74e09972125c7029c96904375ba2bf38
MD5 e6c5b410c37e0adff2fbe3dc68a10f06
BLAKE2b-256 f34a981c62581df2fab2d916901b4bef931d5679004801c071b4e5c19e3e8309

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.14-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0e64270cebc03ab58ba63ce055af1c54502b0e9991e60fa641741ba62d6c3f85
MD5 31686bbc3de77c57c573bf012b809033
BLAKE2b-256 b049ebc63123757739e29b45dfabca070d3f133565698c550a2dfa0e7d8da90c

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.14-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e57fd15e634279fc08998a67bef70309ba31934c6b371a53dae744254cde6092
MD5 31a0df855b81313de933e5b433283bf2
BLAKE2b-256 d4d7f1ecdb5c08afefca4eb0992ffb8354d73c38f3a38f8411fca596c62f93dd

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.14-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 28fa427890fdb64a4ef0fedcc008d725f61b949b9e6eaaaf13765e59d9bc3565
MD5 1cf52acf00e38faf95df0bc78a1049c0
BLAKE2b-256 d63cddc1e5399aafd155fad0117b607c7d5a4f79b63440cea6bbd17e89152e94

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.14-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bc37219abe08c165f39e81e8f7c0794cd690b437f08487ffe677095f81723746
MD5 a9bc43f510184ffe29c57c9adf421c7a
BLAKE2b-256 09d8b6c50f5461dae3c4633e70cb9c3e7b2e85280242517d6712b261c7272530

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.14-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 3483dc1de9b3e82ceaa96ff233f807e9d6b1806f0a8eb377df4e963345671320
MD5 cc6f0477ad110d0288431de7d7008b57
BLAKE2b-256 9ab77f60dc9322abe99cc4141c97c2bc93c4424061630c9f74d1a7d3500bed7d

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.14-cp38-none-win32.whl
Algorithm Hash digest
SHA256 4e5913005426e3bb7a6fb46ec2724aea525afc9377f6f040c477c53469617098
MD5 96fe3317d867ec64a1f397675db3ab0b
BLAKE2b-256 b9a68bd89da27e58820fd61d41435fc2324bdbf2d86492711199524704c3aca0

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.14-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 dfe3984906e470108b16cf1a828bfa798360e27bdcf0b789e803fb41575fcee6
MD5 a31266e7763906f0b5121baf1146dad7
BLAKE2b-256 9f2e4474ad574ada5c90efabcaedbdad87be05693d38200777f223cc94d903fe

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.14-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2a5f77e7ed5e4efa444b1c7bc39e68d9ea841065f338ba5a466a4488d82dc073
MD5 e2fac343bee08e8e6279c8079140fda5
BLAKE2b-256 ceb1a2e2fec00339de34cd967ee831c329608469a28febc99662f108c25d87bd

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.14-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8aedff1ae93be9f999561ec8bd5abd14f44969e2825512d22bbbc34637de1826
MD5 63dcf91901c33562696f6403cf6260eb
BLAKE2b-256 ba2a060137dc76930583febacfc3d9eccf0cbd48c05d6052c5a7cdf7a3628ddb

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.14-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7d91ea2b322e268d351e796cf210bffe92cbbb0fadffd06f9238d602a2371b63
MD5 62c315c6a75ad433ae2f656f0c3bd1ee
BLAKE2b-256 efa3008cbd3f000de7222158cf93bd50a92b178ae4f2351015b103121c464ccf

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.14-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f2ad38d6dd26b337f1f0861a61d9911846c3887e0cb1b2bcf6a06cfbec977e59
MD5 a9a05174b8cfec5cf53ca44d7277a562
BLAKE2b-256 c4c4c8678edee98e5267f6676db650bbba59b9f05a36e9768bf7534ad4b0a3a2

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.14-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7394c619afdc47e8b46617f0f289049feb9623337f71c941aff623d2e9d4f25a
MD5 fc5c94afb75c314ee25bdcaa8192e65d
BLAKE2b-256 d6abe78e972335f066d4a2238e6e9c88ca8898fc82173cc4af2ea3524b15165a

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