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

Uploaded CPython 3.14tWindows x86-64

opengris_scaler-2.5.5-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.5.5-cp314-cp314t-musllinux_1_2_aarch64.whl (3.3 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

opengris_scaler-2.5.5-cp314-cp314t-manylinux_2_28_x86_64.whl (3.9 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ x86-64

opengris_scaler-2.5.5-cp314-cp314t-manylinux_2_28_aarch64.whl (3.7 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.14tmacOS 15.0+ x86-64

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

Uploaded CPython 3.14tmacOS 15.0+ ARM64

opengris_scaler-2.5.5-cp314-cp314-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.14Windows x86-64

opengris_scaler-2.5.5-cp314-cp314-pyemscripten_2026_0_wasm32.whl (777.0 kB view details)

Uploaded CPython 3.14PyEmscripten 2026.0 wasm32

opengris_scaler-2.5.5-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.5.5-cp314-cp314-musllinux_1_2_aarch64.whl (3.3 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

opengris_scaler-2.5.5-cp314-cp314-manylinux_2_28_x86_64.whl (3.9 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

opengris_scaler-2.5.5-cp314-cp314-manylinux_2_28_aarch64.whl (3.7 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.14macOS 15.0+ x86-64

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

Uploaded CPython 3.14macOS 15.0+ ARM64

opengris_scaler-2.5.5-cp313-cp313-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.13Windows x86-64

opengris_scaler-2.5.5-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.5.5-cp313-cp313-musllinux_1_2_aarch64.whl (3.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

opengris_scaler-2.5.5-cp313-cp313-manylinux_2_28_x86_64.whl (3.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

opengris_scaler-2.5.5-cp313-cp313-manylinux_2_28_aarch64.whl (3.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.13macOS 15.0+ x86-64

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

Uploaded CPython 3.13macOS 15.0+ ARM64

opengris_scaler-2.5.5-cp312-cp312-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.12Windows x86-64

opengris_scaler-2.5.5-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.5.5-cp312-cp312-musllinux_1_2_aarch64.whl (3.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

opengris_scaler-2.5.5-cp312-cp312-manylinux_2_28_x86_64.whl (3.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

opengris_scaler-2.5.5-cp312-cp312-manylinux_2_28_aarch64.whl (3.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.12macOS 15.0+ x86-64

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

Uploaded CPython 3.12macOS 15.0+ ARM64

opengris_scaler-2.5.5-cp311-cp311-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.11Windows x86-64

opengris_scaler-2.5.5-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.5.5-cp311-cp311-musllinux_1_2_aarch64.whl (3.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

opengris_scaler-2.5.5-cp311-cp311-manylinux_2_28_x86_64.whl (3.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

opengris_scaler-2.5.5-cp311-cp311-manylinux_2_28_aarch64.whl (3.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.11macOS 15.0+ x86-64

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

Uploaded CPython 3.11macOS 15.0+ ARM64

opengris_scaler-2.5.5-cp310-cp310-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.10Windows x86-64

opengris_scaler-2.5.5-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.5.5-cp310-cp310-musllinux_1_2_aarch64.whl (3.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

opengris_scaler-2.5.5-cp310-cp310-manylinux_2_28_x86_64.whl (3.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

opengris_scaler-2.5.5-cp310-cp310-manylinux_2_28_aarch64.whl (3.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.10macOS 15.0+ x86-64

opengris_scaler-2.5.5-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.5.5.tar.gz.

File metadata

  • Download URL: opengris_scaler-2.5.5.tar.gz
  • Upload date:
  • Size: 6.3 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.5.5.tar.gz
Algorithm Hash digest
SHA256 8cb35a8219cd80a0b99cb71495dc87558ccc9a80806b242edea300c9ff7bfced
MD5 1c3dfb9a9be904a1550b2257379f3491
BLAKE2b-256 20432b729ed4f369abdac15691554d7c3761293198ad37babd2e7e9708e16f87

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.5.5-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 4e2d54877d9a9475e1890faf0f86670f539a8f326831966af520b988bb10a993
MD5 dc7e5c8ae3e0749f9398a976aedf93cb
BLAKE2b-256 0df2ae156ab28348632e30a4cba5dd0087b66683b5555c78147cadfe63bc96ce

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.5.5-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f6341ee40eb39c6fd7c431b96f72a75ebac681520ed9f0e3cb6c931a47139f16
MD5 3fda320b5ef401c0d338dc1916d0b59f
BLAKE2b-256 3f996b124348364723d5d435fd85c5e2fdfd173f9b019827f1354cee66271c82

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.5.5-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8f228018739f7aec700af40e0816c06196100f17053f19016fdf40a0d167119e
MD5 ab84ae947e5524d1480f54929e1d0a7a
BLAKE2b-256 44156591e580eedaf0904ffdd37999014e624963ae58c83ca27d7a9eac726e26

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.5.5-cp314-cp314t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 01e62e15c6491108b3e505fbcfc484712e73d3a4e37bf626f6193a62c6f29cb1
MD5 2e46678d9f16dee79bc04f13619868fb
BLAKE2b-256 304058f4e346feb8e09bb96edc3c87c1ad51a91ae838727a866e96e8f5bf935a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.5.5-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7ad2249c7ee3f344fbd3786abe8c6992d4aa502805e99f3487fdc01e2d13379c
MD5 4fb7ec93cb41705486c59d8708b9e5bc
BLAKE2b-256 cc012c8b2f978ced7fc54057f6457f9f32d32d184946f721020734b844448899

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.5.5-cp314-cp314t-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 b9c38c89ce0155d17dd8d0e96f4ae7fc16be892ec06a7a046e73c9a93f210cc2
MD5 4be7966d0cd76d822a27a44a615e0e3a
BLAKE2b-256 695e53460f96df84c7a6645560a738aef7d2de874c04c11e118a6abf4e7a2707

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.5.5-cp314-cp314t-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 13bb6532c7d4cb3e17146d877fc4e88bf7858c9f36948c6dd4f89a67a3e2bf7e
MD5 39135a4d9c4e0a14a71447994b5f7201
BLAKE2b-256 82251a4ff93a24a17126dbc76f2f6b8c57bb7de59da9876bda65b28aeda71b59

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.5.5-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 d0536336e81db615f8f27c98e1b8e5f99bc9c85495865cff80c073f348268c4a
MD5 28c5cad7c9af9323c47b1e812b90d0c5
BLAKE2b-256 2f730fe1187a5348eb5296573ae84f2d37a3c55b5a70d781a081e86e418ec7e8

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.5.5-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.5.5-cp314-cp314-pyemscripten_2026_0_wasm32.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.5.5-cp314-cp314-pyemscripten_2026_0_wasm32.whl
Algorithm Hash digest
SHA256 8adb927bb28d6391805ecbc59df365d0c1b25746037b94cc62baad5b3746a29e
MD5 ce42c0f8dadefa2f8b803147ccbbf3e3
BLAKE2b-256 eae753af2985a6cbc5f89d441570b664acef7db70e9e592682557ac4d78c5c1c

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.5.5-cp314-cp314-pyemscripten_2026_0_wasm32.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.5.5-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.5.5-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c352e5e72324429cd348a25e3afa21e7d0f2e925b49273de9b37d85a91d8cd2a
MD5 89d4f2bf9d975ac4e4efd7950dfc48be
BLAKE2b-256 fcbb5feb2581b40a726c897e56e2e784ba610f3aa67a8c566bca037d1c103f74

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.5.5-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7e440ab5717637e34b5bcf330657dc27342863fac2e96bd867e9464d25694ac6
MD5 b4cbd94acda1aad807ac7d4d2ce44a96
BLAKE2b-256 a1849e82ac8fb0e430aafb4a5055c8361c0e0eea0562d2d0e795de1c23b16bd3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.5.5-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 add5b90659b010f12240286222b3d8bbad6671ac423e3035f4106dd2d1a6e922
MD5 080db584a9d2bc1a01be57717e93802f
BLAKE2b-256 d817acc4d96b3dc5c6748c5f2edb136a6560196872471f3b8f4b8fc1665edae9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.5.5-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2c51d766bab234dcf060723b4ee3c9cfd9439bc0141e3968502bd12814c48f3f
MD5 b605b5ee212b72f3782da1d0386919b3
BLAKE2b-256 ca7c7ad9bcd692410cff3ad8d875af3fd3c4e94029d1e70ff503bcb121eb1afa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.5.5-cp314-cp314-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 e0bfc794ce2c85446ebcebea6766b77079e8951f0ed44955f90dc90d3df0a4e2
MD5 d12e776cf71ed5489beffafd5addfb31
BLAKE2b-256 5319ed50ddd5499eb852787f1a10aa4e86c8c8ac717dc085868978ee923b29a6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.5.5-cp314-cp314-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 7ebdc15d5f40ab97a75a9bb91d24989a4a2385cca4f04bd9e00583d81c2e0e6f
MD5 f21455062386b6e99c0c7f5743133567
BLAKE2b-256 ac3df99198778ee14a784f6c4410dcb530a1240c0be2843ebda768170f74503c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.5.5-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 4b6823455104ffb2687a8047e03f79548dd54b0a9e933969c4d2428664ce9e15
MD5 bb215821d169ded5f0d169c1f9f8845b
BLAKE2b-256 e32acb6e188c9c15311b7a2074e7665cb728ebcff8ecd831cd6a3afff456032c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.5.5-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9aca5826f7e7bbedb71a6ad1d3a831239a7c7704ebd68f43a9d506dedc2f0d2b
MD5 e7595ce0eb4b7979096dcb416071ef8b
BLAKE2b-256 ea78f61bb9103dfd8e8d0c7647f1eb85942cf5b088a19c13ab6f5419de43b46c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.5.5-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6c2814e60684b33e27fd26e41f2d9f38a16d810ee18c4b52eb5ff09287f2227a
MD5 2df8772d6d7545e4c7e12478405d9427
BLAKE2b-256 3c3f1c4adba63f5a4b9ffc859089911d6aa2870257a9e19fc04b3b35b3039510

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.5.5-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f6364dc6e5ef9c3a775e564c161baa353ba6f10e39aea2e9b176e0605ac2f608
MD5 f2863f3a65da2fb97d2e32aac4f8a00c
BLAKE2b-256 e96c22a7886fb0b1e9c4580aa565cb895305c33ec6ea2aa80f2934bb8c888ec3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.5.5-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 fc0e2a8384cc3b66faad894cbc90c35ec53610f940ea0e09c042f2d62b4f829c
MD5 4dc723dfc8eb76e899299da2430d9ab3
BLAKE2b-256 cd80aa95d316f92ca00665fbeed5aa2635811c52e2cb89893e4319d009e314ab

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.5.5-cp313-cp313-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 098b56bf3f163822d9fecc187b28f098539f77be13b5d5f8fcf04971a3361ee8
MD5 be51c1d62bf230938466b9254fd9153a
BLAKE2b-256 26f6b6044f2b5b94cb54f6ade53ef00e2a5267a663ee9c8807b08da453f26c76

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.5.5-cp313-cp313-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 43910df8c5e4253588e0032e03805933dd0daadba3334b246c7ef2a7e2932238
MD5 2c6b3dd88474fbcb5ca47bfe890dd5ae
BLAKE2b-256 be828f69814b8fce099f1891e9ef6d18c38a1a168f7cf8517fbd4bca6a1ff524

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.5.5-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 a86b46c3e58012883ff4a015b6c503573d9433a5fe21b37a4338985d5dff92e1
MD5 46ef19b61a48a37b0ad177d69dd458b4
BLAKE2b-256 875c1068653e8ecf190c5f4872be35ecc86fa75cd742ec5a20590074e393b3b4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.5.5-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7a206953460e2c84f1cda8dec859baf454e1a55e1308b79cc7fea2b7048fb3ba
MD5 17f156ae7ae9474bb015b435885249e0
BLAKE2b-256 1e03272ac288245dedaa6a3273e8137d322e930cc0fd368d9510e04617aae918

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.5.5-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2677a78698b3e6226e5212ff1542194013f310e89cd44083e0d0a673b4314e18
MD5 b342eef650646b30dfcdd3cd54ad039d
BLAKE2b-256 00fd83757468759255ec10dee8371b9d3579e7e64d366a5725d6ccc66182bddd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.5.5-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3e64f1dfbc5d4d07289be19c2e757f108e3c2fd904e3b186460f778ff7733b99
MD5 67ba36e96a3abaae5b41288db92667d3
BLAKE2b-256 0c66ff20fc1ae451da94b0f0a9ff20f840fd4b2e01ed395e1064c56acc0f61a1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.5.5-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b2d65c616a0bf12027535fa3e3c0fc77dd6ee447c66b8ac6a428c2623b1fe8bd
MD5 449028a7df27f9bcbcd7de8a92e1bbb2
BLAKE2b-256 615733ef6ad68cde3f3dffcb8c74b2a42cba369c78ddb94f4bab6b8acbb82b47

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.5.5-cp312-cp312-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 79a38979daf52500480b9e30d928c91e2493b54113893b6d8813f76e1af403dc
MD5 826fdb943853a17169a0902281b56dd7
BLAKE2b-256 0e2194e5e41553ea7684a44cd6d3a802b244d7a49c72ccd532555ced4817b67a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.5.5-cp312-cp312-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 7d2457d309e9c4b7033e0a92e33c2cfa1ab6c9d759a3bc31949465e45dd2a6cc
MD5 edb2a026e46b093d1acf73b091759396
BLAKE2b-256 edb197ba51b73a8800d05a9c0fd8c3c92aadc78b606fc68b7da220a335fcc98f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.5.5-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 27494ce28dd0fa99247007f84dca84b00a3c6d2769d06763ad6a871ffa9e6652
MD5 42bb3e60d36b29bd3b4e4932abcb53ae
BLAKE2b-256 42cb27eb328bde2edbbadc40e092cede4444f53c8b5028d5f69f4c31a6b8a001

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.5.5-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 590607c7cd26ebc4098bcb7c6e81c14ecc573044df148a2f1432f684fb78bc24
MD5 a43c01b1d7465ba2b738188808f848ca
BLAKE2b-256 671c83ace09c5ad6424b6b5b358c2bb5701868199f2986fefc1141977af93747

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.5.5-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f796b0226f49b69e94b3da8857991c14699203bf7f473a2bfc594af8403fbecc
MD5 307b16e0dc590ecc68cc5ecf53b218ae
BLAKE2b-256 18516f23c72a41b05b4f07a1a4d84a700c846766c90858fa5bdc7a25c2737a5a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.5.5-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2507f6c47a5c568cfa08d3f4b860113b3650fac50c0d8f057b15041735e9cb52
MD5 85849252012ca69f9552e2450d88c2f5
BLAKE2b-256 350057157040ffdb4e675096cb4c314398b6f9b96a9c106ee231364cf5b40f44

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.5.5-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 25e34af77b3797b31333e01da9152a1b87f39a9e7b9422e072953650bdc0acbc
MD5 b09a59be862999f1cd0b00146716d703
BLAKE2b-256 cfe18b7a1abe8c8917c14ae7ff9f4c587e656dac9cebe63eb09a241110536b79

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.5.5-cp311-cp311-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 de35cbabbbb157cef79ff9993b46b7b1823e0d22d1d255749fdde6e8075fa9eb
MD5 052bb96d6711d6fd37ddf94de125fedb
BLAKE2b-256 4c41ea5065068ef716abef3d8d45e479e861eca5c45ac8afa1115867c213cefa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.5.5-cp311-cp311-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 b967e21d31aade85051b841be545a8cf74a6ae5c52aac72e31b9a308e65c88d6
MD5 95fb35120c644ad4485186189bd49576
BLAKE2b-256 aa68c1fec90d9bdbf2f0c19bcfb9cdcd8da410915761868e6b2eb8205f94e880

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.5.5-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 5f305edbe5b971b88854cc7cb4ba3b68bce369c6246bfd346598576b15e7e0b5
MD5 b3b87a6806b5c752f9a0d561874606ff
BLAKE2b-256 25ddd39f56c326c1b322bae8f91a7bce17c6c7fe03a67174fa24a6b06190233f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.5.5-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cfa2e18a72fe35170ebfc85e337344547bdec1b86ae9a9329c44cefb58d7d634
MD5 6b81446d45d011e4582ec8c7cdb2a0b2
BLAKE2b-256 3480bc39e52654e59db8ff39a7f45d6d4898205deaf081d55a5e986497472732

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.5.5-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d160f504a2e862e79271f358414d429000eb4d25ed3d54fc215ab64adafc0bb8
MD5 f782ba48deca1075130e6a05807fc402
BLAKE2b-256 7ae535e9ba772e8eed1a89fbdc88d8adfbdafd351ed08608c0f012eba8bc753b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.5.5-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2f6640aa87b75be87b16228efec88e2af44a9dcf5d8040300f867373e4ed437a
MD5 071692647e93b18ac2f16f55e2782df1
BLAKE2b-256 c632947f34b712190a3990979789553ad7978511853f3b81fbf9d1c64529db18

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.5.5-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3ec8ecc6f561692fd2a512f0237c86f24c779a667f02b16c0ddb509a61a64561
MD5 22c771754d6b6989d43d273f8e9921a2
BLAKE2b-256 7676f65187ef3e38f117ee8e5bca0e06265ae3d988fcd6f0e052feb82182d01d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.5.5-cp310-cp310-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 79544f576ae0232a998020a839d48290633f59ba0d7184f68950b0ee165f6aed
MD5 d483f9f1cb4933971fb912d6d26630bd
BLAKE2b-256 52e8224bf8a7a4e95eb9391f040ce02af297a3971b36b89446559e3835e4510b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.5.5-cp310-cp310-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 30f0c4a010031b24b6c8b6bf204dd8b1d0c7123e6a78257ecd63643135e7c203
MD5 116206cbaa88baa34c0748fe7d23612d
BLAKE2b-256 b7f70dac61cd4887f3924766cf71a4ff5f3d727277935a048cbca1f883a503b2

See more details on using hashes here.

Provenance

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