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

Uploaded Source

Built Distributions

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

Uploaded CPython 3.12 Windows x86-64

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

Uploaded CPython 3.12 Windows x86

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

Uploaded CPython 3.12 macOS 11.0+ ARM64

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

Uploaded CPython 3.11 Windows x86-64

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

Uploaded CPython 3.11 Windows x86

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

Uploaded CPython 3.11 macOS 11.0+ ARM64

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

Uploaded CPython 3.10 Windows x86-64

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

Uploaded CPython 3.10 Windows x86

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

Uploaded CPython 3.10 macOS 11.0+ ARM64

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

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 Windows x86

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

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

polars_business-0.3.10-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.10-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.10-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.10-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.10-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.10-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.10.tar.gz.

File metadata

  • Download URL: polars_business-0.3.10.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.10.tar.gz
Algorithm Hash digest
SHA256 88c932a3796c27ac20c72f455965da09586f7397b33bbd6052fcdf52bd8bc663
MD5 b41d8d2f5c7bdf02f56b86cd8382f8b2
BLAKE2b-256 1e9029d4a20a640c221c206d447f7b4249f7debdd7e73f0788e36d988d79fe5d

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.10-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2d8c524af415eaf757b209d3545ce6673994ccf2a863c011ec62b6269bc108f9
MD5 991a054ee3f6181e7ad8297c5efb5f9f
BLAKE2b-256 e236cb5e8f31f8426156eb34aeb67b8e707cfdda28fb4f656cbce9fa248a6a44

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.10-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0db7a1dd671e3f7f82dba9734e923d84f7af637e08ced56e4c51a2aeff658617
MD5 9a9bbbf4dcdf608eaee0eb18dca56733
BLAKE2b-256 a8e8b0d639eb75074a72f738c54237681c7d6ab22b16598d753de0f0fe9f4db7

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.10-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3dbdb9fd5374d804c47a1e8af878e76445e1870119e49f1f13a9de63c89df38c
MD5 b766e9bcf60b2b56de1b2a8d7d1eb0e4
BLAKE2b-256 06de6ccb6c03a53829ae6420d315464d2a147fbdc2830283691043e3b9235f2e

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.10-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 429b05b3d1f9a1315a180c30e3d8118fca21803d6d336aa00ea6d3a9f0d132f9
MD5 d9b564dc812a8795fe0cdf1d7bc12c89
BLAKE2b-256 768c06db44f6dfff5aef72db147dfdcf4cefb5064ea008a3b41da18ee7e6bd59

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.10-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 73bd06be845bc8c384850e4b63cd60c2f55447b935f9f5191604b66898906ca9
MD5 5393a5613982f1703a26fbfd12ef1a9a
BLAKE2b-256 aec3c889fe8063e1d5129f8227e73f36f75b5422e6e88ac847f1ee5170a8efc5

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.10-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e46625a7c228b255469548c1c0a535613dce4f36f7df6e3f97ed6434eddcfa3c
MD5 8174a384351d3a5c2626299d55bbde2a
BLAKE2b-256 17c1d04ccb39e52f1f80b5ace23949a9430690fd45fd22d0d942d8247d7c3209

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.10-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 41138e8518e120521a4994d31b2621c953ff3049cc9248333da68161a36365e8
MD5 23966cde23f4da9abbf93cd5930aaacd
BLAKE2b-256 6802727704747b7ea1cd1c97a9688c58c4823886a8ad42f6058c1cd0dc1a58ba

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.10-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 63592e31a1747be950cc13443f1e53c8bda2c821eacfd23b4e43af7b1b37a290
MD5 84abb7d738289a9cb37e55b6c9f2e4d3
BLAKE2b-256 39b324e79a1a143561e3d554122587cc80c4e8f44b46508bd7d741017d34146e

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.10-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ee0b81e28f52807da1b332ef0df4ec76299db773ac34f1906159e05df4842a25
MD5 e09ac3392812eeb58259098376b1130b
BLAKE2b-256 f0b239c07504650789cde9862d231107d274d2654eb1f1e936f82191cf68a5d1

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.10-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b0be5ec6a8f8a4ff2f005c76b54d10590d08a41549fe2d40044c4b8a5571a975
MD5 94d0e100f0b401b78433eccb663c4993
BLAKE2b-256 a2673775c838b3678416044fd67838f1a8c74d591b833bf829eb8f839a622df5

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.10-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c350835c3e6edeead297eb8de1f8ef5e89e33a1b0a6784d88cb2cd3893539322
MD5 825cff6a778700110c22c4d6a8b67628
BLAKE2b-256 de203fa6aea37be7386ba4e2552bbf3c6a1a383f335803546722123183f5f803

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.10-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 005c254a17d97b91cee0958fac06d82635a7eea850155d6d97ef788ed104d77a
MD5 f19cfb3be55f3958149a769450d445fe
BLAKE2b-256 9b331936f5f2fec8c6c619e2fa7fc156dbc6f05611fa3b02f1020cbaf03473c5

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.10-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6d5fc7238d2ccdf082182f720884b2c320ea0314fbddeceb1a3ed9da1b833320
MD5 e7b237d7aed343830c6b1305c0582196
BLAKE2b-256 3f8fd2319b1a0be9335930701b47a9068fb682d5648d453503026a3e7fbaf3fe

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.10-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4bb23ec3a6ddd64cdc361da90c3d1bb0b74713a796e1ed0b9e7a217fef92ae68
MD5 76709890b848420ba05e7a243d39c5d3
BLAKE2b-256 4bd4eba818d17bc8eac9c50833fb78998a1c59706d2d625c6cd5a7bdc3df27ef

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.10-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5865e52e6a209a535ee5614dfbddab282af1ebec45cdc62e0526e949acca617d
MD5 f4e74b93f38884140239b0a2870a7eac
BLAKE2b-256 e774f39de43098da41cfb22dd5e8dacf3d9f8484fc9a439fcdef186a9a01e272

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.10-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 eb3037175845d63f548e36ddbc567854fd79c21f4a01bf33725662f3a4fba14e
MD5 d5718f73edebf8c8f5fe45d4a7d3746c
BLAKE2b-256 b70940c0ec890cddc09ce955ef0abc2183dcc3d0b2209b228638dd2e7e5cb940

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.10-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9a7d1cc00cace1760534e8ac8947f5c9d20e106628b1ba8aff89f32836fb6c60
MD5 2f265e08aefabbb9754921c2e08a20d8
BLAKE2b-256 def9998868dff238b0d8bef39791555f604aa34155d7d6898d565d151b0260e5

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.10-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 26d74eeb9f0da616d081d4950fa372e3ec8d03596618a6361b53b69a79c7fbf5
MD5 c537fe5251177f4ff9032bf943e2fa47
BLAKE2b-256 d80488bf3fa010388ec4a5c9bb3908f61841bd32e4ddfdedc4d9eb0faf854c44

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.10-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 53f128845e08f11f8bef645e396c2332d11e8a58621ff48ae0f2544da3d848b0
MD5 fada2eab286a6fe81d9a92e3118daa36
BLAKE2b-256 38324c8833d549cf5ee2308353703a7934ac0dd2cee61aecf2d1ffba9cc9359a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.10-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 bd99ae85252d8da0b383313ce900d802f067598ae898a3f2de5007a4afb0e6a3
MD5 68b6659f098d4603594f7e219b25d2b8
BLAKE2b-256 60402d2cb37a401cb3e82eb63ed9d8ce1186ac8003c9acc5ea1bbb1540d4975c

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.10-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4b14cb4467fa3873dd4399d354d0b7bcb378ef8538d7dd6f43ed4c705a107027
MD5 182f7b20a4fde579d7df8d723017bff6
BLAKE2b-256 0e094e590b4cb03503554928c7e24755047533f1901681555ac7c4817b760de1

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.10-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d988e7668124dab3d59a2066f576ad8dbdafd0413bc2eb325809915801d674cf
MD5 a49e763e0a1673eeeac0a6c5857cd32c
BLAKE2b-256 f32e3726977c13087841cffef5a1ee2eb24e5046855f81181837d90cdf55d6aa

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.10-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 d19d30ba2a5c51a0f35d9f75ecf9b2a845bf704bbc1da81d58aa992d06215ee9
MD5 35f33e319cc5ae9b863c0f2ae99539a7
BLAKE2b-256 119bdc4ade02c4649da295a5b35b1aa02f875d7ef605c687a286c8b4d408f89a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.10-cp312-none-win32.whl
Algorithm Hash digest
SHA256 4f54e25a87d88abe7154fa0a51f1d960f1d75a080d08e01e1814c6c753b60daa
MD5 fd5980660019836ddc7e10f3b70d76e1
BLAKE2b-256 9b8299b50222478f40bf226fe9fb0f1b7998769aace04c50a2a35ab4bfd4bc41

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4a6533d8de0073de61650dbe9d201c3241373609d8b93b2aa93830cfc455b4a6
MD5 03e805a9b41598be8c223e109605f822
BLAKE2b-256 1f628dfc6fe72569cd7645dc1800a3b6efd8c8fb0c8cf7892d30d6b5ab34809c

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.10-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 fc00e69074777197e685b7b94612a97e6cb2caa8d0d0b59a8d5dc4286e9a1f3b
MD5 00e60193a1dc1c315fe484f577e18215
BLAKE2b-256 00f3b23acb21ea0b9f20deeadc3e201e0dbf51480f6b393c995f16f55f4b9c25

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.10-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0b74b049eac9263e052a7b801389bf40ff5e3c9ad4fee30a8086448e9da3b97d
MD5 e2a604c17ec286980c4480c785db7f86
BLAKE2b-256 c2ba59fc13e761d958d0cd8f7999125271e9610ba014d748a93b68b6d6710937

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.10-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8bfb7ba81dfe6dadb07275bfc03e57a7fbfda19234779673f53b883b83e85cc1
MD5 51044cc91ff97916d04f59ed568f2610
BLAKE2b-256 4e49d68fc20816a6c9f372160af2723337f791edaf985856e0a32f3d87f425c7

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.10-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e0b9e57ad623d1164b81a52d2c6af3f8f8e55f216c46721fcc1f44d45046d65d
MD5 f493b8ada88d71aa072ae288336ecde9
BLAKE2b-256 216dae61ff27c7b3813204acb8a2cea57063a386013c94e35246528518c655ce

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.10-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 76642c79cd6de67c6860f2437c043a073591d8961976b273ad4b6b589ef468a5
MD5 9e4a4ffe0fcb4560c438c384b51d81df
BLAKE2b-256 401a682bf3e5bc76c9f468e98b4aa0eb51a1d567c3f0833706f6f0b46a318940

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.10-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d02cdfdb155162917a565c035f834fcc7edfaa845dd304d9ba6c816db5b0cc41
MD5 fa0252f2118f91ff35bf33aa76ca223f
BLAKE2b-256 9fcb926f9b72002670acebaa1bf373362e76476a0c34decc88395c7da29e00e8

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.10-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6417c99a46472fe619fc6dce0a3a13aeafd00aeab2390709aa6bb91a0afb8e81
MD5 ad013af41a63a122564f135ac234cf9d
BLAKE2b-256 bb9c9ee15fd7f381c46bc80602898dbccc0c6ad9616e021bd8defa64559e556c

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.10-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 9ac895ba5e66d5024db170d21300fd47b3f56981aa9122af74b5d2ed8bb8fc16
MD5 16932a1dd23249c84edcd1dcd38860b3
BLAKE2b-256 43efb0217d55f22e370b394c4905245e0d3e6cadd7228df19f53f120c8d6b7ed

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.10-cp311-none-win32.whl
Algorithm Hash digest
SHA256 c1d45aec6ab18f55648a122e439ed370ddf679652c068218440f4ab19f9056f4
MD5 1ea9ef9b173dcf5e673b9a28bbc2b6f5
BLAKE2b-256 32884015dfa125c2dd4f09112eea9fa77cdf3c3ecfb2decd952fadec01b42ede

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2abd7196747bb38a506cfc7a01f2b29f44307f06f17d9cc32498e65ca70343a4
MD5 e70c974f0d411f4fdc76014b896bb18f
BLAKE2b-256 c5dac4d4dc726dba68fb68d2414ecb491a1f03ba2d8660d33fdf58041863ec08

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.10-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2bbff70454b28b4286ae433761eaa40149987da5b472f3973c9b39298a69c342
MD5 e4ef7aafab2ef472e8eea9ed57f3e074
BLAKE2b-256 712867bc51af6a5f75690501c4c5a59321fa521388b92e29c94717c78e271d28

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.10-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3c3f15ed06922b496008639a0108e85e609a8076a0d6e778fd947145c0072eb5
MD5 121cc0bd1ebaa102d28e5ef94e138c50
BLAKE2b-256 a7916dd41ce9de433a6c40e7a6e404b4c71455df5e9ae1b58f98f32720934b4b

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.10-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 35cf3309579884ba6704a7ee9b14bdaf9e121d52869b3996041fe5631b373c84
MD5 58981aba7d83151e4d09d48c029e95ea
BLAKE2b-256 72de612ea6cf0c3884b89b09b908bceb98a6a8f1608700119e22aaa9915ec9f7

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.10-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 93b71123230e490b9f4a68f4e7344748253993e9a44e5dd3c2ae1f95c182c207
MD5 7cf019c4ed0049d63bf599f1004f4900
BLAKE2b-256 86ab291fb74f0504219b355c00ba37f1cb0ecdda8040491027d203524f2f25a0

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.10-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 45c2fbbd159eabbc57bffa43383d7249030c4defd9291355b0887ca392a18219
MD5 006b7c9f704788d57af4363469de603b
BLAKE2b-256 a6b9aa07644e58749264f9a1d9e7d16555a5d408c8fa0439d44604ef401c4028

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.10-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 43117e2ee8419089190fa2d75ee6849fd4935b9243a5a4659e0f2b428b7d04b9
MD5 464614e74e5cb9d053e4a3866d12faba
BLAKE2b-256 79e8d83de191a6f310f83469f7b12ccb7726bf05f7bc2a3aaa8cf81010e4a1dc

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.10-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f0b60fe207ec056f48f64ac5e6bef1d986d5348fcb9701c2a0be97e237648d00
MD5 fc4836a94e15ada309657a9843e5c8e4
BLAKE2b-256 2cd989e58f9eeff26a695a7343d3297df8a3c0d25beb0f81bc488a45fdbec94e

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.10-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 148676d2b5e2b42b53b4ce1589f49f266fd72abdfa3700cbc83ae9bc348f10d3
MD5 617b8ef33f578731be235e6709bd635e
BLAKE2b-256 85a8b3525ea9d55ebf00d752652f80196e7dc18a70afbde2114cacd528d72635

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.10-cp310-none-win32.whl
Algorithm Hash digest
SHA256 85ae634b9c08c53c136595461e913b3be1bc9bc3d617fcb03837eae6f7ced0aa
MD5 455bb529a1f0f984bf45fb92fcf1376e
BLAKE2b-256 30581da1528c28ec79190418774f3a2a7786bdacaad4879880aeb0ac0f2108ac

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 194f808f44ef033615471e6eddbc4a5e12e1552882683419af0c481163091094
MD5 28a1e3ac83ea77431d5014b85cf8e011
BLAKE2b-256 ecdb47fa59eee62b6c9a339b9534eb2a74fc7ddec5522d44734738fcc8acd6dd

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.10-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 dbc1664cc3c2db3c9913536ce7905821d04ed490854c22091415b990ea46b0df
MD5 102e528cbd9e51784878752a4550b682
BLAKE2b-256 21a634d184a2998fdb0557e6bc4a6e4f8423c24d5c85426c3161f3f3977fa72d

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.10-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6233dbcce9b1799246bac487d931900d97260cd53261cbb297ed28181ac09046
MD5 6171f8c0e51b4a7b2c8722bbb8fbc165
BLAKE2b-256 e7b21e07bfc292572e611d71e8593f91a9e8c6de4c9a33b18c163b7c5fb1a0d3

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.10-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7a7e29603fd208c9ab6ba9d36a9b64c742b9d82c054bb6b4d8dcd52025dfae66
MD5 58ae2f440b69313991f6d25306ac16a2
BLAKE2b-256 97922cf4fea0096791a491eaeb9f3729d9ac705e3a3f754a20cf7abc050465dd

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.10-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 603d7514750cb29507e34001531b9517b002720070ab8b479994644f8b0cf862
MD5 c06fcc9eee57f7da2542bc53256fc12d
BLAKE2b-256 f6629faa88a940902a31b407086fe1e54eb54939a380edb9301ba5c64a50b29b

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 68f2ff0816932220b16d553fc4da5fc5d8c40184e3503e8b4c9876eb0a29c2c7
MD5 6232fc853dcb6e6a3122f1fc880e17d8
BLAKE2b-256 593267c2cc1c045413d4298dc64b9ab382de036f1a83ad906871e3f8b0cd4a49

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.10-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a2b6eb00d0369c9b476e1a2e9eeb8b2cfdd4be5a1468a6c34cd0f719640a4bc1
MD5 086257381cb62e28f389587c26b6a73f
BLAKE2b-256 c864c47f4d5aabcb0a107a5757ca2140018837fec70bbbe1bf168cec1012df63

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.10-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a782c071ad2bca05f18cb4545e2db8fdb008fd2478f23bd6f560db6d098e6c3e
MD5 43956b68e351c8ee3e068f4f190a4536
BLAKE2b-256 7e5430505e25c25882efc099c3c5b8c5201eca5e0b40379d921844b35ac819ca

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.10-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 927b63ec15b9c0efc32da36dcd70d72278fa0da506316e489e1d1658e0be69ac
MD5 7648c2f74adfc09dd48514dffc622b67
BLAKE2b-256 86eb0a8b00d9551e8ae411196cd7bd22b586813c368803ba1198f0cbfc2fb920

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.10-cp39-none-win32.whl
Algorithm Hash digest
SHA256 b0a008e9a68f0aa2b8df17ab94d1f049fec483a55bcb5e580fc5524127d231ef
MD5 a920d4c1aba645feacdee8f4dd7176c5
BLAKE2b-256 cb6c967e70f863d906c586de9170f2433595efe4b7ac5d4109caa93f34468930

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.10-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 293fa918e8322984ea49825b12e65dd36805e7bcc094399eba972727f7f6e55e
MD5 5650aaacd0a4e8a39af22b673f0edb14
BLAKE2b-256 93a14c249b568f5b7fc82f92e1a67b83fe777a9ba1e0e1b60286efa80720b384

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.10-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e7e9a3fb3c76c7439c759e1301c04769e3850994f549fa33164b685ef283e28f
MD5 ef88ef6ddd6745a1ae570f71ab655d0f
BLAKE2b-256 35e389c06be29aa37756b4a50f8bac434fcd1c88520ffe183b519bc122b770e0

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.10-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8fcbc6e0978bc6fa6dd79520fffda0a92e17b99ae5885b902fd4415ab4d54bc0
MD5 7c02b67b584a379cc3e6200de0616bce
BLAKE2b-256 2f06e415a6bf5b6290165817a9350c3be5bd546bfcf72a801d679152b3b5f4d2

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.10-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0acbc3e7e5f8e6284eea842d5ecf18d13682398fc031bdd394338afcac38cb97
MD5 591f563d2e84e13b5b59b289b8e94f0c
BLAKE2b-256 b7908a07948c095cf604c771b35be7d5a24d6cf8412b88139b2163de0c3c391a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.10-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 563e5d141248958f718a07bf42fd6050414bbca2bf3044284986db59076fd264
MD5 1fc248cb8d359b19dcbd1937a034db1b
BLAKE2b-256 5e13af61b0fe44fcff8885f44025e5386e2d8c873e8f0fb74923778529fda802

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.10-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 aff403d289e5b0c289d745c0e7680a6e8b8a8f93885eedba1757a074c8092473
MD5 1e180c98df8cd0970aab3af8676aec6d
BLAKE2b-256 0392fce172881908e7a34ad116c847dd5a7b874a36c3c4b0a835401c27f429b4

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.10-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 4a7f4b3559625b19519414554bb2d770fa5afddb3a986342d8569515b966638c
MD5 acb06f6471bbb59f716183e1ef147527
BLAKE2b-256 b76acfa207f271096398e7385089f611d919f7f11579d009654742c850c1ea55

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.10-cp38-none-win32.whl
Algorithm Hash digest
SHA256 7160c6eb1042c1c03adde9840c40a1c9b5d8718efd347b0dd789eff876b2f6ed
MD5 0a0ae6f9a63502099c7cca50cf783aa8
BLAKE2b-256 03e20c466e1285a294711d653daedb5b13c6d52011a932befda8d682555d60b4

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.10-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ad4ac475165004eca7d3606c0cb7bdef0826189bbf0629da14a24261a937c3e3
MD5 4604f9145442aaf3389cf41a73b3ccf9
BLAKE2b-256 7d8d3f69c108d9eab76cbe250cca01d25f88c5c5039410429ed0403ca7cf1e3f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.10-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5a8194995f9e63f1726c152ed26fd5a493d53227a7b58f5f2ef7278702d65cd6
MD5 7e0d26fec0702ea09379fa13f9111304
BLAKE2b-256 2d858e901acefd373362c90a9b8ee4c9d8452ee65f85cb075431541ce0f5ce06

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.10-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d0f599915f1ce1f485491bcb9e4720dde4adce4b44d6bd44c8c874223c87d76a
MD5 d428701dfc7e4e1784ceb02d60162155
BLAKE2b-256 c39a43bcbe1532a76910a3cd0e8df1f6c54664460f1265ab0a6efab90fc7339d

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.10-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 88edf3365bc6877b76ac167c6559d22a3ba4753d352b8a7780bbad05a1892bf2
MD5 eeda3ddfa2eb0a8ab677bd8482af5068
BLAKE2b-256 13e8bf0a4004c57ccf3c1f6d7582b969f4323eb888b3c95a44f8935c83ca1d0c

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.10-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2c2e6c04a3a7bc365567e1aa8c2e726accfc92a3a31b87f164b96d94f28800be
MD5 f838878fe906eaf753353c048de0dad4
BLAKE2b-256 3676850af9173cf000944bf544c69b7fe0ed9649dc67be76d588f43997c10256

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for polars_business-0.3.10-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ef7bd2ff912fcf6e7c886eb389c8abae3e866e187688538df3b7e4c6be09de5d
MD5 8f7a2072f3574a737062d19768540bd2
BLAKE2b-256 5b57eb8d6dc69c48566bf2b2b6ed7f46eeb2a5ae87d5ccd53bc92952eb49dd7e

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