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'))
    • roll argument, for controlling what to do when the original date is not a workday
  • plb.date_range, just like polars.date_range, but also accepts:
    • '1bd' in the string language (i.e. "1 business day")
    • holidays for passing custom holidays
    • weekend for passing custom a weekend (default is ('Sat', 'Sun'))
  • plb.workday_count: count the number of business dates between two Date columns! Arguments:
    • start: column with start dates
    • end: column with end dates
    • holidays for passing custom holidays
    • weekend for passing custom a weekend (default is ('Sat', 'Sun'))
  • Expr.bdt.is_workday: determine if a given Date is a workday. Arguments:
    • holidays for passing custom holidays
    • weekend for passing custom a weekend (default is ('Sat', 'Sun'))

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

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

import holidays

england_holidays = holidays.country_holidays("UK", subdiv='ENG', years=[2023, 2024])

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

Count the number of business dates between two columns:

df = pl.DataFrame(
    {
        "start": [date(2023, 1, 4), date(2023, 5, 1), date(2023, 9, 9)],
        "end": [date(2023, 2, 8), date(2023, 5, 2), date(2023, 12, 30)],
    }
)
result = df.with_columns(n_business_days=plb.workday_count('start', 'end'))
print(result)
shape: (3, 3)
┌────────────┬────────────┬─────────────────┐
│ start      ┆ end        ┆ n_business_days │
│ ---        ┆ ---        ┆ ---             │
│ date       ┆ date       ┆ i32             │
╞════════════╪════════════╪═════════════════╡
│ 2023-01-04 ┆ 2023-02-08 ┆ 25              │
│ 2023-05-01 ┆ 2023-05-02 ┆ 1               │
│ 2023-09-09 ┆ 2023-12-30 ┆ 80              │
└────────────┴────────────┴─────────────────┘

Benchmarks

Single-threaded performance is:

  • about on par with NumPy
  • 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.

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

Uploaded Source

Built Distributions

