Skip to main content

Business day utilities for Polars

Project description

Polars-business

polars-business

PyPI version

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!

Usage

  1. import polars_business as plb
  2. use .bdt accessor on expressions created via plb.col

Supported functions are:

  • Expr.bdt.offset_by: just like polars.Expr.dt.offset_by, but also accepts:
    • '1bd' in the string language (i.e. "1 business day")
    • holidays argument, for passing custom holidays
    • weekend argument, for passing custom a weekend (default is ('Sat', 'Sun'))
  • plb.date_range: just like polars.date_range, but also accepts:
    • '1bd' in the string language (i.e. "1 business day")
    • holidays argument, for passing custom holidays
    • weekend argument, for passing custom a weekend (default is ('Sat', 'Sun'))
  • plb.datetime_range: same as above, but the output will be Datetime dtype.

See Examples below!

Examples

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')
)
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   │
└────────────┴──────────────┘

Let's shift Date forwards by 5 days, excluding Saturday and Sunday and UK holidays for 2023 and 2024:

import holidays

uk_holidays = holidays.country_holidays("UK", years=[2023, 2024])

result = df.with_columns(
    date_shifted=plb.col("date").bdt.advance_n_days(
      by='5bd',
      holidays=uk_holidays,
    )
)
print(result)
shape: (3, 2)
┌────────────┬──────────────┐
│ date       ┆ date_shifted │
│ ---        ┆ ---          │
│ date       ┆ date         │
╞════════════╪══════════════╡
│ 2023-04-03 ┆ 2023-04-11   │
│ 2023-09-01 ┆ 2023-09-08   │
│ 2024-01-04 ┆ 2024-01-11   │
└────────────┴──────────────┘

Let's shift Date forwards by 5 days, excluding only Sunday:

result = df.with_columns(
    date_shifted=plb.col("date").bdt.offset_by(
      by='5bd',
      weekend=['Sun'],
    )
)
print(result)
shape: (3, 2)
┌────────────┬──────────────┐
│ date       ┆ date_shifted │
│ ---        ┆ ---          │
│ date       ┆ date         │
╞════════════╪══════════════╡
│ 2023-04-03 ┆ 2023-04-08   │
│ 2023-09-01 ┆ 2023-09-07   │
│ 2024-01-04 ┆ 2024-01-10   │
└────────────┴──────────────┘

Benchmarks

Single-threaded performance is:

  • about on par with NumPy
  • at least an order of magnitude faster than pandas.

but note that Polars will take care of parallelisation for you.

Check out https://www.kaggle.com/code/marcogorelli/polars-business for some comparisons.

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

Uploaded Source

Built Distributions

