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

Uploaded Source

Built Distributions

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

Uploaded PyPy manylinux: glibc 2.17+ i686

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

Uploaded PyPy manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.13 manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.12 Windows x86-64

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

Uploaded CPython 3.12 Windows x86

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

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.12 manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.12 macOS 11.0+ ARM64

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

Uploaded CPython 3.11 Windows x86-64

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

Uploaded CPython 3.11 Windows x86

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

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.11 macOS 11.0+ ARM64

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

Uploaded CPython 3.10 Windows x86-64

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

Uploaded CPython 3.10 Windows x86

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

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.10 macOS 11.0+ ARM64

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

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 Windows x86

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

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

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

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686

polars_business-0.3.18-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.18-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.18.tar.gz.

File metadata

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

File hashes

Hashes for polars_business-0.3.18.tar.gz
Algorithm Hash digest
SHA256 1a23831849183cfac47a80ce01d0455af6afd4388a8eb5c511da207fb3aaf79d
MD5 a7ed566ff41784a1ac671cddff83008a
BLAKE2b-256 fa65908ff2aa8490b1d42c417e1c937fd1014656b8c90614b7154b688d2ca92c

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.18-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d57f19786cd6c7fe87a7e3447f9421ca23786378fe998bb007f4789757be2d12
MD5 7ae37b32c2400e23d4623e483af0b761
BLAKE2b-256 0a73c01ae8485d70942d5d3b908bc30fffd5fbb5cbdf6f48780c7f08d5ee1750

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.18-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7660a3b749275da8cb4a06f831e31fb504a30ec817e87d69575a07d87c3019a4
MD5 71f72526add2f11c6c51243161634d07
BLAKE2b-256 4f690c1b20c945926fb27c38a5af67a4a65cfc5c5f8b5e5f24e009f7fb32e567

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.18-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 83cda2a29493ba4801bb66c3b13e08cd9d2639536c6562c645dfbc4a52a7744c
MD5 359c60d9c02ecedd78b6b2eb9fb6112a
BLAKE2b-256 5eeb1e425989df8890b0066b11e5427c25d640292ff610e7b1b8b2ba616ab928

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.18-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c7264963600caeb82f66051a8589e44ce7124ce9ac9712b8027e61c73be1499a
MD5 574ab92ca96488e0300c21914fc020f0
BLAKE2b-256 4eda42c65f19eac4388341921d6437006b2767e08af155ad553d5ebe8582607c

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.18-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 065735fc2b9defe8fd94c0b00b2b3015b78ee50193713bc6ef621a68836273f3
MD5 e11ca8967c4fbc4b70c7f545c3625a65
BLAKE2b-256 2974f70b48618d7b8db57f30f6ac73df14e3a4d0b220fe28b5abff57057da4e0

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.18-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8a7414f5dd8938caff7a144e951253e9fe9b3a865fd9f08bb7bbbdd811a651d6
MD5 784050abf47ce204288aa3bd0d27835c
BLAKE2b-256 f923e485250c6c93f5419d5067edd1e5bf0bdee25c05da2802c79005bdb746a2

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.18-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0c5081bf6fc887cb38c60655216656bcf7b95cc88f98b29a4f42d1a798765300
MD5 352eded33b4fe12ece5293e739fe671c
BLAKE2b-256 34aa56e42d784d51667e94b5a4f3b526eb024c2f2f2d1839b7022590870bea41

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.18-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a1cb322d9bcca12cf0f733862f2256e0d3db521446f01e04e96d048c6bdb96b2
MD5 eaedc586ad47bd206b84b11d2208bb9b
BLAKE2b-256 e98c13815153c1f44eac6136b3241867882e78f84074d7f44f714fee32dc898b

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.18-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2eb60b25891f3b4d4a71190d64bf8b2b73a0806276dd8bcc0a92768dd4646bfd
MD5 16269b06405635252e32f97faa83c824
BLAKE2b-256 02d5ff852967c68fcdad4ded012569f3ed3c8b125c451a9b9b9a8f4c82988b91

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.18-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2166aa95471e9c9303e21eec905863011b5a2bbeef0b0fa25d13ca0058717da5
MD5 21cd0232861c31fc5624ffcdcd0b9a9c
BLAKE2b-256 a03decbc80b0c6981346315877f15c460668aa6cd50558587c1d0f2e3908ff94

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.18-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 39f0002fc0c3a4d37d6ad4a820513e594e135c28a25d63c15111791dea7de239
MD5 900788a2cd5361011072a6e78a9b1859
BLAKE2b-256 5c28f214ab9e1e2fd07977ccb150d01275375322fd68dca0eb60eb25c91a4cd3

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.18-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 62bc9a81b69fcd409c09655a87faa734204a94d04c12392fb1c14b8d5bb96d54
MD5 65cfdda9df73c48c18dee3abccaaba60
BLAKE2b-256 0cab1a99c5db969d6caf074442194afaff15927181233397d2e18b602b77134f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.18-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ed028bac903a9a0570d68e214396d29d476247e9076702df71a11c87d7a92ef2
MD5 b5e6e5b48c07085791a0d03fedec363e
BLAKE2b-256 1552369b7cac2c8822145a9cd489e89b880ea0c08db5f5a3e2736a1fe4cf55fd

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.18-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5cab4fdeb4fc7c7dc61b71ed78fb09a0433e0ff091fb521166b58e6b10302f53
MD5 9e564503a9222a2b651c3f6e650916ab
BLAKE2b-256 c2f6420fef94da12406197e5956fb3827ee145e5706a7022541b20bf5050eaa1

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.18-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3658a837ae5ea2d2843a921dc9a212cff17993d19d651c428ce6ee387a707d5b
MD5 30379033f143288bffb642e7645abd79
BLAKE2b-256 f7c941233de7c3a92f4286db7f14dd359e1b5ccd852bab21dac199b9c577d32c

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.18-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 245e6c2327588355ff9a1ecf8e0df02dfd56408b23505060e2633e59ca723f32
MD5 7bb09507e8135a51233bc8a53ea74a3a
BLAKE2b-256 1a8e24de4c6800b2e5b3df7364e66f4db4376003bd5f56cdc72ffc264f7c850d

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.18-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9167c0081c9d06595a404fb9683d39bced4f4d6218b161385e3b2680110dafcb
MD5 d7a43cfe3bc83dd93ec985a97023946b
BLAKE2b-256 a4f71da6baebeef0abd8b4979c078668fdae4782243ca3dcf1839d6edd2127e0

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.18-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e6c7bdc9deeeb24b5b00bfb5d9ee428dc32681b0fd26731f8b06400fb4c3a431
MD5 313422c27181656a6d88cc68e5a40596
BLAKE2b-256 ccbf12af5be664d28ebbc1b2ca8e25ed80f9b5678de654c54880d1067b82347e

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.18-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0f848587aab824d67462ee5ba3982c86ad3979e6a3c915ba0ca766e9e8d192bd
MD5 d6cb1d46d82679e9b8df1fec3a07edd4
BLAKE2b-256 1ef36acfae71fdee149b38b73e08bcd75676ebc7d7fcf8d319d6c9f10879e17e

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.18-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f0a903ad6a4a55341fec98826397abdf61afdb8c8c1483f276b4792e50b425cd
MD5 be5011c74a4a8c39aca6c57f2dc5fde5
BLAKE2b-256 87e0f5be84f974aa6b335f7223d13818935f268b29a8476e1b38660ddb794538

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.18-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 261e795e9d1cb94b5fdbff3aea31ea23de7eaf95f6a276baa7f9d7449a794426
MD5 a11265dc32aa89a7638ad952f9a81596
BLAKE2b-256 ca49a648dbe2d1972197c0e4500174a5549122f3f7fc25e7291bb84fdedefbac

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.18-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e64b86a410b4209034f985cefe2e62b4bca4e50b5cda4a06343a4a42c2cc35ba
MD5 b49d63b24092ea81c03fb03f102e8176
BLAKE2b-256 a33fcfa3040549c96c0aac335b1965d646e8426653d29558abd871ab1a72f65b

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.18-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 ef0be51554016f5c0adb2453c76654d3891376a0cbdbe017e952b8ce263b151b
MD5 7d6ddb8210c5922cf3318ea591e6e3d5
BLAKE2b-256 9af40890e632d89ab1a605bc3e78c870e8ea84552c83723e9cb9191189ff04d1

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.18-cp312-none-win32.whl
Algorithm Hash digest
SHA256 79bba6f444490e40794e898989734a5429bcc93ee1ae039b55ba01a8d66d3c81
MD5 098786ef0c5ec640cd2ca60f741e6335
BLAKE2b-256 87f567a5b0b8c359303a475d5026095871075c9aa655c9db81fb01d9b2551ca6

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.18-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8dc40998a13dd3d6f57e9b80bc293fa1a24f49c3034530aa51e9643092de6fa6
MD5 5e04b7c7be78afc1cb6b3f46eb5d416f
BLAKE2b-256 e2d1209bc82ed2bd21a0a25e57d884e429610b8b10bd65d524ba86f9509e4391

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.18-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 eaac63a9cd24c34ae9746349ad57bf34435cda56eae77b93c08f21a55ef22238
MD5 089b7ed69ea98982742d45a8ceb8665d
BLAKE2b-256 3e378884a04351b7a28a540fa988dd54b8a55ee30ed07c52c863cc09f23945e8

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.18-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7b7f2a99a815e9e40283785c4819b8e542941c56aa0907453d5c1cd9938c82ad
MD5 2797ea0f7a15b50f8667e4ae23cd72d2
BLAKE2b-256 2dbc3392f1cc698c32f9bec63cdd2f6c967f267cf542bbb141c393df900b9b71

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.18-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 096d01a0b215a12259249a4e6fbf50b24fdd6c685f7e8a05ad9471ae54228b45
MD5 c2ea3095fd2c79728a24f3a35a747755
BLAKE2b-256 f334783e27eb9514fa3ba2f8479ac06ddd6de3aac9efde791f423b68d12182b7

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.18-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0cd07adc4d4070b7fcb39792fba7edae91c9d167732a5edf3726fd9fb56b083d
MD5 1db0be130b176c523a99975a589b04f4
BLAKE2b-256 64ce7d4b5974bdf1a6efc898df1d0903a16bc7acc222a7c748e7f9e7447dbbc9

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.18-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6578ecea2928def7f345df13a454eaa1e0e7e780ae8c5e7d54866add8aa9fa5f
MD5 d14dcdb30f515b758af1a6add8b5b009
BLAKE2b-256 42b0e965703ce3e866224635f1b6c36205be3ede67a6c7ad8314a810018c1885

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.18-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d772f4d1f9d4d0463d9aa8ad908fbf507084d035bb6d7d33fd962039b9617e7a
MD5 192bbe4d6589543da79b44e1b5b4cf06
BLAKE2b-256 68fb2a1d7aa6cae4e590845c1d2d01dd9289c1f3af06822f2d1654a3f4d34519

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.18-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5f90a865f0af9c6d116db7a985309c2b959727c9f45ddc37e4c27a637752e41f
MD5 b544afc84987c8d7bc997f2b8673cd17
BLAKE2b-256 b8719007037a3be77bfff73ea51ea4dfdf29323d3b0a19a29f2c0b6577f0f52a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.18-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 58146664e690aeb8de021a326827c9537f0aa12fdd5dfce4f4677224f2946b36
MD5 0f5810b95282e55c52dbe8485d5a92f4
BLAKE2b-256 d38f28e39695e25ae33ab94163bedfc3a7d8ca6594e99f318f568f67a72a41e7

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.18-cp311-none-win32.whl
Algorithm Hash digest
SHA256 98af01afe66a77e757f90250c10827fea31f8d4774e995c9dd558803a9262249
MD5 8411cd94f036239c7d8492f68e47a962
BLAKE2b-256 edd6ce7e871d95153a4eeb5b2aa7da521c31fe31a6f3bc6a7d79297758a9c7ee

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.18-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7472f7ae5a51deaa289ed121cf1d7d77c1ee2f0cf5c6e8dded664d1ed15be241
MD5 c4732184badf7137efdd45dc82709385
BLAKE2b-256 e8e2157fe19ec618f0361c4e22816cab12c19ef21d239fe8c664743d184bc288

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.18-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6ac59cad29bb92268edfafff867b2c5023accc5e01a7a432a6ad49fb64f066e0
MD5 1130d43d32fa03b7e432ed4d78219401
BLAKE2b-256 b8749d156106e21e6481cf27dfd32b5825209625c7570738e088e9e91be20cfc

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.18-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 339cddd1ca14cb204462b8021a9c18b788ec0f6afbf58ffbf23c1ceeb3dc29fe
MD5 3e787b28bbc126ef00231df2d9abf080
BLAKE2b-256 0859465659bb1c1feffe74c94d0e3e94b0a018a0bc839f12bcc2175147cce7db

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.18-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 436c34df5dd6d820dbec4d12c8c45f2c340476001a747031f5e33f08c86eff65
MD5 eea0b259cabd5a62208313ef86c1dfca
BLAKE2b-256 998328d66c6e7c16f894780c7c0efba4f56271f9b3149dcd6dfe4e64c7df6c34

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.18-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2baf53b43958b568f2bf7764c269e4c56dcba9bef8f31d716ab83651f8d0e2fa
MD5 3cb55ea404d188553394272d9d184b99
BLAKE2b-256 8a866669eca98c9a31d9ff2b5716f059ef9c567e576f50c397c49f7708384d92

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.18-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ce3c46ee86e3131c69d83996a2abc9393898d5a26d961add1471b072cc401f7b
MD5 28c5f2b081722112106c7e5a75582330
BLAKE2b-256 846cc2b1e90ad6b29634507f8ac28c6853f5317034c46130e2cb2cc364030c02

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.18-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 369518431bb7c0c81dbb04911a5f2b065216632a7b89524a9aeda6f14bf2a8f9
MD5 6aef7a2365b853e412bb6430342fd224
BLAKE2b-256 daad3a35c044fa4ccb00a8d710e26941d950dfcb12194eec5f01b53051e6c69f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.18-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d83e9dcb6b073777c3e27e3bb19e954fbb4e14f321d6d2c8addbbdde9de59a91
MD5 7bf83c71a3a8358bc7e36280d38f8368
BLAKE2b-256 f28fd0199dc5ec0ace7046425fa72c9b2001514a3b785e1123cde15559731047

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.18-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 3e64d9681579d8a407379e9406722dcff89611370dfc81246c27e9b3ad1f5568
MD5 0f063d4a98cc42a755b5b9f7102e7f36
BLAKE2b-256 999454725d43a37ddbfc20bac61fd48ffaa39b382671e4e3b9eb3de304ab7cec

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.18-cp310-none-win32.whl
Algorithm Hash digest
SHA256 5673b2b442e698f9ac7dade1bf25b877516f75fbf0855a79ae881afa470cce66
MD5 3a38c0bc45facd4d5e9dcc49ed11208f
BLAKE2b-256 9c8f34a419a920983e9a234c10a46c164bdd3848a2383d105839b49184cefc5c

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.18-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a87489732e15decc1a36edf7393b0fcdcccccf0359d2c32c0ad5864c322a7385
MD5 b47c752e2c85a1e664433c58d846be24
BLAKE2b-256 131c429d39b349ee5ae4a4e4e43037450b0988017bafcdbc5d29ff5f0409be42

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.18-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 bf93f66cf087b9e64efa1629fa14b09a61f7ecf357c76bd85f2457cb4225e2f4
MD5 3bb28ed0130d32a201869063c43d2733
BLAKE2b-256 ca499812e8b056757c64ee42f94160064b4ef40e8b15fc0e9435c0d2d1feab20

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.18-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 326794087421f6672183db42383b99901e899ded694732b5020c635f4d07c4dd
MD5 546aabee0181c9b21c47e86fa38311ab
BLAKE2b-256 d5af6edafcfeb8163622e55905038eb9a9f8cf24d57a5d2f7e395b9db2cd7da5

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.18-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c380b9d2eb8f5cc2f11c845355be7eaa8e4431fe5ac743c04a36815185bafc4f
MD5 31c2a4064f7315b28889677543ca41cc
BLAKE2b-256 762acc182d13b3c597f0a3d41d987c37962ee301a548890fea28fbb7c8ae5bee

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.18-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 dea2d4cd898f9c41d346d7a3d0fadce7b0777c4ee272715293b1adb6381e985b
MD5 5ec1818d6ff38606a361561196975dfb
BLAKE2b-256 1473613a52a89f720eef817b0da061b9a2257627d69634432d8f02b92f5fbc5f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.18-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 86265f44955c679ab3fda08e057fcd686b4e880afd37e03bb3d055d45450582d
MD5 2690a1cef4febba2a59c0c0987e47ba2
BLAKE2b-256 3ffa8267c74505e4acb59bdc78cbe52c67c8d896680979c768043c1b0945fcd0

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.18-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4e4e8c3f0b3c65d7b357e17d9fa161f286535aec51bcbe70184c4cef0f53d4e7
MD5 f88a084ebecba1266e899be77b8c7938
BLAKE2b-256 15cb89e92c4f55267dc5080d2f9e78535c14d8665dcb5940afce84ef63919317

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.18-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 74ebb4a38b1b0a99b8088197511785ad67db64230afeba7da0799e97d705a051
MD5 25c8278ce10cbba3c980cd959a15c354
BLAKE2b-256 6ac44358147aa02acf9491fa05ec886a8ab56e1308eee1a5b426d23eb2dbf02d

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.18-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 381b83378922df7a063b0b76ee1ed7f7028d11a82f88e182f825e07b0fe30d7c
MD5 6736bfcdfd05aa006df9563fd0d3f6a1
BLAKE2b-256 01388401b9d34276d3953185ad7d9d3ed4386416f993fc93b0ba4b3cd45011c5

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.18-cp39-none-win32.whl
Algorithm Hash digest
SHA256 d59c05eaab11c49636348839a1aacbc94fbc658adb279c0ff149e7f6aedb3721
MD5 642b039b093ddc9a64e5c76c712ef012
BLAKE2b-256 99bd97853aaa44eb0c58ffb2884a399debc7f9cc24bf7afcd74c4a0efce24baf

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.18-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 600d5f511d1ee09a23caa4136ac666818bf79f45c3c5a0205ce85b4946641e50
MD5 d547c18b7e3c8a39a58c167aeaf7850f
BLAKE2b-256 328e29f1f06394782a21abc16b0cfb774bad8d84ded1bfca599e2fc270f0a8bc

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.18-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 214c0a8a5743356933960064323bb186db917f784169c8d264cd421f0b863da8
MD5 9edc72962421c01435aaa23ff9cbc0e1
BLAKE2b-256 d925dfcac2f8f002521384b13c367a65bca7f84cad1c432da6f447b9ee70d6ea

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.18-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 bd65f495a1ddd7705a4c5a20f714e69832c6006f5a0977a27a2d671f44cd65e5
MD5 45ae8580ecdc52d8f520e0aa8932ccc3
BLAKE2b-256 cb7818ba4db59e3584677e7210c9f3915af8dc8fba74b853383dae92e640c901

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.18-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 df6590e658de4fa17604d870f798b914fd98db4d5f7341fc3937acc384347b60
MD5 9ca41cba41e80f166d98902c9fa760fa
BLAKE2b-256 c9b1ea95d0218f0f9b26bcab71e6c2a3d19bfae9b607dff1bf9aacb53a03d961

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.18-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ce18001a18fc1494e9099bb178359f17b8bfd6d3fc14e36b18491522e3d3a905
MD5 a6e4cbb4ae918072e0ae255fd05f607b
BLAKE2b-256 44721b26d312e239cc526be6aec5eb650e7ec7f3061656ea4731a87815d4ab64

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.18-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0e7d7e4a3ca4da091b3154037a9308b31aa05953776baeaaaac67f972af3cfad
MD5 fb91dd6f20ed73532a01288bf6472665
BLAKE2b-256 4b7fa865056639a9485b01d021ef1c10f5a409f197c694cde476b1cee357306e

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.18-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 0015e0509f1de52eaeeb69bdbad6bb1db8cc0301156e2c7be49b7ecaae54512a
MD5 f311dbb89f11dd48d0842e2f5cda542e
BLAKE2b-256 8c131d2e402f4cb1a0ee143c4a9a710410dba919d1510767a90ca6ec38b9a7fa

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.18-cp38-none-win32.whl
Algorithm Hash digest
SHA256 1c0aaa106bbfbe4912e6c5504f9c4080c3e3499a346e1b1c9f0e9054fbc07baf
MD5 c078a76990c2b387f9c1fc7331eb562a
BLAKE2b-256 3eb383065c501e955057b17c57336195e4726a030e4bf54d298d6bfbe9e33c84

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.18-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ca8c780d491c272c5b15282f50ebe6e733ec0776dc90e6f55415ddbc4f8c6d98
MD5 4f15b9454233fb970e84e4c892ac4c1a
BLAKE2b-256 cc4459ebf4bbaee51f671bb20b2ad77d4bbd4cb639c2b0042664e1a908ac1375

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.18-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 486d4e2a2842c571c93ff4359e1d2dd3fe6a9536542eb64fc6dd96ea429bd56c
MD5 a3a6c25a2f52c9a6f6a2ce0f5ba6f7bb
BLAKE2b-256 e7c6ea57f2ebf80b843a4b499c476582c179863f209b9e68e2c2c4ceb747cc3a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.18-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3fde9fce3d2fdf12c9d2ef60a8c6fbfad437c92d54c2551dfa9769380960073a
MD5 ef062ffec0f297e6cb0628719852eabf
BLAKE2b-256 499ba0d85f8fc7943d60db244b34e81eb2bc94b99cac44e4988d05f4d74e4f74

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.18-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 fcafceda56e9d16ea843a0bf02752d6933161d667bc36a3dc7d661cc61192d59
MD5 e3d82577a9bf6078f226bf8c389536f8
BLAKE2b-256 f0ff476003f7d90e275a244406eb90b0eb1e5e5b4a0bf5c08fb8dcdef16d297b

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.18-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 92252e0be531d1e13f132376d5ef7bf463eb43031da3ff2a8bbe7ad9b35110e9
MD5 e47fe6e9da67b39276d00eaffe80ca6c
BLAKE2b-256 e45a7bb31b39cdf9555a4acc137b700e20288583976301458a0c967a0fd9c696

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.18-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 308f4369cb01f8da89c50bfb22902377bf8ef406a6942d78fd252b451a9b25c1
MD5 714921f7f2fb88fa2d4bf03535cbfaca
BLAKE2b-256 6ed3a0db39b5b4fd56510f37c6a68408957702dd2f7effcd937f6d188590d697

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