Skip to main content

OpenGRIS Scaler Distribution Framework

Project description

OpenGRIS Scaler

Efficient, lightweight, and reliable distributed computation.

FINOS Incubating Documentation License PyPI OpenSSF Scorecard

Documentation: https://finos.github.io/opengris-scaler/

Start there for installation options, command reference, worker manager guides, scaling policies, and examples.

What Is Scaler?

OpenGRIS Scaler is a distributed computing framework for running Python tasks across local machines or remote infrastructure.

It provides:

  • A Python client API similar to multiprocessing patterns such as submit(), map(), and starmap().
  • A centralized scheduler that dispatches work and balances load across workers.
  • Worker managers for local execution and cloud-backed capacity.
  • Support for graph/DAG execution, monitoring, and task recovery.

Architecture

Scaler architecture

  • Clients submit tasks to a scheduler.
  • The scheduler tracks state, applies scaling/allocation policies, and dispatches work.
  • Worker managers provision workers locally or on external infrastructure.
  • Workers execute tasks and return results.
  • An object storage service stores task inputs and outputs used by the cluster.

Local Quickstart

Install the package:

pip install opengris-scaler

Create config.toml:

[object_storage_server]
bind_address = "tcp://127.0.0.1:8517"

[scheduler]
bind_address = "tcp://127.0.0.1:8516"
object_storage_address = "tcp://127.0.0.1:8517"

[[worker_manager]]
type = "baremetal_native"
scheduler_address = "tcp://127.0.0.1:8516"
worker_manager_id = "wm-native"

Start a fully local stack:

scaler config.toml

Submit tasks from Python:

from scaler import Client


def square(value: int) -> int:
    return value * value


with Client(address="tcp://127.0.0.1:8516") as client:
    results = client.map(square, range(10))

print(results)

Learn More

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