polars_business-0.3.4-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (7.2 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

polars_business-0.3.4-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (6.9 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.12 Windows x86-64

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

Uploaded CPython 3.12 Windows x86

polars_business-0.3.4-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.4-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.4-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.4-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.4-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.4-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.4-cp312-cp312-macosx_10_12_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.12 macOS 10.12+ x86-64

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

Uploaded CPython 3.11 Windows x86-64

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

Uploaded CPython 3.11 Windows x86

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

Uploaded CPython 3.11 macOS 11.0+ ARM64

polars_business-0.3.4-cp311-cp311-macosx_10_12_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.11 macOS 10.12+ x86-64

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

Uploaded CPython 3.10 Windows x86-64

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

Uploaded CPython 3.10 Windows x86

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

Uploaded CPython 3.10 macOS 11.0+ ARM64

polars_business-0.3.4-cp310-cp310-macosx_10_12_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.10 macOS 10.12+ x86-64

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

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 Windows x86

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

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

polars_business-0.3.4-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.4-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.4-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.4-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.4-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.4-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.4.tar.gz.

File metadata

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

File hashes

Hashes for polars_business-0.3.4.tar.gz
Algorithm Hash digest
SHA256 f1261a88081cf28021b556bfdb5cb4b0f18c398910c9130052ee7edf6b76e321
MD5 de8aea517f5458631bb2b82800383742
BLAKE2b-256 e0d842ed5b02e8acec22d2c85dbae7ea0902e813db044a3f5d838ac2d795f1d0

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.4-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f65d9c84ad7ac4deaee865319372e9b4eadb69e5ced38ff1e0812b9db2da4b18
MD5 da2ec3ab07855c7718e08090d7a3a366
BLAKE2b-256 3be0c2b0b4dc505fa796ce1ce90b29842ec0f04d5e287553cd705c8abb6419fc

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.4-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6929c18a4dba10fd03756ca3ddd3d506ab60b48b8af600ebb1b42023b8259267
MD5 7129e5c4a11a833222476b49f3e782c9
BLAKE2b-256 4bbb0357b609421855c53e7808a9769dad49ed8aa85b2bb4bcd94199bf7d77b9

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.4-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3629de27496bd8ea32fc1d631f8295529cba66e753d3c75ca4c2e0aebc228f11
MD5 dc97bf39246f1b0af9e86940ce16e5d6
BLAKE2b-256 fcd43ced6c0a29dcea58a5f52ee7f444f8efc97e2da51cd67dd45c0ad1ab7ce4

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.4-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 82ba585a60b18d9a66d92040a1812089bb620af786a401f111e2a2c15330ec6e
MD5 33381864e11cd8427efd882aa37ee446
BLAKE2b-256 635939cdff4ddf575d98cabb87e1d6b6749ec6d4664c790397ee48b6bfb37d9c

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.4-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c45290f3b7441e89aa7bff4e5afc7bb6396635081b33b91d801d2f80529bab04
MD5 fd8a40f28b136cb947a1f110d94acf15
BLAKE2b-256 d6ceee816cc10501629cedef4076e042c0abb6f882905be9567413ffb51fd9da

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.4-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6ba4128184463691313f16fefb2c2c80f6822d04304aa410f8dac3ff971541f6
MD5 fdbe280e24a680579d33c009d5473751
BLAKE2b-256 45fd0430081efe96fad584c89c24c05aea9aba61f9968f51e37acbfa5a44dc1b

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.4-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 874385aae9e1ecd0e0a8ba05f2c3b7d03c0e787bd4f0b325b583e25cd2dd8a19
MD5 d8a6cc807fb2a5274726e4d3195833ce
BLAKE2b-256 ab02ac3453f2e704d2e99ee3983da472374696c11274ea43b9b20d0f2ad17ead

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.4-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2bbbbb06d8ddd268b1b807f5c6c1b4739c8c9609aa8cd17228834e4cf9f1e29d
MD5 b73245cc70ae509df57eb3ba2df73afa
BLAKE2b-256 e353acafde66b616677a2c393668d8a177d9a73ed27b62ed74b464dd10129790

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.4-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a65970d1ab1400e24db274a0cba2cecf95bbb2b7116f68903b16f06a133fbefc
MD5 7e0f9b74816cca09cdb55965115526d1
BLAKE2b-256 fea6da17db0c421dee6cfcca32519db62055f40ea42eeeaf103690842023a961

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.4-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d127b3fe67436abb1a199289e317f49a9dd38fb0638e006c42fd965486e267ca
MD5 b650993a80cb22ed14f0c867291a2f98
BLAKE2b-256 6ac148ae40b17720614fa726ea38397b0374b1e5c23ac7a2915c2073f356d488

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.4-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4832fe7dee0e29463989ed32d713f3369b505a6c310915ba24286bf3f6f83021
MD5 40515c9179f1993f14a180ae3f1247a7
BLAKE2b-256 2e0ef20c00e57bc303bc039a3c4828abe0ee89ffb3aa18cc3877665c11febb42

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.4-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 10f384d1fbe5e26165f3ecff193eb206ae9478e80329b33009c9d1495b83203c
MD5 00e29ea34b544833600892c330355718
BLAKE2b-256 828fd68070495247c984ef0efb8f623ee094241d2b60799068f5da364fc2bc2b

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.4-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b8f0f57196a87f5599476393bd414a12859146e5d69292c5cbe1471c6de55d1a
MD5 c5fc08d6174d62350372ffd67f4f5a18
BLAKE2b-256 2ccb1f168ca291a9b7795ed92286f6f0102a69655098d72820d4428db67bdf6f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.4-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 fb48692f3806038c95751078f46bc30c7153e11d0ba289c6e36a9423559dc953
MD5 e7f47cb07edf08c5cbf8c660041cbaae
BLAKE2b-256 f981a4c95ee8c385223eada893aa4a6c716c142d0f994084d18c27d9bb7def7d

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.4-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 44a36a7b06781b2c0800a077d64518485b7b9bf6e6e0341b5202b289e4366f03
MD5 7155a5300dfaa2c6a572a2ad489fa8af
BLAKE2b-256 b7ea1d87bb4868668fd78cbec411afac4540c54e04ce7ac5a64bcb2e0a948c17

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.4-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c3c9afbe8db747442b099e454cdcabbda26770e72c9772f6ad269dd7a89fd9fc
MD5 519ad95ffeb3ddd2e3fc4d11e0a6e9f7
BLAKE2b-256 337c8108ce4e84ad4c6f1541b0a5e37483195211ad7afd811805ad1c2f6831d4

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.4-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c97b578a45e07cd2a76746f72dbd6a5b2e6cbadbe7af1f1bfb2fb046478aae1c
MD5 a6e42c89b9f7c635f352f3fbfbb48cb6
BLAKE2b-256 2a5d63fe302fadd23e40eed749a7e159b7f759d68797ddbc3a5b21ecf5813c62

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.4-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8c5f82098d8fe14b1c1142f7361639acb2e6e74d9d64c3a4cc0bf4e4e064ba42
MD5 6c19c99aedf24af642eea5dac16aacee
BLAKE2b-256 2c6c53a7a3560bc23196b414e6f907fe793a099026f1ff3aef6596b3ae85bd96

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.4-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7eac526585a72d2b186e1659fc4e266492cd2ccd047766a218b74382ac452ab4
MD5 378ecb10c3fd0e46e20a900e0a41a061
BLAKE2b-256 2f9473106289c660bb7924ef9d11422426f0560ddbedf778781e3e219bf180c6

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.4-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 971b988b7b63111317bef409c40723850a0e8cfe995c507994dc1ae916076d18
MD5 98783c16b020b93dc2c95743d4e5224e
BLAKE2b-256 078add174fae97b0d0301e08c79ed76095656cf9e313c834ab2fec560f1bfda3

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.4-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 dbf9d3770dd62c08428bd1a822e705491667ac4350a5a4f4ce86292d10b434f4
MD5 0b5e8821139f000bcce5829ac5ed905f
BLAKE2b-256 4d8427593a3f2c49e2c8704cc49472a9ea7dcb9287f0c9389701b27584a2e983

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 04c69a6ad20a0ec35bb64b2e1b98a275287d0c0bb317f2b986bbfbbbb95b09ea
MD5 e34a5e8af64dcaf38c9145bf7fdec449
BLAKE2b-256 312d870607e8ac76e14cc72d495ed88dcf4490a582c01743652efd6a98b76469

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.4-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 379dade054f1c115f8ecac09b9fadc51db36b27eab9f26604c34ff1d1791a2fb
MD5 17fa004dd82c6ce63fff1a1a3a5cea9c
BLAKE2b-256 d3a18930e6ae7bcb6951fb6e77023360cab5f0983a283eda77a13e2cba180550

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.4-cp312-none-win32.whl
Algorithm Hash digest
SHA256 debe0c4ff01a9011abf3979ae55e56abe1eee44965a1aab43b64b64684202436
MD5 cfcb3b7079ade31eca372de829406c3e
BLAKE2b-256 1150e874b836bbfbe7e1a85eff8b0fe8b4c16f184b5b0ed914dcbfe78de5e79f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 418922a8e4faa3f184c776cb2446c0329bc31c86ad8c20d872433f4711e175e7
MD5 d861d1d16247b8b74deba5fdca0c1ec9
BLAKE2b-256 8f5ab45741c82f02ae1abe6d75ab32358d53f1671b34ff01ddb2e94861b855b6

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.4-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b53622f6e840f7e1b1b399c91541dc7f45fc686447216ed88a2adf3b2ca36f83
MD5 a403d2dcb73e79f099c3ac3243c7483a
BLAKE2b-256 1f5abf3f11b16cdef0f1b32cd0540851d47eca6d7b6b0457f4f7e33eca24bc50

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.4-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e7f14afc2c02a8f9a38277d895e12181df51004c351215404fa30c0583fc677b
MD5 e148fd4bd09dcc124fe8f22e01b154da
BLAKE2b-256 09450fcfee4053fa081fe8a02dc845e185b911072d4e8ff5d194b733c472e31a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.4-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ad8a043adb822fbce2bd383001f26750dfdab157cd2f7ab1926ddde28961c22e
MD5 bce3b17c88c69629ad3545b257892995
BLAKE2b-256 d24a1f9282cebce5d3f6c61f4ad64cfc52d0f8e80dfa2d150d5cb67d06e6f73f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.4-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 49793e24a12bd04b4dbc0a2870f9b054d5b10fda6ce4c49279fca868659705c9
MD5 cd470cc037e4422448081529514d0043
BLAKE2b-256 2842a001c7050c6ea91d23d778844d06e12cbe533793dcabd95d853cc7185de3

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c84a79b8c352c262bf8c4a4f4fb36ca2c42bfb4cd425042caefe88a4980dd768
MD5 5772a3607a90a594a0e5fb9407b78264
BLAKE2b-256 64b46f1e9e84fc0d4f6ea17c203a63f70c8716af0a1947d48a051c68c9cb5f11

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.4-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 96998e6c141d4fd4f74421a0ef10b3fe8093b1e0b9d0af99c3a0c6d315680298
MD5 456289679cd3e89c4e9c421702fc74cc
BLAKE2b-256 8835bafc84bb2240cc00235425d1580e337865b0f71aaa56f42d277f5b6be54d

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.4-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 983ec2fb1c083552173877e2bc77f261c5cb860f58e814bf1e4263de0657687f
MD5 5a3312e20e8b79d99ea229530c5bf3df
BLAKE2b-256 464cbea03a0c556ce2208f2100ea804091a9784a8791bdf0a67568f4aa00b821

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.4-cp311-none-win32.whl
Algorithm Hash digest
SHA256 3de1c2bcc93dcf4c78d7485c3c74817423dc57804ee3fe6b3be5b057fe9056e7
MD5 90beff0d94b3d20a7860fd864ea2f96c
BLAKE2b-256 6208d84198b9f1cfebe581e4cddcf12cd6cca3ad82b95244e4553f7bdbaf66c1

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f82fdea457112cdb76fc6404329e4df3f9e971cbd8faa27a6ac6f7bc46c5045c
MD5 79215a895de11af89a893e3f9ebdd3d7
BLAKE2b-256 ad82e6f53392ff1518db6e6f5d759d95b6d506c485dd51477a4cf6e302564f96

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2b24fd9e563fb9c3438d623b0b260988fc3bcc8e456c78ba941a69de0643c7f3
MD5 dbbba959e0037ddb72f796660958918b
BLAKE2b-256 4a830776b1e1b39a3733a45a8246fb75f4168a70de502385e0576a614bf6b650

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1a9742e716973f388abecc2ef7de0145ad247560dc2996d114c7399a7db0772a
MD5 6ceefe8e70ea48c1464f35ab3dabc7f6
BLAKE2b-256 2a35a34d2f64244fe59204dba41fedec7536bbb1160f562fdd55e6065fc0fa41

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.4-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 28427850bfc3f5a7c03086725069ec0c38536f1566268332f33ddfe4bc2f28c3
MD5 e6cb622bb08f1a14021566d33f9a0837
BLAKE2b-256 bd711cd70b389b296fa87d5f109ffb156ffe1f6319c4924d17137259056e3664

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.4-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5de9a156622e83bd67eaaa9e44d440e5b85fa2fd48e89d6ae0eb13edff50b325
MD5 ad4546835f5280680135f11db9992d8a
BLAKE2b-256 a6d2a08ecc259d596575bbbaf352971a0e97341b9f523086ed63e3a4b262982c

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e25045d60de8b1fe021ca8e0d78d0e6b701c40909c88229e9b61e488efc2fc40
MD5 f78f4b9f4bb2295c3730b794c7daea80
BLAKE2b-256 7a0f3b9d5d7e4ee53cac648ed1abb0439485cd0955c9d1d26a230520c63a2f28

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1c889aa28f6c9e13e64f5b5786fcaab9b785a68944189cd6d027c0a5bf449ceb
MD5 8164aa7720a395efca3ae7ddf88cd94d
BLAKE2b-256 3589bbf99420d043cc8089699621144eb8e9f7a225cc78c1242034c2048a51f3

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.4-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e238f219a11dea49b5e887b7aa4211aec03e49460ace092581adb916ce464b72
MD5 b3e1dd94fe3ed2961cae5db6d003fba3
BLAKE2b-256 c788ef7b56fa6247986dc3a21cf232ff55540c9df46956d42bafd75f56f034ec

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.4-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 74a3f2590cf5d2a2aa28922b550077d938d9be5d3fdfb990c8aec9f393fba862
MD5 134782c32a4f72f9ed31bfd78207bfca
BLAKE2b-256 4c9a7f3a27238725a1ae8dd74da2907821483253e48e95401cb6cfd9c4cf5d10

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.4-cp310-none-win32.whl
Algorithm Hash digest
SHA256 212cb7c8ad76d9fc73b161e4c7afeee3a9b4092c5340886dc3f926d298a4d06a
MD5 2590f3b5dfa666e600db2c4d83c74fde
BLAKE2b-256 0d1a1113930bc9be5b8e64c4a76cd1a63b3db87e220ad092bfc8d52eca0ce564

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e61a7ee7acb444fd59c25a1157b826cc9774c1c3856975eff05da8e98d3f0409
MD5 a0c6e91727d8521e90403d901ea4fbf3
BLAKE2b-256 6681e9a7acc2914df5786816b979c4fc4cbcabfaf9dacaf3681cfbee3f67ef13

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 dc0f288b0535eb740d0aeb2754025a1bb312f77fe7ea7f2d9416c7840dd7247c
MD5 7421083a73f995f6d7ad3e8c53012d6f
BLAKE2b-256 4d68371654aef451d9c4757e7cd61981bff379a3815a93750413be346f313c7b

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9b9391b2520d3dd950c1b7071a3c58d4824cec183ca2c209f374f8db571bdeb4
MD5 6e04ad2cf8678817acc621af4f9ca28c
BLAKE2b-256 9126c4f629351eeafc6b3d21fa24df4e6fa552500acd6622222dcc7ba0a2e9dc

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.4-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a0558debeff6d007c1fcce806bd3db8173f0c435812321020edf5eb0e4c31445
MD5 ef239574afd7e8512b5919d1477718bb
BLAKE2b-256 6fb5bf961232d8e13363daa42d392bddea187bd59789368a949029d565e1d382

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.4-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e3ff18b24e3f85dce7cc528888b14a570458a2a446c4064adc1c04b4f52b57b6
MD5 3bce276188630a862df82e17d2deee84
BLAKE2b-256 b06738d3369cc97ad7aff11dccde22fe3cba91140e9bf826fde8f726bcc30d02

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 84c32174022f8246f6021a2aa249d1db067f31bfdbbce3e06aed0cf706c0f158
MD5 2cf3d5d4b56718467e5fce12d4dd010e
BLAKE2b-256 a1975d1041fccef63b7c54d363d4aa728de2c588ec4b7fce22cf0f4880ffcf6e

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.4-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 efbc4aef24a27fd6d56b7065b85f393eb8179cf487111f8f1a82f218cb467c08
MD5 b0768b212c55e758caaca8a719b9b057
BLAKE2b-256 b9eb6d59dee6ed04eaacd548504032049c3641d85750e59878f287dd027f3383

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.4-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 49011ae5f62e4f0ab0251a7a88e5e0e003b8110302bbd1ebff5bc074283eca1c
MD5 061bbe1a0c6fba58db214f10588621f0
BLAKE2b-256 92417b34ca393a53bd91b76a480f16ade10aa284b3e230b30d0eadaf50c2194d

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.4-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 3b08bb92d41ad09e39ac80e0318677e20e283db5319109892b038b59be525b7a
MD5 27bb23ffd41321600fc5401452f07c48
BLAKE2b-256 f038599f0dccced8917e351b1eb0b0e4d3ee80ce7e9c055eb5105b6d43ec0d26

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.4-cp39-none-win32.whl
Algorithm Hash digest
SHA256 53d5cfefa7556b1739b13c435a2db75adc4e6a757888324497a7ca7adb97307f
MD5 8f359bae0b704b1cdf3693d44fce6ca2
BLAKE2b-256 b28789b80c49999b69cf9c0422b0f981afb187f6212c79041d25fde9f9c91c2f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ff73f89ef7f5b386cd7389e2772999e6d8f6cec141a275d03f3585bfeebf11aa
MD5 ebfdacc3062b79706751f8d098ecf6e6
BLAKE2b-256 a83aa4d27cf4df72ee57b7c8832cd5d5a10e5d22ec4c007309a43b1509f1075f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.4-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 661df0106a0a3f74a9afc7b1ee88493633c74edd61613c007598a4d2245ecc51
MD5 34a6a83fb10085e673f392aff27e45e9
BLAKE2b-256 88906935fb8277e4c3c08e876ae55768737535e1b99d1f42bee22f7fd797f632

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.4-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5c3d82e59c20828d72f72b08d759e0e603d45df3186ad772acca3bf79552ad96
MD5 e53a63a5b67f3cacaff909620de43efc
BLAKE2b-256 b5dddfa89900a74c8bebc257795ac5f8174de5b0255d46e5d0b2b15dd5145cb9

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.4-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8b9f8819afda1b777cf4f9f9e0ad817f3df68b9e2803a57c1797db970249a4c2
MD5 d4472e67f7faab39e14b96c45bad9b04
BLAKE2b-256 8125f6d3bf3dfb0b9c8623bdd207d4db8789dc186c12ecbf40d7491a617eaa25

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.4-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a8b95ce89fdf65c5738e3b08655691577c231e1d2f6967ca6c816250391b8eda
MD5 b7c03f2a43f4bcad2a196d5273820bd8
BLAKE2b-256 f749a06bb90ee88874195f306e5b1254de07ff1ccb492ef81689aa39c0ae4f9f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 54ffb8e8c52357d05416dcb7589d6646d7a42c732997ff432bc56d7d9d507e7b
MD5 b38eac810db4d0298e30a484e78b9a53
BLAKE2b-256 35f86b5df38539ffe8341278e95c4e919f109efd21448e9e6c6160f92477ad8e

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.4-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 e155d238535e1bd70e662664aabedf28c0db617914f62e0dc87461268a5c9c0b
MD5 8d311adae43d39a4d82b2b1f9b7d8b1f
BLAKE2b-256 35ee046d6c3f59363f934fff2c10852ff22b0486540601ec2ca52b12701d8dc3

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.4-cp38-none-win32.whl
Algorithm Hash digest
SHA256 8203682fe36ca9180891e028e02d2ff6f9284dc985680458cd3e80129c965c47
MD5 8e5afcddffc0d272d7497b7853d899bc
BLAKE2b-256 839cff2a8968c61ad27eb66dae690fd1f22680726c46c940b8cc1685deb8ea71

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 892faf2e04ce145969734332aaf44c0104730c8775add8dbf81d2653e2a52905
MD5 0220bdf2152e79172cbc26760743daaa
BLAKE2b-256 70599238642d86de8eb27b8400af83ace6e035e69d6683e14f7259546e109b55

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.4-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d561bcfd3a4b4648593a003444cf166f08b2950371a388fecb3669801b5f876c
MD5 5fcaa502d09c08243f6063e19db0b37f
BLAKE2b-256 41b57daaf4557fa253fb1e0a1f0dd4522a3561c27bca037609df2930bc91fe4a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.4-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6a7318dd876ac29450950ff24ab469165af24cec0cd64222d0317777b01c45a6
MD5 278fc71a96d9d2ac0631577e4836a655
BLAKE2b-256 e4603c7ea6d673ff1d7863a0f295955921f4b1dbbbc4d34291d05d741d938e69

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.4-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7ec8e19ae549783673db37f33583e965a70470178625d509d047f85edfc9b804
MD5 c0c60d282e41cff137c6b9ba73d1e48d
BLAKE2b-256 5bd5e7411d8c9a91641450fca43d3dd870b9be1fc4deddd4c5bd41e803d88c1c

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.4-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 62c8cfc960c83c54eabf712aa4a372c7ba4e37ab0b43d89e403b65055d5a864c
MD5 3a58ab15937890736930c77067fc99fe
BLAKE2b-256 65fdde3f924f20cea5d70f6ff357eec278ff08a4e3d72784d54f73eeb1112885

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e7f70acbd3e4d2f8ae2cb122c14cd8f180d5bf274ec503b3158e5bd67a8e0a3b
MD5 eaacbe720a88de4fdd9c1bc8ebdb755e
BLAKE2b-256 e987b6b92a6012f547d60c8733dbc310b37e8a583b7f78065fc148bc49aafadb

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