polars_business-0.1.29-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.1.29-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.1.29-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (7.8 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

polars_business-0.1.29-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.1.29-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (6.0 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

polars_business-0.1.29-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.1.29-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.1.29-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (7.8 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

polars_business-0.1.29-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.1.29-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (6.0 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

polars_business-0.1.29-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.1.29-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (7.8 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ppc64le

polars_business-0.1.29-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (6.0 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARMv7l

polars_business-0.1.29-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.1.29-cp312-none-win_amd64.whl (2.9 MB view details)

Uploaded CPython 3.12 Windows x86-64

polars_business-0.1.29-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.1.29-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.1.29-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (7.8 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

polars_business-0.1.29-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.1.29-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (6.0 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARMv7l

polars_business-0.1.29-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.1.29-cp311-none-win_amd64.whl (2.9 MB view details)

Uploaded CPython 3.11 Windows x86-64

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

Uploaded CPython 3.11 Windows x86

polars_business-0.1.29-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.1.29-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.1.29-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (7.8 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

polars_business-0.1.29-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.1.29-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (6.0 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.11 macOS 11.0+ ARM64

polars_business-0.1.29-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.1.29-cp310-none-win_amd64.whl (2.9 MB view details)

Uploaded CPython 3.10 Windows x86-64

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

Uploaded CPython 3.10 Windows x86

polars_business-0.1.29-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.1.29-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.1.29-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (7.8 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

polars_business-0.1.29-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.1.29-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (6.0 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.10 macOS 11.0+ ARM64

polars_business-0.1.29-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.1.29-cp39-none-win_amd64.whl (2.9 MB view details)

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 Windows x86

polars_business-0.1.29-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.1.29-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.1.29-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (7.8 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

polars_business-0.1.29-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.1.29-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (6.0 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARMv7l

polars_business-0.1.29-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.1.29-cp38-none-win_amd64.whl (2.9 MB view details)

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

polars_business-0.1.29-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.1.29-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.1.29-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (7.8 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

polars_business-0.1.29-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.1.29-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (6.0 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARMv7l

polars_business-0.1.29-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.1.29.tar.gz.

File metadata

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

File hashes

Hashes for polars_business-0.1.29.tar.gz
Algorithm Hash digest
SHA256 817175ef3207f0e0769cb7fc71c6791a3288c744af8bef288a00a3fdaaf9d4c7
MD5 18a53172b67b25f9963a395d98696afa
BLAKE2b-256 c9fd4773095f5f92de8c54bee510e786fc19447fa400811467f38ff71f7d4b46

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.1.29-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1069c86cd95ddd9c9db7cb83edab03be392928b7b1ce1f770977dde2ff4d2912
MD5 4c5649dd87da4ce98e0c8d7b7c227d40
BLAKE2b-256 0f0e22cb0596d4cfcae61cd7bb5cf19f9bfbb69171a492ba96c48136880a7fd7

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.1.29-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7444fcc0158baada2a0624db069f80220efd2bbd790ef388dcbad93b19b88dca
MD5 904084cb488daf391230a3d020e96cb8
BLAKE2b-256 d4dfc5004645bca9c32b2eb9cae4ed40de513f400ec18517e086d226cc1c37a0

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.1.29-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b62521360eeff7f01b64ab1ad292256e074b5c34e75eebcd0d3c0c1ae7afadd8
MD5 90f1c3a9ce12244e37ab733bf3e736e9
BLAKE2b-256 73ea3b22cc8f6e08da9f713e86153b4098eedef882b58826760f0f4b46837c0c

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.1.29-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 36127206d692e846ed1ec086717c1226066a1414ea6b41a062874f0b04d855e0
MD5 1216e733018aa4733f031ce9a6610b94
BLAKE2b-256 be2957cfd3f56afa60e8fa692059647453a46c0ac176d673d20290f4cb8f16f4

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.1.29-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6296cc0c5b65eaac00f5c367ddf391879df6efaebe6e118f68bd816ff7b2e604
MD5 04710b84198fb3e111925b91375ecc26
BLAKE2b-256 ca80e2700b76400e2e4bcdae732de6756379b71ada177b5f1522074ae3780d8a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.1.29-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fd9f9a3066d064f82fdb0f6f6eb019b15268233c7eed7d338cb2b6d152777ed5
MD5 d9daeb023bb47512ed9cb81c23371185
BLAKE2b-256 5b87cbea0b3b3b585ef31a3fe9c030ff55200dfa431439199dc2534c27407a7a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.1.29-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b5a33f58ad3da67602cfd989a9b4a4a31dbf319d87a91094248ac1061770c9e0
MD5 b50b38417d92ff31cbf5b16679fdac12
BLAKE2b-256 a7c5f19a20eff08a687edf84cb28886adaa5ecf602dba1fbc797b7515e4cfb93

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.1.29-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e30c8239abbc4d77ecb0f344ab5946d6888486ca00356fc79b7636da2fa5b968
MD5 085388f3b9bcdc3a07bfac631a4e895a
BLAKE2b-256 6369ab697cebab3c668259713364e96f0c59b351d0a94c14555345967010c661

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.1.29-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7ccf1f63f218442cae1f59da91c0fc18b078361e605daae9c9f8223a8b39fbb4
MD5 5b84fcc192da90279d05783b27ec3201
BLAKE2b-256 730dbe3964f9feb3fd0fd00f6dd5abe25ab09e5082a07349f53854126a52fcbc

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.1.29-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ddb4ad200aca8295d89d2f9166cc16d84b4e34559d5b7d2ed0fbcfb8d7ba6e98
MD5 57cd6555e4f3c49de52238f9ba599281
BLAKE2b-256 18391bb8d648ce421492c71ddb32d866c55bfc21f5e850debd62a73b2eae3bf1

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.1.29-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9f770c327566f623262dbebcc1b97100a1b02749bab4b08e87be2b6bf62668d3
MD5 4fd080f2972c6c9a19971a74f24ae638
BLAKE2b-256 2e72405b664dd0368ba34fad1a2f869024c1358726050051e6b39383fccd416b

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.1.29-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 48c7125c60c52fb9ba55689f28b1db96718021d2513c93193e54cb93a09ad3e7
MD5 fec16a7efeff9eca444f0670436200b8
BLAKE2b-256 1617cb3e373f8958652e8cc624efc756ead4f859b008807ed0e4d00050a568e6

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.1.29-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ae84c7cb6bba3ed3236869e4a58aded8b84fc4ddb424e5296d4ab05b4781dc82
MD5 334683ee2acfe784a7686387d5dcd273
BLAKE2b-256 1ba3b079532f662cfdb92342600587f03376d767736684e1fdb710fba14bf991

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.1.29-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3d6f3223bc17348c58c820619aa00154fb600da51fe97ba3c5401c7a516018d7
MD5 dd3b7714c9240f4b67b0666399ff33b3
BLAKE2b-256 7d5dbcae66e60027688489f2c03c340362f12f11f767a9d6910794c4fbae613d

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.1.29-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 978e35384147a4ce1459f65d47467e3bced15242295c37a9655947f8b8a1e528
MD5 a16baf5e341aee9e9f10f237dd7f863b
BLAKE2b-256 76e3ca82b6de093811df8a685ace2d3db065f09b13d1b4caa87d0a816a68b366

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.1.29-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e566eea117ae694b8c50c3fb4842a450b99a19f51bbf78fd7a49de865c51714c
MD5 5ac37a93eb3bba6a39a874fd0624c7b0
BLAKE2b-256 5120892a413c0b4023cfa6e89f7f29e2ad4f0cec1a697d2ef5448260b7c69ae0

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.1.29-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 15d197f2f7e63cb91aa8163f9bb8a3b2851acfab7e7717abce2063d67027a13b
MD5 e127300e844e92e66b69e648fabe8147
BLAKE2b-256 f764442038e36db158c4a50982b5d7ad357b26a5e83bb73c09807dbe8e6e7459

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.1.29-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7449b2da4564eb984192b20530037e70c8f938609d286e8b9e762b978610fcca
MD5 584d4cc4a1c3837025f7620705b54787
BLAKE2b-256 df00fee453fa4d9749248fc739a2efd7ffb4a16d718228216cace412e491a442

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.1.29-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7a850d9fb5d3144aa516d04e8e56d3af4b828566770536cbf4b771da906be180
MD5 b733f5a43765e23caeadce7db2d8e803
BLAKE2b-256 17cc5493935395de849a88620a8843758472e78805399abfde054bad65c01e3f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.1.29-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9fed5775cb515402a659cde75012dfb4cfde28e7d75f6781f4a50428f82f7514
MD5 c30561837de2b1ca276ecfd71617bbe9
BLAKE2b-256 bac3ec271df5ae6e3e5aab4f994cd83e875a606242f67b3dc26c1752250b2615

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.1.29-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5e1531a478ccfeb384ee0b6cba38af76ea0424a8722efbe084d5ccef621a0306
MD5 d99f4fd0878b448116754ffb4bc3499f
BLAKE2b-256 14b3e188cf437424bcc2d045e74dc0cc768af9705237641d9620697795cd4559

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.1.29-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f5deffa8bba5c2ebdfb8c33cf6cd546e4803a0db747b0aebaf49d3f77347ccc1
MD5 d90dd1f6d9103c84777d637e08022c28
BLAKE2b-256 58ebb31c6289ec07de96e3cc5d99f52eb7562b75fc4b7123fbf7551d058d88a9

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.1.29-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 bc3bd73d939d222f96b2703f62efe993a7fac26d40a7d86f504a9b71a730d1c2
MD5 7bd6917b61bb21002cd6159ac96ae226
BLAKE2b-256 2db3dc3bd6f5b77f7c3e5451d3ba7cc0e1956b47f3a417dc7b98615ee90f88d3

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.1.29-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1929f2f1b3e71b9981a1271f0d95a3e3df5e0db246ebe63eb23d04fd96c544f2
MD5 6c8d2f13ef20e3a4d03e4cdd392650d0
BLAKE2b-256 1100ccf67f29f1d6b5ba354fba9bc75e165ee439f4d71a86823657ce266fff8a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.1.29-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0d1ab8410904f5bbd16abf8adfa24382c6c861f023f3e26541b5356063a85422
MD5 df0bf4ed24357b785b76d6b573436ffb
BLAKE2b-256 a449de3981f6827a8a558a1aab06f942a497b19e37f1a62fa08f7a9d120065ea

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.1.29-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 fe243bbd32782c31b16c536a9ab16657901703d74cc50aa56a7e3d9d3a353222
MD5 1d72ace96b8a1bfc91aff2b1bbadaca2
BLAKE2b-256 6b9b86f6f552e82e2058db94d2c4fa7c4eedbd887c98f5fef45178d4d7dae37b

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.1.29-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 040d57da99a1e74ede640e024452162f9b986779668627f91c6ad608f6f68d3b
MD5 e4e937ead876dc47f2477b44c96ca2e6
BLAKE2b-256 ef57f312c835bcd53c4f2dd573bdd1c47816add21ac011b35276aeb5e6d34b3e

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.1.29-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2751fda8cf716ea15ec335967d891331c15dbd672bc5c14738531b9938bcffdf
MD5 a77dac98829e3ac7ca1bc501df08444e
BLAKE2b-256 70a3376d31204c66274af5b8e44d84a481b0ef4f1eaf1e259e049ea0c5c003cc

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.1.29-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5bec846c3bea8a5d916a678c35bde3f6a98f33e885bf5c0da5a7ea9de028f62a
MD5 721d3e6a4d474ce2f99accbbc84df48f
BLAKE2b-256 78cbac60607dbdb7af27f52d6a14d0f3bf28037eced56374b114e1cec6ebb975

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.1.29-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 cf7d6f90acefd02b58790899cb1596a0092c671297ebd783d283ef02c4dfad6a
MD5 f3fd2163a8a6258dced41e85fe14d0aa
BLAKE2b-256 7f7a3ca1cd4f930e80b4bad52b2e38523c35726652948dfe05d7daf6d39eb022

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.1.29-cp311-none-win32.whl
Algorithm Hash digest
SHA256 f5235a89ba8d61a9f93a0cd07e048241a50ec4825f6682387f618d2203c705a3
MD5 22067b416246d0ef740c8005319243a2
BLAKE2b-256 a8a311aa8ce4d2ef9f292f350bbc28212d12f88d953ab834155e9ec9baa3bfb1

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.1.29-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 372cf66016be37ad9cd0cbc28e8dc6d8c920c1b2143fe0ce47f07640ff6f41ef
MD5 3fe8d002273cfc6f9c5bd000d6aadca2
BLAKE2b-256 3472b5e469504e8403c2a989ffbaa56c607838562209d3d8f9c913a764e7d362

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.1.29-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 72eec7c2165effeea0c1454331777ffd379292cd328b0d8f31dd7f28503ee819
MD5 15cad2c4c63cde3ca464690776f4cd5e
BLAKE2b-256 35396a9e3a242a6d1c45c4a864a90a1d4c002a5bd83143ab72ee91abb62f97f4

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.1.29-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3646f6ae8e87d2d90d040e27c655d3b53b9a400a6361d8ce044d5dccf79c1cb6
MD5 5ce3671b71550f02e117a6c594a6e1c9
BLAKE2b-256 59cb3cfc0f4b73bb26c1725bcb6df9d6ed0171b5d98fb7d2dde7553533169053

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.1.29-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e363256a74ba9395834e2d4a2ca81e40c16725cafc1126613a18e645a75a007a
MD5 fd27eba5cdb0e8a60573e954cba88128
BLAKE2b-256 22f5e9784fe09b4b585302a73eaa0e8ac3907f64f9b0bfbdb2e10938e9272f2d

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.1.29-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f5fcd45cf0113dcba1e7f82cb90702794672c585dd8e153122773fc8df5499f4
MD5 227366fc81afc819ffcaf9f69030256a
BLAKE2b-256 845424bb3b59d29ee5110c854103e806c87f5a06f792a8c332f4e29a77fff67f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.1.29-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0686dada012176fcf8bd451b230c89363067e8bb0a4508a020b041f108537a26
MD5 7c3669b91744d4884d7e754ea3957220
BLAKE2b-256 db6c109145d234f7722ab82f2058fd1d5f86fb0dfcba04691a506c65001bbbb9

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.1.29-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 31f4a4483c10fb98f559bde9eeabfb60f7dded7e01e971dbb3ac98ce97fd6029
MD5 185a1819c9df4064c0e21c35679e9a9b
BLAKE2b-256 e0d4000753550bb70b89028357ed8b1dd13dfef75f366a4e863a52f6c52a325f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.1.29-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 cf39d4666f3687a6eb202a7ffbbed1586487a4c55b82cb7bdd8452185e845b68
MD5 f601406a6b2efb9f61a244231a769699
BLAKE2b-256 cc8c34066ff9bcd3451d867d5ab1c6bd6ce3726878a233ab095905922e245e78

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.1.29-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 b2647e39787f308236788ff1941b4421939cf110113ef139dde66020966c70cc
MD5 43703a23ba3285667010f6ca3a2a9c3c
BLAKE2b-256 4d05a74005fbb5138344d75e03a5003a8a2d152fd877693e8a18d6bc3b9e14ab

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.1.29-cp310-none-win32.whl
Algorithm Hash digest
SHA256 baf7317d237cc0eccbd06e29e98c2d1a6602d721f6bd8729b2b27e04f610103f
MD5 9a7b466b0db186f4352f71fc64a71471
BLAKE2b-256 33e8de9b280629c375da0410948c17aec17ec9766df7c79a974d2c47ab0fbb8d

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.1.29-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 edc8bd16c831aa9f6d9a673a5c180e64f988a75f290d37b04ab9d0dcf733f850
MD5 47e7fdfcfd326a7af0e571dcf0a57221
BLAKE2b-256 f25fe7611fb17269675ce86ccb44f7cc2d7b08f4b94ed6b057d3318a257dfcce

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.1.29-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0af5dc77bc2aa8229705191131a24cf14441723282575f601b6a2bff9bcc6b2b
MD5 59d2ad6ce61f3e4b385e90cb66d0b547
BLAKE2b-256 0ef24a227a6a322fe1335fbbea5d37fe82f450c40265fa75c2496935a653175e

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.1.29-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b81757e64ea8024e172afa6cfc9c05f9de4e4c0623ee31bbab528f436b577968
MD5 9035a23a6b274c5b3dc539e3d29b42be
BLAKE2b-256 08081bd796fb5873bdaa1fad41bf27619bcfcd6084298746d0d443b5e0f2eea4

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.1.29-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0db751443d9e0393a23d171e08c84690b2ab330f0100dfd83baf03c7416af613
MD5 d4aa6b5731226ce2441cd8a735abceee
BLAKE2b-256 7e5928ddfd5eea40ff1c90a4cb602dd55230d292b6fab64d99dcbf6c7a92347a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.1.29-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 02a924b84c8889e70a1c28bf690dbcc6726733e44746f33cbf7328122740c4eb
MD5 4c815f3786629cea57017451e0d73eba
BLAKE2b-256 e36ee6c0fd3f8519921f5df2e5a43b057ee251c36c8e917b7b292b1f8634152a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.1.29-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cba47030fbee8d4220ed98557598029a96c5aeaf89bcccca46f0d3d66a217110
MD5 0738c825e4cecb2843bb6ed5c192fc00
BLAKE2b-256 ba002b56bbfd9d0d94581b67b6f3913ac103b1e22714782f74d309fc093f1319

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.1.29-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d426dd24fcdf1b50fc6a2175741b091ffe827674766ed157be185e5b8f91924e
MD5 5ea4ffd915a52c79dd60f13a6be47099
BLAKE2b-256 eb72100fd5da38eb67d546b992dcbbfc33292f8aa51e6b49e48b9057794967d6

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.1.29-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d10cc6233ff681fa36c5d784adbf39d2f5172cc649a9e79ccff04ac5d0d4c27d
MD5 636dc2e36ce55af56b5dd7cb9a6d4420
BLAKE2b-256 edef14b6efc72a4c090bf3077e56021fd813434398cdd0a4d7f610a860b35abb

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.1.29-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 06e11b31b5af151cdfc73a7be3e45ec220bae8557a2c5a61a08d650404318609
MD5 c54f7bf529f91d713960fff21bcf6a7c
BLAKE2b-256 74d9f0919c92c98ee31edc3a9bbb96c2bdfadd658a8a55d03a9551eb60894327

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.1.29-cp39-none-win32.whl
Algorithm Hash digest
SHA256 72533ef8c4bfb6118ff5d9fd0a349d9871e2e7f30e8aad165f40fb9206fca945
MD5 6c5fb7f5205e26c0ee4a259156509b1e
BLAKE2b-256 94f2253d9a10d871d1763397af5dcc152a8a09bb69d27a85d69dbc7984992d36

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.1.29-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d433a0aecdca3d071f7a5ad7c185d47f43db5799f1816449d4b63eb2648e0bfa
MD5 484379191c072b323096c0d0f5dcc829
BLAKE2b-256 08d5b71cf2e22f8b6f71663940d09fdb267c950577eac943f2e94e8f6558f0fc

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.1.29-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e668bf2f27344c18bc01b78c223d2dcb886d7726976a4d6f90d77afb0c3d4494
MD5 571ca7ae7ce8d4ac7d53fa70329bf280
BLAKE2b-256 090c718c9d50ba8cb4d132b214ba5a639a19eaaf12b1d21b221885576da2b1fb

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.1.29-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 80ed8459286eb547b0753fefeb1577f4de6db61895bfced867fb7ea3d1fb7db7
MD5 8bdab1dc10094668665d20c115ed6f04
BLAKE2b-256 4886565156a2e547ca0d13ea7450b4eacf37a64b3e1f112a753c3299f965381c

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.1.29-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8856a7cfc15900e9ab966defdc7edf3ebdaced40f3e96aed5fa567ad4823a2b8
MD5 2267b80ef0934df015364651c3025415
BLAKE2b-256 6d4212584cf88c12157aed2f4d6389ca57d3726934a74fe4718e558e560780a9

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.1.29-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 835d8be536864353df06a2e4a57bf8b08282693110355c5b6809a272023e44fc
MD5 c525b6206f428b1dfc182afc7bf4e4f9
BLAKE2b-256 3e47afdb03284671d114f556c9b5e77f8f135bfb149bce602d73492cad3b81fc

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.1.29-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3a21934465b18b54e18bc9de1542c5991dd1c34445ea81b27cc7745949b0e791
MD5 7c9f4a6ac1fa4b9f85f91ea0c5ac0a54
BLAKE2b-256 7b70ad9b9487f0d7dcfe9d63d7c23b1f6bef55271d4c7c26dac0f9954f80e196

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.1.29-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 3e1af45affe7b02087e5903209c979fbe678c0530a6a7d258405cb0675c63f57
MD5 19eb5b2f1906150f56edbdcc3c0b52f6
BLAKE2b-256 6597172a9c8fdca8c5e2597f4ca35c8750f8e4727cccdf27dd1e65483b1a5bdc

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.1.29-cp38-none-win32.whl
Algorithm Hash digest
SHA256 4baeec52c6afadfe65833a251a469e7628412b18289503879151d24d3004ec2a
MD5 00aa61f86819c7d6bf37d8e1e52c9c24
BLAKE2b-256 974dbaabca455c9e4c5a2f5edde183ca1caae033d344ee3c1ab0ef161c19732e

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.1.29-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 69e94da95fcdda99833100153d646efe94cebf0f69cf3f2f196417cd70847475
MD5 0a5e59dbac465193d7a277dfb823ae05
BLAKE2b-256 a7f4dc7f8086e3fb8f09aba741bb35845092b992cde23c85de4aa0a9e026be0b

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.1.29-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4fc83ae0021e34a7f6bea049662401ff21255cfd8015ecd52477d5609a8b85ef
MD5 9ab4dbdd5231415d3446d944961fef90
BLAKE2b-256 297cb94ef272671c3f9febac5859a799fb99947f9897e5d616e1532cefc60aa1

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.1.29-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 37400c72ebb0fbe7f7d4e61b66c1fb951ca5aeed5915b7ee79f2010edc1fe191
MD5 9e7ff12c0a436b94f72ee9f680f3828a
BLAKE2b-256 500a44887c9d8c8d79a92a14a8678e42ed6bb8b83272cd9ef2b3af056cbf4014

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.1.29-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 82d23d799174d88e6182f85d046080c25de453a90bfc4097d74c0072b51336ad
MD5 b63719e3fc04c68e5b260262c9f6ba30
BLAKE2b-256 f9d3d493561f2313848076178598b9e4e2e9575939f1629bf90e199a3fcb33dd

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.1.29-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d1ff2037af22cabf0070027e55c4420bfb0636995132590d187bcf51d3ba9a7c
MD5 5c284537e5f6e4887bb245081407bc3c
BLAKE2b-256 0220e65831d398da0c379312dad48feb5b32654155604007e3082fc319652700

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.1.29-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c0e861f8c5ebb7b46ece334ed9b838fcc65545948f3fc4f07e4aaf7c896cc1bc
MD5 2a7964bdbc9347c68597d4f38097ae6b
BLAKE2b-256 d3fd4e5c730244552692260bfcef61ace93f5dc48eeefa5794bce62ca10bd87b

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