opengris_scaler-2.0.12.tar.gz (4.2 MB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

opengris_scaler-2.0.12-cp314-cp314t-musllinux_1_2_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

opengris_scaler-2.0.12-cp314-cp314t-manylinux_2_28_x86_64.whl (3.5 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ x86-64

opengris_scaler-2.0.12-cp314-cp314t-macosx_15_0_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.14tmacOS 15.0+ x86-64

opengris_scaler-2.0.12-cp314-cp314t-macosx_15_0_arm64.whl (3.1 MB view details)

Uploaded CPython 3.14tmacOS 15.0+ ARM64

opengris_scaler-2.0.12-cp314-cp314-musllinux_1_2_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

opengris_scaler-2.0.12-cp314-cp314-manylinux_2_28_x86_64.whl (3.5 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

opengris_scaler-2.0.12-cp314-cp314-macosx_15_0_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.14macOS 15.0+ x86-64

opengris_scaler-2.0.12-cp314-cp314-macosx_15_0_arm64.whl (3.1 MB view details)

Uploaded CPython 3.14macOS 15.0+ ARM64

opengris_scaler-2.0.12-cp313-cp313-musllinux_1_2_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

opengris_scaler-2.0.12-cp313-cp313-manylinux_2_28_x86_64.whl (3.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

opengris_scaler-2.0.12-cp313-cp313-macosx_15_0_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.13macOS 15.0+ x86-64

opengris_scaler-2.0.12-cp313-cp313-macosx_15_0_arm64.whl (3.1 MB view details)

Uploaded CPython 3.13macOS 15.0+ ARM64

opengris_scaler-2.0.12-cp312-cp312-musllinux_1_2_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

opengris_scaler-2.0.12-cp312-cp312-manylinux_2_28_x86_64.whl (3.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

opengris_scaler-2.0.12-cp312-cp312-macosx_15_0_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.12macOS 15.0+ x86-64

opengris_scaler-2.0.12-cp312-cp312-macosx_15_0_arm64.whl (3.1 MB view details)

Uploaded CPython 3.12macOS 15.0+ ARM64

opengris_scaler-2.0.12-cp311-cp311-musllinux_1_2_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

opengris_scaler-2.0.12-cp311-cp311-manylinux_2_28_x86_64.whl (3.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

opengris_scaler-2.0.12-cp311-cp311-macosx_15_0_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.11macOS 15.0+ x86-64

opengris_scaler-2.0.12-cp311-cp311-macosx_15_0_arm64.whl (3.1 MB view details)

Uploaded CPython 3.11macOS 15.0+ ARM64

opengris_scaler-2.0.12-cp310-cp310-musllinux_1_2_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

opengris_scaler-2.0.12-cp310-cp310-manylinux_2_28_x86_64.whl (3.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

opengris_scaler-2.0.12-cp310-cp310-macosx_15_0_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.10macOS 15.0+ x86-64

opengris_scaler-2.0.12-cp310-cp310-macosx_15_0_arm64.whl (3.1 MB view details)

Uploaded CPython 3.10macOS 15.0+ ARM64

opengris_scaler-2.0.12-cp38-cp38-musllinux_1_2_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

opengris_scaler-2.0.12-cp38-cp38-manylinux_2_28_x86_64.whl (3.5 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.28+ x86-64

opengris_scaler-2.0.12-cp38-cp38-macosx_15_0_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.8macOS 15.0+ x86-64

opengris_scaler-2.0.12-cp38-cp38-macosx_15_0_arm64.whl (3.1 MB view details)

Uploaded CPython 3.8macOS 15.0+ ARM64

File details

Details for the file opengris_scaler-2.0.12.tar.gz.

File metadata

  • Download URL: opengris_scaler-2.0.12.tar.gz
  • Upload date:
  • Size: 4.2 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for opengris_scaler-2.0.12.tar.gz
Algorithm Hash digest
SHA256 9979c5893b858e824943043517c5243a327093949826204e90bf0518809c4701
MD5 dea20c7fc22b53f7e10a30e2bfc361ba
BLAKE2b-256 997deb9f7329caf5a20b7490d5331a26e63892ac6e2de50f185981d36384628f

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.0.12.tar.gz:

Publisher: publish-artifact.yml on finos/opengris-scaler

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file opengris_scaler-2.0.12-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.0.12-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 51c0d8a2182322a9239886758516daf76a56759489db0d21202ae9d600ef2fcd
MD5 bb5695946d4e2b37794b280d0240d582
BLAKE2b-256 6456acee73aff4bff2418560b3efd96630c35905ef446195a323cc5029a53b07

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.0.12-cp314-cp314t-musllinux_1_2_x86_64.whl:

Publisher: publish-artifact.yml on finos/opengris-scaler

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file opengris_scaler-2.0.12-cp314-cp314t-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.0.12-cp314-cp314t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 cc878807e427993d3d21b4c208ceca7763bbeb2e8c8f1534c1bdac7813462af8
MD5 f58624b59e9a12404bceac43d529749b
BLAKE2b-256 ab046f177b73cd723699d5f355f3e0d9b8294ba24865a87c96e0460a14b13167

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.0.12-cp314-cp314t-manylinux_2_28_x86_64.whl:

Publisher: publish-artifact.yml on finos/opengris-scaler

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file opengris_scaler-2.0.12-cp314-cp314t-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.0.12-cp314-cp314t-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 2e637ff02ef7085130bd446dfd2e8e4eb2d10e66dd521a62e6ddcb601f70556a
MD5 dcaa1548ad618c799cd8e39aa41936bb
BLAKE2b-256 3f66f823d76ab902c33fd4222043fc1d7d6592bc877d3bb0367befd46d564d90

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.0.12-cp314-cp314t-macosx_15_0_x86_64.whl:

Publisher: publish-artifact.yml on finos/opengris-scaler

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file opengris_scaler-2.0.12-cp314-cp314t-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.0.12-cp314-cp314t-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 a456b887b30b07f023b06e91c90574b7c9391156ba2773f7112c430ab9c43308
MD5 83dda66257f4e6d515a6e03b22faf3f3
BLAKE2b-256 277964990de5b435a275cb7dcc79874ac2685ed92578150840cb8dec82b916d6

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.0.12-cp314-cp314t-macosx_15_0_arm64.whl:

Publisher: publish-artifact.yml on finos/opengris-scaler

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file opengris_scaler-2.0.12-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.0.12-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 26fa29dfc2994e7f168a5f052f2c6679d14f987774ff6fe6383e7ef0f433adb3
MD5 a10b76dfc36cc5a7f1f4ef6caff857a6
BLAKE2b-256 64416a99bc3760b5b8cdfebcf95d5a7028cd65b28112bb658ae41e51bec8e5ab

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.0.12-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: publish-artifact.yml on finos/opengris-scaler

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file opengris_scaler-2.0.12-cp314-cp314-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.0.12-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0922d480f452ac4a279536f671ed83cc0ff86ea9b11c75781762fa9b2dad97a4
MD5 404f157ffb7cb6c5b1ad891e40186d25
BLAKE2b-256 1e6ccaf198d7dbc559c5589c20e59231f402bde4cb01655b13d502b34fe0546d

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.0.12-cp314-cp314-manylinux_2_28_x86_64.whl:

Publisher: publish-artifact.yml on finos/opengris-scaler

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file opengris_scaler-2.0.12-cp314-cp314-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.0.12-cp314-cp314-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 0cb06aa89d95aa320987f565940ca521dfd6c1012383216047fd6b221b2c502c
MD5 6df540dbe7f6aa927097c8e99bb6216b
BLAKE2b-256 257a268e093dd88748d2197c01f57767082ed24f49e779f0d60ee55d8c813f63

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.0.12-cp314-cp314-macosx_15_0_x86_64.whl:

Publisher: publish-artifact.yml on finos/opengris-scaler

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file opengris_scaler-2.0.12-cp314-cp314-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.0.12-cp314-cp314-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 bc0ed2792ad5cff885c22abfa223a26a6345aaf0a89a0f5fe0d87f226fcc9a00
MD5 cae4ed32f5acc8b7dc62e76b155bec3c
BLAKE2b-256 c62f9240d916570085231cac2badb382174478d1e0881ca01a704185eaa9630b

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.0.12-cp314-cp314-macosx_15_0_arm64.whl:

Publisher: publish-artifact.yml on finos/opengris-scaler

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file opengris_scaler-2.0.12-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.0.12-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a56a269b40a71e148509006d04afb7a2d5de91cd2eaef9c8f372085ce90797cb
MD5 2041bb75ee4b088fe516bfb22cab6389
BLAKE2b-256 09bd3d5b91d53d45f325e90ff198ace4981a1e2bc579d3215e57ebbbe8c428f0

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.0.12-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: publish-artifact.yml on finos/opengris-scaler

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file opengris_scaler-2.0.12-cp313-cp313-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.0.12-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d0e32e48071d33fb8d76e336715ea70674db9e76b77a0c44c713d1d778658c7c
MD5 3145c9634cce0eb31158d01e474b8d0e
BLAKE2b-256 1f5e7b56bc318c70bd63dba9b17787aaf3a732c32bd53ea997e77b6bc221c86c

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.0.12-cp313-cp313-manylinux_2_28_x86_64.whl:

Publisher: publish-artifact.yml on finos/opengris-scaler

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file opengris_scaler-2.0.12-cp313-cp313-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.0.12-cp313-cp313-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 222847838b2fb0ce5439dc4bb295390c084f3bf4eac53c986659bdf1ec000413
MD5 9d276e8db964375f124f771186e74bc7
BLAKE2b-256 0650181f09fc83bc5763b1d7e387dc8d646086fe728b0e273d4fced0f27e5d53

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.0.12-cp313-cp313-macosx_15_0_x86_64.whl:

Publisher: publish-artifact.yml on finos/opengris-scaler

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file opengris_scaler-2.0.12-cp313-cp313-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.0.12-cp313-cp313-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 a95a4b76a24852d92f3ee7f0b0359dfe3a2145a0d216a81dc95dc6f919016ffb
MD5 17ff8f8309eb4546e93ca2eddcac9160
BLAKE2b-256 8ba927d223989cd15a2dcf72ed1784b026ab7524cf10b974fff747d27c7f1bba

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.0.12-cp313-cp313-macosx_15_0_arm64.whl:

Publisher: publish-artifact.yml on finos/opengris-scaler

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file opengris_scaler-2.0.12-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.0.12-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 90129ce55191e3a95ba7ba8994ac5e2719694372e1bd9c877c64c6ea5320d5b7
MD5 c687777869a31156162b8cdddafe163c
BLAKE2b-256 1cb33265862eb073ec6f37f054e0c354ebad7631a8f46477a872e5d166a7ec28

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.0.12-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: publish-artifact.yml on finos/opengris-scaler

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file opengris_scaler-2.0.12-cp312-cp312-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.0.12-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 543246c067b405eab1e278cc2e4b283e6d13b49a22a6f474bbf19be6da757feb
MD5 8b23d0398f321a759669661709c90018
BLAKE2b-256 1eb8680475938a834c2b895dbb51c6a189610f6a238d9100bc5868a4badd5830

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.0.12-cp312-cp312-manylinux_2_28_x86_64.whl:

Publisher: publish-artifact.yml on finos/opengris-scaler

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file opengris_scaler-2.0.12-cp312-cp312-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.0.12-cp312-cp312-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 ddb7d1ef7358224321e240fc8f32fcbf4074d24326b22b037b0f6b504bb9b58b
MD5 d01c0f9d8ee5ddeda4459e190699f2a9
BLAKE2b-256 6e319b8e77b33de3104b4c0183dfe53d5748da332d617f221873883478d3a532

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.0.12-cp312-cp312-macosx_15_0_x86_64.whl:

Publisher: publish-artifact.yml on finos/opengris-scaler

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file opengris_scaler-2.0.12-cp312-cp312-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.0.12-cp312-cp312-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 b0cc115e3590ae8e0f16869bec8ca0c5dc1635ae729d906cf47fb7a4de832b35
MD5 9bd0b5e2f3d3f4ea39c98ff35720e4df
BLAKE2b-256 8c3f06a078a4076283940dc3b8cbf70f5ebed8261fa61351217ec65db86e387e

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.0.12-cp312-cp312-macosx_15_0_arm64.whl:

Publisher: publish-artifact.yml on finos/opengris-scaler

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file opengris_scaler-2.0.12-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.0.12-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8a019acfd5b7fd113c1760fae1cd590e368cde3ee5eff469d57a75670b155635
MD5 ff0adb28cdec24bd1ae9d62846a9f2e6
BLAKE2b-256 6517011796517bc8b638a71479a0a2c800cd23e78441698e8c017c4678fb3f44

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.0.12-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: publish-artifact.yml on finos/opengris-scaler

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file opengris_scaler-2.0.12-cp311-cp311-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.0.12-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d6a3a26a6e904540954e5a6938a411080917442eba0635e75be48adf0d60bff0
MD5 fe10a2f2c5e397d5015e2bee626f265e
BLAKE2b-256 ac931ce10067cafffee847548351aad1236eed9fb6f263025f8ce55d604d2f68

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.0.12-cp311-cp311-manylinux_2_28_x86_64.whl:

Publisher: publish-artifact.yml on finos/opengris-scaler

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file opengris_scaler-2.0.12-cp311-cp311-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.0.12-cp311-cp311-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 2deff64b4bce51afbc116f0cdad58ee6bd90ef7d22f36d91117814d14ff4026e
MD5 638e948e78ad0dddce76de8e1ea02b5a
BLAKE2b-256 72ba6f93bd107bf3e771ec30088ebb91c8a44d5c5b78baa45909911fe9655804

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.0.12-cp311-cp311-macosx_15_0_x86_64.whl:

Publisher: publish-artifact.yml on finos/opengris-scaler

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file opengris_scaler-2.0.12-cp311-cp311-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.0.12-cp311-cp311-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 59f90beeb2df30a7d524257f2c69281940650f3054fca25e7385e7e5993240d4
MD5 025c04e8e7bc7b902074ee92fb0975a5
BLAKE2b-256 0344f8c753dba53ea126f5e446c668c92c0c20fbf14d2c85984a1bf7fcaf8bef

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.0.12-cp311-cp311-macosx_15_0_arm64.whl:

Publisher: publish-artifact.yml on finos/opengris-scaler

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file opengris_scaler-2.0.12-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.0.12-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 44dab7647132cb71d257c62cd67a6e949b22a442cf602e0611ead6868ae14931
MD5 5c7b883c46c6c174c3266e5e278f2972
BLAKE2b-256 adab9f562e9d7f45f9293d95019a668119c57df25860c5e4e86a72148ea5c987

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.0.12-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: publish-artifact.yml on finos/opengris-scaler

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file opengris_scaler-2.0.12-cp310-cp310-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.0.12-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 64c2452e696eec8634d73780351a3a7b82c454756e612e53e21fcbf7a3bdbff2
MD5 a55cec42339fc8dc18cdc002101d48cf
BLAKE2b-256 9b2622a8f22ad26b49d8b247312eab764ea22b2b2c43483296e6a511f1db4d20

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.0.12-cp310-cp310-manylinux_2_28_x86_64.whl:

Publisher: publish-artifact.yml on finos/opengris-scaler

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file opengris_scaler-2.0.12-cp310-cp310-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.0.12-cp310-cp310-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 4a4e835b3bcf2563aa57d2338c9734618ff782bfc191fd701b6097391b8fe9fc
MD5 5c8ac48a7eee7eb2bfda5568c738a82b
BLAKE2b-256 b28ef029b13392b3d935cd7cb43b57a01c0aae6353b9cd8010ff928874362ed6

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.0.12-cp310-cp310-macosx_15_0_x86_64.whl:

Publisher: publish-artifact.yml on finos/opengris-scaler

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file opengris_scaler-2.0.12-cp310-cp310-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.0.12-cp310-cp310-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 dca895027d14deff5fd5ee7446f2220c325f5c2e2a9942178996dd53e1094477
MD5 49dd78ce22987fe40d80ff8294d5dbe5
BLAKE2b-256 bec240ceabbc659dce2ad56238654fefaf7f34102ddaa67fb72ebd60dc3b7fa8

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.0.12-cp310-cp310-macosx_15_0_arm64.whl:

Publisher: publish-artifact.yml on finos/opengris-scaler

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file opengris_scaler-2.0.12-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.0.12-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cf063dfb6b0f8554163a2966fc61148837072ddae49feff5bb7afb8c4dd1c624
MD5 e0d435cdbf12146eb0a7a306d18b0d2b
BLAKE2b-256 6e088bb0e03c829cc5dce4c300b1c4b9a1adee4d67c159d6d9be1144a9ed7577

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.0.12-cp38-cp38-musllinux_1_2_x86_64.whl:

Publisher: publish-artifact.yml on finos/opengris-scaler

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file opengris_scaler-2.0.12-cp38-cp38-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.0.12-cp38-cp38-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 61e68b33367fbd5d2713f7e25f83460ad841c6c352388f8a22127112acc0a242
MD5 e5ecb0645bcf6a7dc16c2d632f56f86a
BLAKE2b-256 3295607eddfef07920b39702fb34fec6054c895ff579d4a0758ff98cc26fc905

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.0.12-cp38-cp38-manylinux_2_28_x86_64.whl:

Publisher: publish-artifact.yml on finos/opengris-scaler

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file opengris_scaler-2.0.12-cp38-cp38-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.0.12-cp38-cp38-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 e0e76459bc819d161fafe9f78ceb81a3be4d6017965593d1489ab670de0313a8
MD5 dc56ddbaaecc72cc8393138cdec0216a
BLAKE2b-256 64afe437a0adc912f35ba180bc7abe17f475118bcfedc646e1ac8589b315e520

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.0.12-cp38-cp38-macosx_15_0_x86_64.whl:

Publisher: publish-artifact.yml on finos/opengris-scaler

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file opengris_scaler-2.0.12-cp38-cp38-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.0.12-cp38-cp38-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 750cd676a9bab5dd21cf5867bf2da93f452b103de652e71215f1bf3b4f2aea36
MD5 90d74f0d6e1fe2a535c21e82ddfd7f3d
BLAKE2b-256 6dfc0cc050e3092f1fc571d03e8212a626f0113a7f374255157b931cbaac58d9

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.0.12-cp38-cp38-macosx_15_0_arm64.whl:

Publisher: publish-artifact.yml on finos/opengris-scaler

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page