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.4.2.tar.gz (6.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.4.2-cp314-cp314t-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.14tWindows x86-64

opengris_scaler-2.4.2-cp314-cp314t-musllinux_1_2_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

opengris_scaler-2.4.2-cp314-cp314t-musllinux_1_2_aarch64.whl (3.2 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

opengris_scaler-2.4.2-cp314-cp314t-manylinux_2_28_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ x86-64

opengris_scaler-2.4.2-cp314-cp314t-manylinux_2_28_aarch64.whl (3.6 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

opengris_scaler-2.4.2-cp314-cp314t-macosx_15_0_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.14tmacOS 15.0+ x86-64

opengris_scaler-2.4.2-cp314-cp314t-macosx_15_0_arm64.whl (3.2 MB view details)

Uploaded CPython 3.14tmacOS 15.0+ ARM64

opengris_scaler-2.4.2-cp314-cp314-win_amd64.whl (1.3 MB view details)

Uploaded CPython 3.14Windows x86-64

opengris_scaler-2.4.2-cp314-cp314-musllinux_1_2_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

opengris_scaler-2.4.2-cp314-cp314-musllinux_1_2_aarch64.whl (3.2 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

opengris_scaler-2.4.2-cp314-cp314-manylinux_2_28_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

opengris_scaler-2.4.2-cp314-cp314-manylinux_2_28_aarch64.whl (3.6 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

opengris_scaler-2.4.2-cp314-cp314-macosx_15_0_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.14macOS 15.0+ x86-64

opengris_scaler-2.4.2-cp314-cp314-macosx_15_0_arm64.whl (3.2 MB view details)

Uploaded CPython 3.14macOS 15.0+ ARM64

opengris_scaler-2.4.2-cp313-cp313-win_amd64.whl (1.3 MB view details)

Uploaded CPython 3.13Windows x86-64

opengris_scaler-2.4.2-cp313-cp313-musllinux_1_2_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

opengris_scaler-2.4.2-cp313-cp313-musllinux_1_2_aarch64.whl (3.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

opengris_scaler-2.4.2-cp313-cp313-manylinux_2_28_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

opengris_scaler-2.4.2-cp313-cp313-manylinux_2_28_aarch64.whl (3.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

opengris_scaler-2.4.2-cp313-cp313-macosx_15_0_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.13macOS 15.0+ x86-64

opengris_scaler-2.4.2-cp313-cp313-macosx_15_0_arm64.whl (3.2 MB view details)

Uploaded CPython 3.13macOS 15.0+ ARM64

opengris_scaler-2.4.2-cp312-cp312-win_amd64.whl (1.3 MB view details)

Uploaded CPython 3.12Windows x86-64

opengris_scaler-2.4.2-cp312-cp312-musllinux_1_2_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

opengris_scaler-2.4.2-cp312-cp312-musllinux_1_2_aarch64.whl (3.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

opengris_scaler-2.4.2-cp312-cp312-manylinux_2_28_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

opengris_scaler-2.4.2-cp312-cp312-manylinux_2_28_aarch64.whl (3.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

opengris_scaler-2.4.2-cp312-cp312-macosx_15_0_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.12macOS 15.0+ x86-64

opengris_scaler-2.4.2-cp312-cp312-macosx_15_0_arm64.whl (3.2 MB view details)

Uploaded CPython 3.12macOS 15.0+ ARM64

opengris_scaler-2.4.2-cp311-cp311-win_amd64.whl (1.3 MB view details)

Uploaded CPython 3.11Windows x86-64

opengris_scaler-2.4.2-cp311-cp311-musllinux_1_2_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

opengris_scaler-2.4.2-cp311-cp311-musllinux_1_2_aarch64.whl (3.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

opengris_scaler-2.4.2-cp311-cp311-manylinux_2_28_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

opengris_scaler-2.4.2-cp311-cp311-manylinux_2_28_aarch64.whl (3.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

opengris_scaler-2.4.2-cp311-cp311-macosx_15_0_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.11macOS 15.0+ x86-64

opengris_scaler-2.4.2-cp311-cp311-macosx_15_0_arm64.whl (3.2 MB view details)

Uploaded CPython 3.11macOS 15.0+ ARM64

opengris_scaler-2.4.2-cp310-cp310-win_amd64.whl (1.3 MB view details)

Uploaded CPython 3.10Windows x86-64

opengris_scaler-2.4.2-cp310-cp310-musllinux_1_2_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

opengris_scaler-2.4.2-cp310-cp310-musllinux_1_2_aarch64.whl (3.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

opengris_scaler-2.4.2-cp310-cp310-manylinux_2_28_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

opengris_scaler-2.4.2-cp310-cp310-manylinux_2_28_aarch64.whl (3.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

opengris_scaler-2.4.2-cp310-cp310-macosx_15_0_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.10macOS 15.0+ x86-64

opengris_scaler-2.4.2-cp310-cp310-macosx_15_0_arm64.whl (3.2 MB view details)

Uploaded CPython 3.10macOS 15.0+ ARM64

File details

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

File metadata

  • Download URL: opengris_scaler-2.4.2.tar.gz
  • Upload date:
  • Size: 6.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.4.2.tar.gz
Algorithm Hash digest
SHA256 3a419de6c0480c01fa4837041ac8fc4d0ff667f8c798533b52b73cd0a283db06
MD5 9490affad46a6d4bdbf5cfe4154696da
BLAKE2b-256 5dce61f60c1f4160d2de8166f98717654b5fa67f2befb7a403019d4401fd143a

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.4.2.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.4.2-cp314-cp314t-win_amd64.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.4.2-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 f05f022c3b83ce8c482a41ff607411a31235ce507a34e5917e69b7f2a420900e
MD5 1b3f5615635e9f7f51a55e1895a0cee9
BLAKE2b-256 83ea342968682606393389ee7cdc8f0af3f35897121a760f3028b2ce672c5ebd

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.4.2-cp314-cp314t-win_amd64.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.4.2-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.4.2-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 268a0d8f7862b0b438d7fdcb548dd40272a596bfd3e2893f1042a09d06984a49
MD5 2b8726c7fce77e40a3eaa8a2b0defe98
BLAKE2b-256 0087302973184fc8ce837bbdffbf8a67ffc8260f1cb171e8aba9752e63260a83

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.4.2-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.4.2-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.4.2-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4776529a99a3e25bbee3c391f1cf7d0aac6577f08f98394b6143af2cf95fab7e
MD5 af0b8086574ae28029504c1c6e09d8f3
BLAKE2b-256 b1eff25cb7cafe67d26c122ad97a1dd369464fd403f3573a6edb5eb0ea6db6da

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.4.2-cp314-cp314t-musllinux_1_2_aarch64.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.4.2-cp314-cp314t-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.4.2-cp314-cp314t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ad549c2d2f15e3a015a5135d0d58f0b70a754f8dfef4325d591475c919440a84
MD5 da25e76851ec04e21903b42f4d3ca513
BLAKE2b-256 5f4b5cdd983765abf8de149699e26f160c86a9dc5cc4e1c60609b9a4460de4af

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.4.2-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.4.2-cp314-cp314t-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.4.2-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9d75d527fe335310cced37d9d5231b014e4c1ed5a75ad59360eadb06788df9e7
MD5 aed99a1ae9c82fe7c90779a5d76923f0
BLAKE2b-256 d2115542e3df8b71b0e2108dc98561fb6843be56eb0ef5678c840328db8b6e63

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.4.2-cp314-cp314t-manylinux_2_28_aarch64.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.4.2-cp314-cp314t-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.4.2-cp314-cp314t-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 7221705af116de184f87e57829f44e94ad4eb7a7f220b2b9dfbb48ea4c390729
MD5 dc5cbb5082ffe824b7d671c4180f0ceb
BLAKE2b-256 607504f2954ec63b184d1db3e51e23000ad4714303de6b82f99ec1cfb24b235f

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.4.2-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.4.2-cp314-cp314t-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.4.2-cp314-cp314t-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 6befae97292f9839a1ad66d1c3976faeef83a89e7ebb01b8aad393c267cb6eae
MD5 93d17fe520acacf73588729237cd4078
BLAKE2b-256 05aa4a725dd5bcabc6525f9fd3957bef2b5ca91beb71f96c02131b43b23de74e

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.4.2-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.4.2-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.4.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 db1d670216b8a1347012ea5c7bf190cc2408eb1b9362287527c5ea8ad115fce3
MD5 9720fb44520693ff483ec1d71149853f
BLAKE2b-256 a1191c1ee74171004f123e93aa9a7041b27806a9e3a295f4b9e77262de5568d6

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.4.2-cp314-cp314-win_amd64.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.4.2-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.4.2-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7d9653ffef64b5832fb0ed573cc78d4e846dfc5004ff16ce8148da9368342a6c
MD5 2c3425b5cab278150c0ba6f4d8f0ea36
BLAKE2b-256 8fc78126817bf9c3623df31c94a76a506f4b91c2be069682d7c0e46329209178

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.4.2-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.4.2-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.4.2-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c823c0b6fb1dbfbb252311b1946d672ba85e5963fc29544a99e0ceabec063204
MD5 d1c856d7e1011f5d5c51d27e1a44bd36
BLAKE2b-256 5e5d5daf0ebe506627b8e925b08db248172d23a56a5699b2c59e53dcbd8fde3c

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.4.2-cp314-cp314-musllinux_1_2_aarch64.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.4.2-cp314-cp314-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.4.2-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6a6ca81b20fd3829929ad1c36e5ee348dcac055afd22666f90fe22d31ff22c27
MD5 8e1a7a4b04dc5c0233252f181eaf37b2
BLAKE2b-256 6ae0a47c5ae125a709cedd77235dbc16dd72c7f67524d91ce8ecc8c79a40cb7b

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.4.2-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.4.2-cp314-cp314-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.4.2-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b1a74c6d78b0a07cf1af503634f1e4642db2691ebe79011e0959cd29f1ffc3e8
MD5 25ad72d6167be60499fd373df63c9a58
BLAKE2b-256 77355d8bca941c47740b38dd572ff4afe5f6c384920536ccfae57400b97d8222

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.4.2-cp314-cp314-manylinux_2_28_aarch64.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.4.2-cp314-cp314-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.4.2-cp314-cp314-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 7a4a366b3dd93a9b40007ad96259fcb8da8df57be8ca827d2141efff86f59dea
MD5 65aee9198748b2a9d1e7efd9821474fa
BLAKE2b-256 413e813a2137e910a50a24f8d858a9d7b4ff3b872bec2c910020c889a9615310

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.4.2-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.4.2-cp314-cp314-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.4.2-cp314-cp314-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 4d6f1478119ebea879196fb1c44ba4527d4fae85b0a2a7aac376ea038b2200ba
MD5 927fb1803846248fc9f4313447f4ac19
BLAKE2b-256 74ea2f859031ec70b41bf69c87739d2307cb10b796c36598cdb2ac759f387800

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.4.2-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.4.2-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.4.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 4162dab78c5c2403294bdfef6373c792564ecd7e07794d061f453255a4bcad41
MD5 900475b4e4a2e0f7830fe1b9d8273f80
BLAKE2b-256 71d4b60efbedb40b575e144d3560ae0523e89862736c9d8edf32fdabcdfcdf88

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.4.2-cp313-cp313-win_amd64.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.4.2-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.4.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 335c81dce830c1f88e8c62029b6b6336f907de867c8394d8a40d9e019b830bf1
MD5 8a8d2ad72bcf601551e91edd17ade722
BLAKE2b-256 db9966f8695168e3bac4dede80379780cc86be85ea318ebb9b3d2f9d55554d6d

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.4.2-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.4.2-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.4.2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 59ee8501e9310883fe0926bc0fe1bc02489178b925b47ce322e75579bac51558
MD5 69cecfaac7162d7d9c971372c6bb0284
BLAKE2b-256 2e18bdd5b2d27b96a3ca8a50078350c88448ef1a4980991b75e742dce5e0dbd7

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.4.2-cp313-cp313-musllinux_1_2_aarch64.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.4.2-cp313-cp313-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.4.2-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 42fcf4884c452387a394e5ff5a0162a56c85e7cd8e8e22055d5f7073ef59e370
MD5 ced95c3573ce896bd69afc22474c291c
BLAKE2b-256 23a67ea1f35aa4869874fad1d2ddfc480a2c75aab85249c316eeef7ef9a9db47

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.4.2-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.4.2-cp313-cp313-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.4.2-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8bbc8aaca60ccb7bade67c88a1664f229c29e08e2b38c000fe0dd524f8145395
MD5 73b2e1e3c66169d18d96b20e4fc38064
BLAKE2b-256 dd708bbeba50da447da4c30077975f12146ddafa6b80ba7b01ea4cb02b932125

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.4.2-cp313-cp313-manylinux_2_28_aarch64.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.4.2-cp313-cp313-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.4.2-cp313-cp313-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 a8570699d30751cef4a69e9a79514d4f6faa86186d47343e4608d3b39cbab8da
MD5 3924fb16db5bf0e478fae0ecf58a5ab1
BLAKE2b-256 90e3437deb0295b657a43f37b294b1fb0565becb02e342f8a2fec4d085eb05f7

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.4.2-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.4.2-cp313-cp313-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.4.2-cp313-cp313-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 232fed803411b09eadcc7525ce08150b4af935e1598b125f8c5ace86cc85c622
MD5 90bad6907b54e59e21168db8adf64c4a
BLAKE2b-256 7f9597a513f0b7920501088d4826b1113bf70dab83a57db614aff9a173f5d67a

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.4.2-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.4.2-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.4.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 f2f3488579e1e46f0dde000e3182ffffd18557fa9b274d4b573e3144eb717cc6
MD5 c1aad77f27b1c4c518aeb0615de183e8
BLAKE2b-256 c40aa02cb961870536040a57dfc7e7f0ba3422a09f4c59c144efa3a29a5fb2fe

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.4.2-cp312-cp312-win_amd64.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.4.2-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.4.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e65255b969cff5c63348a31510055ad9ee20f86f2d09a68c379a59d603f4f49b
MD5 802e330efb42cd2998053187900ec98e
BLAKE2b-256 3e36b1e3e552f97d6047d03902720d6859f7ca5556246d33e3d6946d3ac2f2d4

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.4.2-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.4.2-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.4.2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3746c4b2b0feed68a2bc1e445f626ea6fffa6e58ffd2c2efe247144b7ab508d5
MD5 0bc7d65c174ca6741f1be84034fca490
BLAKE2b-256 1c58d3746e7424e26f679186f4180cc32fc1f233f4fbc9a0c5e7bff7711efe4a

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.4.2-cp312-cp312-musllinux_1_2_aarch64.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.4.2-cp312-cp312-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.4.2-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f99df020fcb6957bdc44faf5d184b0b1c8e641013cfcca5b04a56a2a6241cfaa
MD5 4a28d86b8df4bd341822a0659920dec4
BLAKE2b-256 48c590be617664caefdea6d1289022fa62c9ed247ac70c8839b17ebd00ec6dae

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.4.2-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.4.2-cp312-cp312-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.4.2-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e799e361fee2890faa57a74bdee935f6628aa104636cfceeeaf2d9a5503582b7
MD5 378d12465bf7438ed23e8bdb6e1e9e19
BLAKE2b-256 8f22b344dfd0cd284092bda0238578a9e7e9c4b72fbc20e6ff32753f4cddcd2a

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.4.2-cp312-cp312-manylinux_2_28_aarch64.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.4.2-cp312-cp312-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.4.2-cp312-cp312-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 610febecb6c232118707509395dcc964dddc124c9d666cca4f98bdff59f60a5b
MD5 879a0ac24838c1cc454ceb47ebd0e210
BLAKE2b-256 52e62aa358ad6d9dc7559cb0c61ba155115c9a0ba7c188a1fddb16108bbb6cef

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.4.2-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.4.2-cp312-cp312-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.4.2-cp312-cp312-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 d706002d1b2207fcff69fec370241cf71373bcb1098c2552bf4e76539d795065
MD5 7535800e9e99c41a2b2ca57a6419b9e1
BLAKE2b-256 fe4e09d0600070711ccedfe20b8b5ec428831ca6a4c4f4b1adf307e10258ba54

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.4.2-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.4.2-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.4.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 fec01653317bc8371c6102814931be0380f3fc84d684d9c9cd474ac3945fba27
MD5 0720f64bb9192417396ae8c206556a6e
BLAKE2b-256 16dfa8cd5e8fe9ca95e6c0c7117a00cc0df038dc7585848f715e71821bf06e98

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.4.2-cp311-cp311-win_amd64.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.4.2-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.4.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 33dc85524c29d190a94c04e2848942e8f5bfb954024deb228bf0320ffc03e3e9
MD5 1f2fd4b60104db24b2fe4715d0300207
BLAKE2b-256 2d400b507bcc0292047a8e0dffbdb094efd1419e5c3e40dfbd19b46efe09b058

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.4.2-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.4.2-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.4.2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 01535805e00afed09a0b57c919e08ef31caa465fd5684a0a1e02ecba931b8472
MD5 8c430b1cff35d61743f4e3d776f8f337
BLAKE2b-256 2603f96aaae98b172b5afb702bcd13b4c1225b6759d9fdbf4dd2b2d827ef73fa

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.4.2-cp311-cp311-musllinux_1_2_aarch64.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.4.2-cp311-cp311-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.4.2-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 56d3ea77c965af9071b77a7c008277fac8386d1a8a640fe5ccb9c46a841f26bc
MD5 3ac3a9d8ebad84d071928a06bfbfd61a
BLAKE2b-256 403c538bc80f0264c7ae3ccdc09e39200e8247996d7d39655846279d8cc6760a

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.4.2-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.4.2-cp311-cp311-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.4.2-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8273e15d4ef454cb109c0b5f3b7f92f02df04d78923c87f3e02a81db6f9b7174
MD5 c8d679dd96ee800abaa28c1d6c89a899
BLAKE2b-256 2a08edec48022f6d83fda5ff0b4bbeb87c3d0c9646ce3eb60325aa4c5bf08398

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.4.2-cp311-cp311-manylinux_2_28_aarch64.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.4.2-cp311-cp311-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.4.2-cp311-cp311-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 9b0110a2edc0b7525325fa534f9db8faf8c0809b0d2b43de1c654f4e5f5ba769
MD5 8e75ebc0fe14671c21c5ed3af1c37b6e
BLAKE2b-256 67fad839780b92095f9c367d132e38823dc7223f1633d6b4f1547c1e46c0ba9f

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.4.2-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.4.2-cp311-cp311-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.4.2-cp311-cp311-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 0ba20eccd0f8c5fecc12d01c194477068b7b907a9865b07eb215a21e2585a9ce
MD5 bc39c1992fdbd774b8fcd7363deca8fd
BLAKE2b-256 7e628b67eceab9aace8ec0d75d5ac84f13aebe4f17fecbf0fedf52da750ea798

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.4.2-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.4.2-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.4.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 78b080d41377d52830eec48df5ee44d5023f0ba9fcbbaf88eba4cc4ba27c6f85
MD5 6b9889d0471f7f906dab1807602278b3
BLAKE2b-256 6a6c20b62a77d1778685b7ee3a78faeb28d7b293baf46bb33794bacc9879e053

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.4.2-cp310-cp310-win_amd64.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.4.2-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.4.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 662a15ba00a4bde7494af7be9654140a889f430965bfe8c7ef4eae6ca9d91ee7
MD5 175d59c2a47f0371abc4a7f39865baf0
BLAKE2b-256 4d6b0632e3600e2645ce2935e38a76f0a171a57cbe066c47c0039443a5f26e66

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.4.2-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.4.2-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.4.2-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f7c7c319cda948b83fb40f8770884555507530fa0ee57e3b85cd03dd0c37754a
MD5 10869a45e7b4a4b9c54d30b2181da62d
BLAKE2b-256 f03b8995fa11cba13ae51a0870237b379315b21724d1bcb8b2f757942f716525

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.4.2-cp310-cp310-musllinux_1_2_aarch64.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.4.2-cp310-cp310-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.4.2-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2cb3e6a099681ab5f10c6af30bd8c134d6dd5c216495eccc8e73cf3a9d7e8a06
MD5 8c5b9541ef52bd91c707591bde8a7a34
BLAKE2b-256 6f620e31ab0b4e75fb52594170976fab931b99d5af8d63dcd027a8a5fd120b24

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.4.2-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.4.2-cp310-cp310-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.4.2-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b4c7154dee9a7bfda3bcde1ace93ff2a78926fa288883b5aea077e3092618b1c
MD5 8f25d68f98e7adb0e4508d55101ad07e
BLAKE2b-256 2e921c42a68cf200455ab90d1605a3fde54462d708b9a2d2f9368e68813325d7

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.4.2-cp310-cp310-manylinux_2_28_aarch64.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.4.2-cp310-cp310-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.4.2-cp310-cp310-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 ae91443000de52a4285ab02570f415227b291a613829e4d4ec91215673d6a351
MD5 a8517802b136f5744c85eeb0ef0e3b43
BLAKE2b-256 f6ac6b09775ba8a2b082ec28255eab1ec0c0b5a76aee10af3a79e098bbbe5d6a

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.4.2-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.4.2-cp310-cp310-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.4.2-cp310-cp310-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 f9b724a547458786c2c70506b9afd2569974761e3754b655b5066eb15a583369
MD5 7793a93b38d57379e2972aabdd150e58
BLAKE2b-256 aaeb094a654b454c7c0ca569d87522a1af09b5471b6fcd3fc452abd0bc218c24

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.4.2-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.

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