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

Uploaded Source

Built Distributions

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

Uploaded CPython 3.12 Windows x86-64

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

Uploaded CPython 3.12 Windows x86

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

Uploaded CPython 3.12 macOS 11.0+ ARM64

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

Uploaded CPython 3.12 macOS 10.12+ x86-64

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

Uploaded CPython 3.11 Windows x86-64

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

Uploaded CPython 3.11 Windows x86

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

Uploaded CPython 3.11 macOS 11.0+ ARM64

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

Uploaded CPython 3.10 Windows x86-64

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

Uploaded CPython 3.10 Windows x86

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

Uploaded CPython 3.10 macOS 11.0+ ARM64

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

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 Windows x86

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

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

polars_business-0.3.9-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.9-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.9-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.9-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.9-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.9-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.9.tar.gz.

File metadata

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

File hashes

Hashes for polars_business-0.3.9.tar.gz
Algorithm Hash digest
SHA256 b064e4fa146b155f92c10cff0b1d705f97a2985cddc45cd506fe9b47713ad893
MD5 fb3a82b4614d3bc59a78e7dbfaad4b99
BLAKE2b-256 681876aa9fe031d864bd7f41049c548fbcbd9b873e1950ed9e29964dc8e8a558

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.9-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5a9f145d4fe69fdb276b63daecd95aab31d27f17bd96fe0c2b602bdb6aa6909e
MD5 32ec9f4da586377240267533a0f5f7dd
BLAKE2b-256 40c7109d6a55f15e42c32e99ef1a7c9b714541fd1fc8a52e141f20af66a4cb36

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.9-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 57e023469de89a0ef68d1a2aefb811d9e5cedd38f5fd90015e8ecbcaf1fdada7
MD5 2ad7f1f4c53a6393e14c2019ec02ec3e
BLAKE2b-256 0d6761122f0af52615ac74c511bc828eaa24214a243b4673f07ff27b8fb20e33

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.9-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 775829558d3f609eb304b2c17cf303f51fc7a4a6c6a1d4a71909367c5796d201
MD5 d01bfae1de99f9ece22f5d84822cb2ac
BLAKE2b-256 557ff6f6d09e77090817a623d2979c04218fa2eb9139c1d36df607161c33eb94

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.9-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 74200137397cef45541b82b8aa138547dd791a4735752ab849c75b10dc3cc7e1
MD5 a7c30cf213ee19113b09b4015775a543
BLAKE2b-256 6c287c47d2a877e42924931943de9b30ca2999e5c47d04d3d35401b0dd26943c

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.9-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2195c793858271f67c7d2b0580304fc84429ae6e3eff3189471a907ed086c739
MD5 d3783c712b9b7d403b9174108392f048
BLAKE2b-256 fe9d1817005af04c2288956d55ac0343ee1385df7e8e8446f4ce0cae5035a290

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.9-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a61bee3fc24be8ccad36bf3bf981a122b47ba92d84661b087e71173500b1dfae
MD5 3ff97ba42675e087459255f219ecaf61
BLAKE2b-256 15dc8aebdab8fe6c49164484b603b2fe8ca443a0ec42ca5c0474b6cecbdef865

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.9-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8886c624c2a45e230a299f3dbd725a1c649d123204f5a683de78d69046191af2
MD5 48ea34f80971ab655ea8b877d0e169f0
BLAKE2b-256 2e4d82f2e230554f739f69602d043ab6e662ee4eff0d87e5d02b2349e5031e9d

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.9-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c9b4754fc85e0ada7bdd6986b910660bd8ae5e9ab956d87d4113c1446197f21b
MD5 1b148cf5736451517486a52e628de5f7
BLAKE2b-256 e7beb059c4f181aabb2674872dd55bb59c1ec6f5a12df70e6a46a61003131f1f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.9-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ff3c5dc39e46c5565c7b722192327de756ef7e344d4e83cd660c44f8f066fd99
MD5 dffacf16b9e32418f2cc6545d962b6c2
BLAKE2b-256 662bd1f6e8babc0c74cd13dc48df892599aaac6005022a3ac7e8b0f764f518d8

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.9-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 14ec60aabec92a4349df330a95ef69306fd136891814b45d33373f3d7c811ab4
MD5 d777e881c6dbd8c2399958f7075ea2eb
BLAKE2b-256 a9c8b57e5b92646671f2759bad8a4afe15334aabe18d6aa614e44efbe545578c

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.9-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f13b40829bded0dfe0ce37af9201b556d46385aafd82acc6245979890cd55845
MD5 a97a0e662e9b55b4bec4c4a4e69e0465
BLAKE2b-256 b8f61961bd16c51bf1e45002df4b05c73cf9ef448a566636b99ae4789b1220b9

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.9-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 64a5ba7dd1dc6ed1f8dd71eb58470d890ae2011312e3c8d0dc7aa6379a8e56c6
MD5 560692e9317823ce6d2e9afc575314aa
BLAKE2b-256 0dc0eadc538e3735c31b2cd0d9023540a54c5f5373c190c2f9b0f8c336c520e6

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.9-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 44c4535414cb5c2bc3d1d2f1a48f50b7f8bf6c7d7090dfbc923960e6e52c7222
MD5 8563e8e41631364332311b1eedb68010
BLAKE2b-256 cbb10af3847647ca5ef54eee5773e502e5d6cc94b48b2591873176fd8454c0e2

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.9-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ed56d100fdb949c8a294fce6228ff28aeede78a7582695da07c22577ceb82765
MD5 a3283fde510a44ff90560bb4bf39735c
BLAKE2b-256 36d8eebd8d6d9d591efaf15552bcb6b956ea18b1c7230e771673cffa910e8a03

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.9-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1b64ca1b944372fb3bec046ca1c95e29ee4a760648667964f89393e68010ea92
MD5 da831b330064f5aa06092326dc397b4e
BLAKE2b-256 f308cc9e66ae541d6ba9c19480528de182b9d951904815139c8a82a5e3f5ae86

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.9-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6c67a56486c3d7a0027a9b206fdaa0f76b100914943ab31a195d7c1371d059a6
MD5 14409a741de82ed3bd53f52b5a565508
BLAKE2b-256 1bd7e6b35bb0a5d64f626fc787bf0ee5c5ef63378328ba504a797f72428684e2

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.9-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 88dd8675b9762d3977a1f46316df7ae9a0c2cbbd2b253f882119b76290326d4c
MD5 89ba6ab0b65c5ced63e61b00e66feb58
BLAKE2b-256 136c3f6ebc17a8d92ecf6d9d5c677a113ff55222dfb9ec5a169ca5028a09a4f4

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.9-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 390c5ad7258310d773b52083ceaf194028452f23e205cdf197f71978df336f7e
MD5 1c7ddff6c5a00b4c9e5f6737b9497930
BLAKE2b-256 91387c3b87953cbf0143ae08afbe436ad1df4189a9493e71f2d0ad3f85f709ba

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.9-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c06219c72f0caba12bf735502d836ce42e32346b9280bbeca9bf51693ae75115
MD5 e891f3d0266751e08ddb8bacb4a0f5ee
BLAKE2b-256 2278a56565497a38e0c94cbf99a2f2aa78d5550085f7949d86ec6e5544d55bc7

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.9-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 fae1027e3ec287172417cadb154b92f12d689bb4900e1d8a23ad7712967ad7ba
MD5 0acf087d5afac07a6cf2f40a041e2e9f
BLAKE2b-256 4c26f728de881f84205a0f08e45ee5e2eb62c97bc5f0ae48fb9f6521369f7694

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.9-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 15df4a55331043672eb0998861a3032a8a0a8c4b15f9a8eeba1c61af4cd48adf
MD5 c52d179717a1c26ae395cfc1e6efb244
BLAKE2b-256 38c875dad63dbd0e8105d2304c0ebe26f1702d49c3d38027da45df5032d26e32

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.9-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bbede3ef1dc6886fdadd23ca89fdef484b3a603c9124545e863fd705898a12aa
MD5 0a24e575e8ca273cfcd84af0bf66227a
BLAKE2b-256 0c4cb483e4ce2e63123cff25b79d9341032f3e17932e78366c2c6305bcbb0dbd

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.9-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 840e5c6f0c1906d471d58bfef876b88e515941883e023f59302ca85e311c3aa8
MD5 cafb96ebea2cb9f62ff389866bf88bb6
BLAKE2b-256 139c618b4652edb75909fe6fe2fa71a970f70b301e2cf4cacc399dbd71ac759a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.9-cp312-none-win32.whl
Algorithm Hash digest
SHA256 f9e09a1b9f18b3717b072bcdffc1e15942078f14d7534aa73df2ff19c8986cf4
MD5 f631ac645b7a4c66a8700375c26d08eb
BLAKE2b-256 e83e7fe91ad4cbf3a707bc6cd15c2dc75fd539711411bc88ab77d843d3bab53d

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.9-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1d8792d80e8d93e6f4134db7a2417b28528a6f570b9498b9d0af1ccca6bca509
MD5 bdc64dc4d00384baab2337cb161c8965
BLAKE2b-256 b6fd21ee7a7bed00748f96e742367d6fbfdb4db2bcef82cb59e6f077f1c3ba93

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.9-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 fbfe5601e3584ad7f3822c30a97e2fecc8be3b026febc27afdab03bcc2c543db
MD5 d0a0712f44c6be2f2d91b6c2056e6d6f
BLAKE2b-256 36c8278da8e178071d6adbbe3fe52994c518d925c98c861d53db8e52761b68f7

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.9-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 98507a202e0d433c6b03fb8ba2c45415612c3bea4d4d6a700da378a5d9053ae4
MD5 3ebff27ea6ac34bd17de1ce22ab49e2b
BLAKE2b-256 34645eed4b614064dc9855509a704cfdc83a42bda235481ab4881a357b4d34c0

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.9-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d4e7867af8de47177485f353d2f3dd538a23aaafa44b226e747822d590ad7428
MD5 d744eb4f47ede56993de5db16eef577c
BLAKE2b-256 a3f31b705b6e3ec444ffa63559684847f5bf017ecca40345f899cafd43f4309e

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.9-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8c3baf99b305b4376b95ac4d4f1b7eaa4859df1196b86f37eda83e65d5c893e8
MD5 266ff34072ec86a8025fadf4fa437d52
BLAKE2b-256 c5499be6ff2f3160586c40f17fac71330d9e2154ce75ef1a634133f8b2b1eb2b

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.9-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 792fee6f1b8e915d8bdcfe13419571504db246ab671bce4898fd68beda93b4cb
MD5 6d7be5e20a20b074a43c24977bb7f96b
BLAKE2b-256 75b0f85da056f111cc6c1049dee0edc8dd4d9d85a146fe33a788cec9edb85661

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.9-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0b3a36ab98b2c0c10ee73c838dfbf70dc58b8496ddb61123bd71d8fdcdcc79e0
MD5 abbc97b66215db0ea40cc961848606f4
BLAKE2b-256 6f2d4ef35449bdcf07242a84230a1b0d8b1534c33c718ba14875ee872aa54717

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.9-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d18d6e6abd4035078af48643727e8b6408f70d773819c8d8e6e1fc255f9b9fbf
MD5 7d209f462237f3e30785e70c2fe4dc35
BLAKE2b-256 3f0453f2ea209705acc7aa6e875d77db1f8c9e700b4af9ad8a32d4ee82eb57be

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.9-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 49d27664d2023e64dec18df1a4c3ebc964bdd1bbdb1d968b12d0aabd3e182d31
MD5 b9a89d2250fbe37f19e60ec0af966ce8
BLAKE2b-256 ce21e0632e3ebbab35cf40f31c79ba997a2c2b5d6926405f2e3637413a0fce7d

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.9-cp311-none-win32.whl
Algorithm Hash digest
SHA256 4f013715ecb450522e477c9ee2a4a6bface7a8c64ff5ba2960a738dd83dfdb1f
MD5 1ca5645f3dfa84c28cb2f0ceb32a601a
BLAKE2b-256 1d9f3d5280dff954971f40b38b3cd6bfe0a11cb7a13821a5bd338578dcf66a73

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.9-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ec7391430eba4e06a62f4a54aae9d3bc2c57c66dbcb3dfc97c10f97a8e3bf1fc
MD5 1d17a573489e72fe20afa9364aa173b9
BLAKE2b-256 ff49390dceda78e78fa9d6aaa89e1133bfd17e682db21e5b4360bb8aa5520fab

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.9-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 82452a9802dac7f6616f13b0465bacf60c344204fe42513919bcb0639f1f36d0
MD5 5146261609d61e171d4ac60928789eab
BLAKE2b-256 298f2d2b7eb4b0f660a38eb806273eb1c6300677ce4ed4ffc4b632be13991f3d

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.9-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e00a5af1c4eebde4f0d5a928a02eaac9980dae9a5bfe7377545581973f3da471
MD5 41046776eb2408976b4bd14de48778dc
BLAKE2b-256 b553a61e6e448563587d9ac57b4de2f57987f9f0633909795e515520fd44a99f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.9-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 93eeb6de83958975e7df41acc8b44ae8e5368ac2d31c4a51d781d169c5b46088
MD5 2caa10c783266f13b78cfe3805a42146
BLAKE2b-256 bd763b208e59b3bdc86199a41eae461de4c8f9a670da188973a985d978e2903f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.9-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0bcefa8ba32c972e60d88d0016af7d1b0a578873e1d6a6dc777927bbba67b2b4
MD5 331a7da114bf1f3f075a883581b68d89
BLAKE2b-256 97d7d99c05de79d20b04cf3304282c135395a67d8d2518fc9959e7c8146561d9

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.9-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 365a95e1d91ebfceca714c369e193c59354f8f1e3da332e256aaa67f9bd672e6
MD5 601c12c75176ddcfeda27f0d17f3f91b
BLAKE2b-256 7700e016aaa0aafbd1b4778b1b2eff88c182ed9c63ca79695895e0d15d2cdf1f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.9-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6e5b573f919f9b4b18efe6f9ff4b8c5d796e55e8f02964e1be82f38c835f8a0a
MD5 a6aefe3e6b222b5b9c4a414015501fbe
BLAKE2b-256 7916b2138c75852d29c9aa2a70e9d2a99914435ecf3d1b6bb73e57bf81a24a3d

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.9-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 27ff1812352ff469fe64c291bb9ee5ade83fa2980583c6f47ac09adfaa8073a5
MD5 b91ddfd1447a0b250036738c0a7c12c7
BLAKE2b-256 ac60684a5f8d8da614a4d911420912823ab4705f48d92c85519f78461df4c0e6

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.9-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 45a3b347525d7fb8e1b293cad7c6e538ebde706c482ee629df2230e275d17b6b
MD5 ebd3ad33c3c6c3f9584f957ad2b454df
BLAKE2b-256 9eba16b3a5f25b6d97e4dea6d75984965c563309c2a3f722a4a9cc5878855bc1

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.9-cp310-none-win32.whl
Algorithm Hash digest
SHA256 5bd02a03a2b435b07968096971d07f1d5073686f9e8198d5a625960b9210bb28
MD5 655d123c88d7d21f3f81f9c96c50ae22
BLAKE2b-256 37dda592de0e441fd15d673fd964c57b55321b3235cc16c5e72d01e23d0c3da0

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.9-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 81c5c9032b38d0c7e89ba46f306868d949383cd29bf543ba9fa0228bf8de7442
MD5 7fa375a6a44fcb8bd062b39a7c68f009
BLAKE2b-256 417c4d73d67c67e3eec9d353726a08748d5bb9fdf09918b17eb6d8a71ec119e0

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.9-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e1ac3dbb82ba7efc7883d5c0d678f1bc7056096701e95703b43e7725d63f421f
MD5 34840c4f3ba443056f1f1107a50f8c69
BLAKE2b-256 dc3af02466d70839fa108fb4fcbaafdbf2142a0d4e90ee9c96305fc3041d337c

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.9-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 44e6001752d057c81f5da160866843fdf19d4ed5dccf026ecde5a4643d7f1da2
MD5 9a0fae47f6f84d688a55c97542c9a350
BLAKE2b-256 5f8d2e9662bad488ede7fd52adca6ba306d194ccc64eb1a2e75786111750535c

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.9-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 776931808626543bcb40bad6953c1da12cded689c6aa0e37630f49953a721ac9
MD5 c141ebca1ce5234d1cb0c57ffd2c3fee
BLAKE2b-256 f9e64a93403b8d1d3a0a5da1e94772102355757594942b8f686c79316c516a21

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.9-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6d6c5c29a0e154b34e3fd3bbb41be5b209f09bdde190e02378e95437b413ec61
MD5 86103cfd045de5c76924d14287f63dc0
BLAKE2b-256 1ad612087c9a972d5ba778ee0513f050b708d886a9f7b434b1a794f33c8ce784

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.9-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fe98cc7c3118ba35d4a82b0b9686e6ecad6b60e8ee96d46baaf989e279a48489
MD5 d30ce06c5df590742c3d0b09ba9a4a12
BLAKE2b-256 2ab878e6f12de1b0d43c4b3afa665dd562d75c60284711d42a8df63e3ab81aa6

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.9-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0b4153edb2f85e2aad0be67a8941f733009c1eb8179f8fda2ca0e9c4ec242e58
MD5 e31a09ae53691bc9c47c422089e217fa
BLAKE2b-256 605a69d4feb2b6919b4a5d9b4ed3dc3fef4b125e3cf4b7f21882a69c54c03c27

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.9-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 455b4af0e88f31f20756cc60c0b8163e55654544198a18454a59b9c1831eb8da
MD5 865f772001c1b29dd5e1cd77069afc92
BLAKE2b-256 f084f91f52137963b6d19f2f1cb69e52e2e6a95289240fc720c7485598acb512

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.9-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 c7e569b0f7879e705d361ec725b0f905f51bd1fa3f39a2a7f39157554f124d10
MD5 4aba5e540fad95559370e969425d206d
BLAKE2b-256 e8bb2811cb754a40247d9e905fdec38d480f151118d85d562cb4c8421d8d077b

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.9-cp39-none-win32.whl
Algorithm Hash digest
SHA256 c39a35caf906a7e5e5b7a61d8281e9fa2b0870c22cccfe134c52a6b572e9266c
MD5 d0efadd9ad791c10d8718f0fdd30ee77
BLAKE2b-256 a2033a7caa1e3870062521f0366cd205706fe12c988a9f63d4269bc9da090d73

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.9-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 29e9813cb61f3ca295bf96a22c12daac839e06da4e8ce23f31bce4b1a15bf1a5
MD5 5db28d3aad89b59a7ab15dbe7158da60
BLAKE2b-256 c63b4ba2f0abd636bbb4d1fcac9e206af83bd9853c29534dc5a028f1ef016ec6

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.9-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f91d3de9c96e746c7666a02b7a2b6769f37a457e5b143109318dbf764f7830fe
MD5 a8bc676d402269687e3f67945d293064
BLAKE2b-256 b2267fa967f8488e8619046133333d3ebf3e1be1b4b778409f50fb5c3ed006ce

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.9-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 11ffe9fa479ca40df5f1e283496186725835651ecde0017c314d4bb0d6bb0cfa
MD5 91c58fc27a65d225e4d7341d4745d863
BLAKE2b-256 a29cb4ef56d226be8311ad0bd1dffae119ce2c1f87d855876b10951e304afc34

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.9-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d89ee80af217ac6c4d9b6ac76e8596997d5f535d1a3b4d1e7282bd86d604aea3
MD5 9285538907f0f987380603ecc74c5986
BLAKE2b-256 85651ea854c5402bae9e44c4750aaa793a4415ee5b72a278724262c20f6fab8f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.9-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 15eedc059a502ad7d240e208c4672ae40c64967c04ce8466749fa6e6e2eec5bf
MD5 6dcc61e500cc87aa79080c00fa5bb3e5
BLAKE2b-256 e6ae1382873b94ad78f6bad18d72f4fe4a239e4854d73c7f311a63ee4a208848

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.9-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c595e96e3f6fe175d948823f42e0a5e71b3c99baf219eb4b9d4ce32cd5a4ca90
MD5 ab4f71d2ce0f97fd555e1a3f6cb8bfbd
BLAKE2b-256 dd9b100e64f791a1bb99b86ea9d91ac13343c87cc32ba0ba55e6249c68ba5ea0

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.9-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 6de4829ee969983f961a4a0a4bee0686eafea6b61bb617943d9b371b5b38c418
MD5 96844874f7161be9cf536ec032c5b7a6
BLAKE2b-256 eca637dd36929c6f8e84abfb144301a83ff43d8942c24662a052c544a62a8940

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.9-cp38-none-win32.whl
Algorithm Hash digest
SHA256 ab829e794392897441e7f2059ddffa491e592a202af69fb40e38e4a9b4c13170
MD5 8722808581c701e539ddb69a4284de62
BLAKE2b-256 f550f22acd9526b30f964e38324e1cde4dad4d5315673935582facd3567f4f5f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.9-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2996f38e03f66eb1df664e6db90fe4aeaf92130d013003918962af36ef868ede
MD5 2fdd8f17ce07fa973fcdd9a0e7b7314a
BLAKE2b-256 5189198246da39946f04e0291d63e75a1802742b97078f384a0a61f7a26aa376

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.9-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 099f54f8760a60fb3b4cf50543242a820e1b005be28c90843db11664581a3936
MD5 a59246b7feadc1d64a21152ae421e688
BLAKE2b-256 6fefca6199ead7b9922b20be5cd7f85ea738a506dcf95a02d44137c2d1e15bc5

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.9-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6fa68afefe696ffb667ba0fe48dd123b27039e912355c9fb7a8b88584fac0fba
MD5 288da38a6e8b0b6891c56d83d877803b
BLAKE2b-256 a8d03aa2df82a77d42f6ac42593343d1534df57ff9387665918a314521ebf487

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.9-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 22d09eb412c7b570c978a6ff9e8dfa239a1d854c358aa652c128f20cb3786dc9
MD5 fd18c21c03b2dd1f493f51662e836646
BLAKE2b-256 27b9c44232f81bffd5ca097d52f64d0e2a81f74232cd0678d7baf23869c0e884

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.9-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 54e661d75becf9f715c1ab3636c7f63d844ad7c333cf35cb9a3769e44b6e7081
MD5 35190f5b960189df0bfd8a553844ec58
BLAKE2b-256 3492d295dc4e090ff6db5203cebfc8dfa866f4eb2d132fe1d839773eb44f585a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.9-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a513e5c5ffcd1e51a1c5602f0cfb2d2b4a381fd6689f3735fba672a265ef5bac
MD5 d7430dfb150037f66dcc3af2b1cb4aea
BLAKE2b-256 74a4963257f812a9ccdb4f0e0e352cb2b6f8404f0e04a441f663c9bfa95e7dc4

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