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

Uploaded Source

Built Distributions

polars_business-0.3.16-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (6.8 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

polars_business-0.3.16-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (6.8 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

polars_business-0.3.16-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.16-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (9.2 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ppc64le

polars_business-0.3.16-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.16-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.16-cp312-none-win_amd64.whl (3.0 MB view details)

Uploaded CPython 3.12 Windows x86-64

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

Uploaded CPython 3.12 Windows x86

polars_business-0.3.16-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.16-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.16-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (9.2 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

polars_business-0.3.16-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (6.8 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ i686

polars_business-0.3.16-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.16-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.16-cp312-cp312-macosx_11_0_arm64.whl (3.0 MB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

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

Uploaded CPython 3.11 Windows x86-64

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

Uploaded CPython 3.11 Windows x86

polars_business-0.3.16-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.16-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.16-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (9.2 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

polars_business-0.3.16-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (6.8 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686

polars_business-0.3.16-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.16-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.16-cp311-cp311-macosx_11_0_arm64.whl (3.0 MB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

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

Uploaded CPython 3.10 Windows x86-64

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

Uploaded CPython 3.10 Windows x86

polars_business-0.3.16-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.16-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.16-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (9.2 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

polars_business-0.3.16-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (6.8 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686

polars_business-0.3.16-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.16-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.16-cp310-cp310-macosx_11_0_arm64.whl (3.0 MB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

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

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 Windows x86

polars_business-0.3.16-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.16-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.16-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (9.2 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

polars_business-0.3.16-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (6.8 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686

polars_business-0.3.16-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.16-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.16-cp38-none-win_amd64.whl (3.0 MB view details)

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

polars_business-0.3.16-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.16-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.16-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (9.2 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

polars_business-0.3.16-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (6.8 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686

polars_business-0.3.16-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.16-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.16.tar.gz.

File metadata

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

File hashes

Hashes for polars_business-0.3.16.tar.gz
Algorithm Hash digest
SHA256 1e4ee8360401cf3d57c3e6549f41d0090d82e0492836727eb369e164ae798d1f
MD5 3a7d6d536fbaa6bf1065966f4717a5a4
BLAKE2b-256 3436bcf8002994020e4c3a374fbca4c9a5defda9efc90cc87707ed2e96f46b97

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.16-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4c9b59d50a2d1f2bbd321cf518580f59ec613488f078314ab47e146d269f9545
MD5 de83639c8d4a66aa46166cbf4c1bf6fc
BLAKE2b-256 343fb193f108c7484833baa33ac5b90eb35e7815dea751cffae577ddfb86946c

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.16-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d4ec84f4bcd258acff2c69be22661f8515c718da40be8f1f7cfc006bb59cd839
MD5 0a7193d432be762910e6bb43a7de6c30
BLAKE2b-256 f274af47908a00159de83abaf6c781a54bd94a30259dea9187f3d2c6d80151ae

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.16-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 fde29806cbc7c78a11e11760d6bbd95296641211eea79a3c8035d324d8c6751d
MD5 264d487946cb1a4b4ac15a2fe56dcc3d
BLAKE2b-256 dfa6abd13b96b341c98dd9f86622784db220fa27b55476cfc73f9e0f3e9969f6

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.16-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 65d852598bdcba895c01568036046042e60c5a970e2cadebf9a3f6cbfbbaaea4
MD5 c694eb1b0876518964d69e91b375dc12
BLAKE2b-256 0ac69afb7b949d870a168fd29247eee1ddfe3e68074826e4995d8bceb7a87ae4

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.16-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 04476280c4ed35792a25341e3db9ce7f0c4c25d6c24925688ee0ddd3b25b386f
MD5 4dca062a8c7ecbabc7d9cd88d2b2b190
BLAKE2b-256 c8aa626931d3ac9dbbead5f0457c58f11158a318494fc3117e0b7108ad21cd74

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.16-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 94f25d567707e56da97f5684831e61c68278ba151af152c028a55c5fc29c3d3d
MD5 bbaf5769bcc0a20dd8608266030a1106
BLAKE2b-256 783b1ed4c6a465a34a816d578953f22e88c9025d5b5ca7ae004880e5aaf3924e

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.16-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fd1eb59d0c7d622e000d4e8e8f1d92b74f9332fbe4327a2a7efe57061b7f655c
MD5 c34d125db99bc4fcd63fc0b47968075f
BLAKE2b-256 bb5bb364f311eba8aced56acad317abf248d3bf2088bb50600f2bfb063907d76

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.16-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b05b94f71c419b35048a3925e80ec0d988bafcb90868e0de5ecb3777af34effd
MD5 4ede0bacb95204022bdf44eab9573653
BLAKE2b-256 02c8c24c2d4d2ee4a3fcd256411e753a9d0191df60f5f558dd9a423f20621087

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.16-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3b5f24f6043747ac365f67b66055c7ace60bd300323f20bd2f262ffc40cc0388
MD5 eeddfd5c6b211da81ed2d06dac6b2e15
BLAKE2b-256 abda79076131f2a4d74c07a08f030a67b8c505f1a8117d704dc2da47807ebc86

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.16-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8c3000002ac646813e93ed65270bd957353b22f2a21d869c09143fb9207e7a52
MD5 c259e1e8e0131904d20652a9f43ff85b
BLAKE2b-256 6860caf8c8ce932ce3ef45fc7c9412e79d080b208cba119fe683e24057bfed5f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.16-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e588bf2c4f77a7b64417e27ee9c6c23ef15056dc23e8e6c7753eb043e4a1c37a
MD5 18d32eb5af606706c5c903d93333e7d6
BLAKE2b-256 7419ff01db79884d2e40283bb6a9f053adb60ee08aefda275839a0a3466e0dd5

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.16-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c1f77d9240dd9f339e9322dca416d9dbb237b9236e1f979d425dddafd68b91b7
MD5 b68418e839bac52477ea819c7267fe77
BLAKE2b-256 a7caeb3e26489426c0df5919e4abc8b97ae9037b14eaf9275bf5a20e13ab2fbe

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.16-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bed0e5df09b1ac115e7490d7ef4e30867c8ca19b53acad10ac89be2f39937aa0
MD5 0b95cfb854a0c69f45dcb84f17f7fa10
BLAKE2b-256 887aafee1fe8c82e8208117a7679b749110da85d847b1a0758492db938f135a1

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.16-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5c0439d16dfae57e5b4b8e5ea44113494b9e1c11f9786d55b9d83912a87fa9b1
MD5 52c0b9366167900d2384f27a3598f823
BLAKE2b-256 5d9844bc4aa3db1ea5988d6fbd0288b1752c8833790c747367a28f857f9dea3c

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.16-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a91aa9eb00d8d48a1aa9cfd30ef601e4c9203cea14360861f68aa910fca59a29
MD5 7d2d61547e510d1bb889b0512dcccb1c
BLAKE2b-256 814a1df8386f555ef6f33ea3428bae45417f21318df1b9f5692c51c1c5b17115

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.16-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 67e076ed25340889d5037a5c883c89d0ca19cb73a250caa84180c9cc5b0aca90
MD5 24fadc5190c7a66a994ca0aad2a609d7
BLAKE2b-256 997626ad36fed50a2930f2e29866fc44d281e85469e595c99edd99ec82c1822d

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.16-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 83489ca3a797ecaebb19e2050457429ffe8852665d5c5785a3564e9df6c2ee92
MD5 75bcf8377d78867d531dec2943ee026c
BLAKE2b-256 5ee94a22945e265862196e961188ca33bea5d7d9634c12952047ab285f4e8ebc

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.16-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 24fc59fe339a75c753e190a634159e3b0815bd0c3c6e797aae247ecf3ab9ec78
MD5 6117f5827ef5b4aed07c238ea2f51356
BLAKE2b-256 7b9cedac2e8aaa1f8c3cb8b17fa380a675fc1fb891ce05e1a3560d877eace579

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.16-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f7a1a296c07d9f3cde6b7a76b14ac3cc7f227f8108d70843dc679eb2878d9bcb
MD5 9ac00b462053f4ac8ee1ba7e029f5c7b
BLAKE2b-256 cde2bede61306065b1f4e927a9ef1688226cc9e8972daefc55f3e2e09c819cf7

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.16-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f6330e51e4a384a9afba55b74d8cd1719cd623a04daecd793785483ffad7c61e
MD5 879fedc992815c3f67138dd38572239e
BLAKE2b-256 24bc1c4aee166b84de0a37d83f4ab50c594539626fac5a53950601cf4817d3f6

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.16-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f00b237819646cbb49361a46a66f022d70be966aa9d9b25426282b73d94f53dd
MD5 5103ffea7c75e34d2f7ff7fa49aa2f2d
BLAKE2b-256 4ffbf5704fd4f3b2e2c64048435edc0827dae684c88d9f3ededdb9e150c5a1f0

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.16-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4287fcddaf8922d6bf42ef998766e467da541d588134eaaa6bcf5446ef1600a3
MD5 c8917edcdf9cdc46e6056778e367c47e
BLAKE2b-256 73d5a5cf46352631f1e0d75ff399c53167674c4cd624fee971d41a5b21bb11bb

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.16-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 8d7076a9c6f1fc0aab2c918103356cbe8a415c37a237c0c9ed86a64bb2a1e35c
MD5 e158e6bf3d9a7e3c9a594a8dfde2efd4
BLAKE2b-256 d39f40a5a3af56b691b18fb5e12554f8b84c029a289e35fab06881c492f5ee98

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.16-cp312-none-win32.whl
Algorithm Hash digest
SHA256 fefe8b23788b5601896a4d5df414f3cd9fefbc903acd65a6749c37ab625dc9f9
MD5 d497b5413f07c85b624107cbe76666f3
BLAKE2b-256 5b856cefba2dd1513a3be92f52d1fb1afb471fd36bf471c567f0175644583159

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.16-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a5f09db4ef71f02d0cc27f516eb2e5c77d8b70d7c0c03833157d5f6c26680c32
MD5 efae74d04626a4373427856484127c12
BLAKE2b-256 6b21842b0548a2e535d3a0b8ae44445c09f0501e2308af0c6bc82f2c14682599

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.16-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 aa69b753ac3c5627965bef1ec20bb2a34b20b579e78390e5a8430850288406be
MD5 04080bff9f156aaca6bff7795c28dc4c
BLAKE2b-256 2aa388ad238d587a0be2b5d07f8dafb45e6338e01202cb50235d3015c27fef33

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.16-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b5b457b40658eebfdfe5a2d4f2e21633d413d75093e43a2b5dc87cc9ae98c55a
MD5 f177ee53424ce944fe9fb27f1fbede32
BLAKE2b-256 77c421af76e714204f1144578c6eef12b345e614df0f40804533390b5cafb5f8

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.16-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6d108cbd7e43ae2d818503df2cf168e4849cbe672a2c38afe9504d3c3e725c56
MD5 3d1cdbc8b3601a43555401ae8a3e4e34
BLAKE2b-256 7125a34bdcd1b656085716cc65c5ccb82556a404c3a658b56ca6c03fbcc58719

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.16-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 96ab0efc020bb97765e0625d8d8c42e9ee99b05e524c70960159c1b88707291a
MD5 0fcaf87415d58c771c8c1f581c8ec05a
BLAKE2b-256 be73471f9ed616b4f2b84c8ede93f2139f0766053de3006f7d365ee465e938b2

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.16-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6ccae8590117cb0eefc96aae6b139b1069a8dfd08e2feaf03ae2248848e6fe87
MD5 c13760d224c777a8d9ddcd96d836ba75
BLAKE2b-256 e6f8048d2031822264ad645dce9eed7e44f84dbcb709d2bfcf5e1b232f0a2a3d

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.16-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 456ece8b14d8072694c5b2a04456244c72800ddbb7f18e6cf9c1d7b48cead57d
MD5 599b4bab04fde8c51bc7ed636a071510
BLAKE2b-256 62743fd4c7b5357bb1325614f6b690f087b74e58e261ff152e068ebd84aaa89f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.16-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 3a9a590d11970a7afd178354862a893449c6acfc6837f277df7148ca71f1601c
MD5 4a3b9329565e8b01dfe4a90176ccddc1
BLAKE2b-256 6212f53940141ed6695d0a7e00454ab70721f01c734e911977013ee93576e719

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.16-cp311-none-win32.whl
Algorithm Hash digest
SHA256 fc01a43e1750f782cc9ded436fb063c044278b44a181c8b9bee08722b5c0224c
MD5 6593f14bad883d2bbfaf49942280cede
BLAKE2b-256 3a2d4b7a0c683f4b65b23a9fec44b5331744ebc4f3ce7d5c6ee0bf2144c28621

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.16-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2670d68cd58fe3c772117de489fb78492ee1e7d4963d1008544c96973f8dfc3c
MD5 a1f4fd9bfd4cb788004b108cfcb94ec1
BLAKE2b-256 9ca72f1444e60a22cd611de22367b44849259f2fdb454bc1343c63c44696101c

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.16-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9b2dcac23cc42ff9750a8a77b4d6775a6e6b4038171479fa3246729567a3e974
MD5 e65dd28efae4de03148b5f09ab5a5583
BLAKE2b-256 1c65f290f863cd186ac25da6dfdf679bf97481df1bfc2aaee0fdb01e1dbb1c8a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.16-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1d8e4f6c89e98ab6b0a921f70ba9fd4ea5d585a4db6dbf60c1ca898cd0d2bd69
MD5 6316b851184eaad33ee6465e128b47bd
BLAKE2b-256 9dcd3bbc38a0233d9ea9e8967a2554bd049825c18be30abc7444ca5cbf664d51

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.16-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e91eb723f9a765693a08ccda446ff3ea615e542fea6b63c21dd12d500e100785
MD5 5e790d1dad5eb5c26cca42bb25fb282c
BLAKE2b-256 61451efafad316103eece23e3bf4c8f8cccf86072fe9d0556c701ca3821a6a3a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.16-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4ff021f9dae95b2d219c9662e1ee8c43893912fef8de08ab145d684a14169f41
MD5 6cbe51942eb1f39ccc6a6b16a33e92bd
BLAKE2b-256 00bcfe4b97136bec7156820824645032ef611dd7d27fe4d0867d9d246418765e

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.16-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e6c93a7d9c8ec129984a9fb8cc49f0930c934ce6f9c4bbcdd44417eb0b18b840
MD5 b445b8673b106e85a166478d834be49d
BLAKE2b-256 d68509c47a182a06d8b4225f6523fdcbefe37a92be020e2acdca3c7243024497

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.16-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5aadd3083e61cc7febe5eebad28f98da36828fa186e2fc0d6ffa36cc58406019
MD5 a65dca2b9e0b48f7d224bb1d3b0dd0a5
BLAKE2b-256 35e58e8a14763fc44ae755624d830c251cf34936e3fdd828025ffaf29616a399

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.16-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 381f2474aa7a75ec12b59d930ffa1538cbcfc09c9acc9b015f1944ae5284f992
MD5 6609b792f0247487f1eac219e12d6225
BLAKE2b-256 1228439d3bdceba7d6dd6cd4cdef92b6bb29f59a15c8169e1832086e3e66654a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.16-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 2226cb690fc1ca2ef4e9a13582d1299a2d1314fdc7fbca6228d031b23a1c234c
MD5 44d92421b968107bc492984203777c57
BLAKE2b-256 79725bac75372898ac76592a46b1ceb7d613f152cab925d8e7f266b662c08b6c

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.16-cp310-none-win32.whl
Algorithm Hash digest
SHA256 c8ba85c0903b8451c32fb1c30608f43fb71bf30dac1458b7b9ee8a4e2a767653
MD5 1a7f685837770e83185bd5369eab5cc7
BLAKE2b-256 1b717731f4478beb8b3f89a2eab16c641c716a89a2d3e421b7d4f742c3c027b7

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.16-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 18bd595db515ec262be6fa165d133b64ff945828314b3b17c90719e4d7c6ce99
MD5 690de74a8ad29a9bb3ca4d397b4920d5
BLAKE2b-256 3417bae52f158fa61b12c060155a0019aa72516c97a75aeea7e9245fbe8d553a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.16-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 67731dbd9d593a1a0671fa9d8c115c9c83348f3512905b3c8e66cc501ba666f5
MD5 c1c1bc0dbd9e731f4ac005e0820c1e4d
BLAKE2b-256 12fd748a17ef5e4f32e72b8db2cfcd76d1c929f89f2d30b155e7cc6c5859f1b5

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.16-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 125835774c6806d96ebf8977f9c1efac86a396b66ffec859d95e1dca0825d5b7
MD5 a2611dca5e51e933eabe0d7c9ee757c8
BLAKE2b-256 e1a0284c5520698febec31af37411c0537113200d89df43f2c859ea834bad8d5

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.16-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 81cb1e8bd939bbd32e290a3f5f2c3f32546d3c096cff4868bd0c160154d4568b
MD5 38b0bb15249418c7472442adce137de8
BLAKE2b-256 7ab7f03337f9f12061a0c71d3e5f921a33905d981e2a99234c1d3bf89be2b2ce

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.16-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a3f476275696b48e867cefd201d7d92b2614332abfbd792a12e6d91bc9f494af
MD5 a63c4ca2dbe7ebebbeb5945abbe7f965
BLAKE2b-256 62ab3175b4da3a3ecea8b78ad7afccab9fdff74e9adde9d8d271eea1d28d3171

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.16-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c31b20430d565434df80f3976c46abc72e50863056a08fc3226102990346b81a
MD5 d668d7412f6b8e9c1218b36f6021a9a3
BLAKE2b-256 1fe80816c1daafb24bed1b4ed06140ce6f827660d6b1c730525797f127e98a5b

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.16-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 193dd433734a7d234bee5d2aa1f7b5bb8df3251ea03cd2153e814144c82735f1
MD5 69945ff5b432cda363ffee5866b4b8c4
BLAKE2b-256 b31d58c49fb5d7d953cfab6df3249f9b1b3c064ad34f05f6b6759d3b44ed455d

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.16-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8011cbb7f1e2fc614e237f0dc8be576f777b37b2190f5596d3a97ed4318b6674
MD5 c28a2ac4ff54fffdd64c675c1cc8d9ff
BLAKE2b-256 be21e06240ac7f467d20b8479bc65e93c269df36488ddb0700c862e1b0518d68

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.16-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 727ac207ed1ada79b27868254f9f5beb1a7b35f5bb74a8737a3e0b1a0236a880
MD5 e324cd70770dd777ebd6f32fbfcc741e
BLAKE2b-256 a4e5288d083be41329050bae89b62e399203cfd6dfcc54dda466e58942e38834

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.16-cp39-none-win32.whl
Algorithm Hash digest
SHA256 fbdc80022adc57cccfa2d5de60d4377de8646705b9b30145aa19718bef6764d2
MD5 59a8211f877d1de3fbba6d134d6578f4
BLAKE2b-256 facad02e2c7d5b0a773ea6b22ebe874bdc6f98f9c3e21f5c801baf60897633fc

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.16-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 82cf45f7fb201f3c599c0bfb9d4ad9a6738617151864300cd0839ace34f1218a
MD5 d9dd0ef952a0c9a91d548942689f775c
BLAKE2b-256 4a5be7c9a03f3198856176e1a9316e24948b04c36983806abad0fc55c9c2d2a3

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.16-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8e64aec079755caa1eb3caa152a2b21d345c057a3c5e11c1f8f607fa8c157d8c
MD5 9d3aa3249399c85b4b6c91e3e0b2bccb
BLAKE2b-256 53b9a7906730d95e70c052488e8766fa4f45708b80e0b6c2a5ea66a4fec1e015

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.16-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 70a01182df5dd528df293764324d308e5189dbf7939c2a479237dd2fcb6fcbae
MD5 6c62b7288263f668ce09ac4c4df0c552
BLAKE2b-256 760c7c52f572ea281e4b7da6ba55c400296cf9120ee8df8f864367bea2b821c1

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.16-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 da700ca9ad2e25c0d1262e0c377ff0ba421c49e0b02b4e1d6c67ca2ae07df5a7
MD5 e531040f0ef264ff7206aaa004aad01b
BLAKE2b-256 182f40148bb245398aa98491d47cc90f3a388a4eee269e8a8209fbdc230f69a2

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.16-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1f7d46b40513589df84514c35b3783b97542466b2924daab963c8c3468ad8f35
MD5 3ba731e60d7325ae58985bd051912ca4
BLAKE2b-256 0a531a4e1bfb2d1bb2e8b6381a73ebb3a09b20736c4a2072d4f77bbf702effc8

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.16-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b68edc572b9a0e6958ff57bad7e4b73af01117543e74abc1cdea67ba95b9038e
MD5 65897c684cfcb15d598ef62608c0df35
BLAKE2b-256 3623f0d589297e9298929b866eec2ca343ad7fc3b577c1e921b26c4f0bd799eb

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.16-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 72029212996682d10f843be9d2182df48e77fbebd08c447661c5188c863c483f
MD5 5b147702cf1be4dde7c803af3943a7ed
BLAKE2b-256 785f00cfc00850cc5c59a66062bfc85c62daf3fa386df4ddc21c3773a6b59042

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.16-cp38-none-win32.whl
Algorithm Hash digest
SHA256 462ad7ee822de54fc2db02a8f294cf75412919fe57384f00ffdeaf8bc427a6a5
MD5 a4448da8609f69f5a66c351505a039c0
BLAKE2b-256 268c6fcd22e86c225ff6e5a5c56399a4b10ba744896841a67b5e8731591080e8

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.16-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 275c70f324303b7f9336123c2e41fd331afe149460dd2c24efb7f1f3292c0eff
MD5 23ed1944483d058a65267cc8141bfa0d
BLAKE2b-256 e54262a8ecbe878ca7f660e1462903dea36c5d68043bd1d551f4b2d8fa36cb86

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.16-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f0eb775431d6ec56079814db9c96653e3fd103c4ed263d0316510884e3520ec0
MD5 b16ef0b10b66dc1f0dd73ce3df4b57d0
BLAKE2b-256 1c1ce3e9cb0a4b1beaa42d0e580b6fbe3b67c434f7659b7f2c0a102dfe2585f8

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.16-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 94d929362f2c0bdaa46cad3ccdbccc0e7424391dad343cf1d56915a80efeb79e
MD5 beeb9e597566e951e1f825df47fa30e7
BLAKE2b-256 d9c48c2e2ebf75045ba7ef6d807c97bc10478e289c38ca9e1cc7c074b25ca83d

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.16-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c3ee1c7254cd081864098acd4d377808b664473bf04a9f98a00e352e96d22ae7
MD5 0970b9c95c9ecb8dca17ca7718eb0698
BLAKE2b-256 1f1b5e95dc62268dd5607e368ced34ff23554613e936cec79abaeb3dbab2cabc

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.16-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d17261cf5886618e2d6519cc044fd97970873596b144612ede59f3685bcad4b1
MD5 9ba82256c6dd8594fbead52e3778532f
BLAKE2b-256 28e47b2ed22376c008e0d83ae519fbde4213383d7c50f187236c551ff4cad8a2

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.16-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 57c9d10b7ae3a7359436a5bf26dbfbb85f798926616e8300141870063c15eaaa
MD5 4802e868ed72a6c311e8724d65d84b44
BLAKE2b-256 38d4521a55dc3d43c4ec23776c64f3749fc7f8c4d03a10e14b307ecb162ff1c8

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