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.5.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.5-cp314-cp314t-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.14tWindows x86-64

opengris_scaler-2.4.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.4.5-cp314-cp314t-musllinux_1_2_aarch64.whl (3.2 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

opengris_scaler-2.4.5-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.5-cp314-cp314t-manylinux_2_28_aarch64.whl (3.6 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

opengris_scaler-2.4.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.4.5-cp314-cp314t-macosx_15_0_arm64.whl (3.2 MB view details)

Uploaded CPython 3.14tmacOS 15.0+ ARM64

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

Uploaded CPython 3.14Windows x86-64

opengris_scaler-2.4.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.4.5-cp314-cp314-musllinux_1_2_aarch64.whl (3.2 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

opengris_scaler-2.4.5-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.5-cp314-cp314-manylinux_2_28_aarch64.whl (3.6 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

opengris_scaler-2.4.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.4.5-cp314-cp314-macosx_15_0_arm64.whl (3.2 MB view details)

Uploaded CPython 3.14macOS 15.0+ ARM64

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

Uploaded CPython 3.13Windows x86-64

opengris_scaler-2.4.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.4.5-cp313-cp313-musllinux_1_2_aarch64.whl (3.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

opengris_scaler-2.4.5-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.5-cp313-cp313-manylinux_2_28_aarch64.whl (3.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

opengris_scaler-2.4.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.4.5-cp313-cp313-macosx_15_0_arm64.whl (3.2 MB view details)

Uploaded CPython 3.13macOS 15.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

opengris_scaler-2.4.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.4.5-cp312-cp312-musllinux_1_2_aarch64.whl (3.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

opengris_scaler-2.4.5-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.5-cp312-cp312-manylinux_2_28_aarch64.whl (3.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

opengris_scaler-2.4.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.4.5-cp312-cp312-macosx_15_0_arm64.whl (3.2 MB view details)

Uploaded CPython 3.12macOS 15.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

opengris_scaler-2.4.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.4.5-cp311-cp311-musllinux_1_2_aarch64.whl (3.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

opengris_scaler-2.4.5-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.5-cp311-cp311-manylinux_2_28_aarch64.whl (3.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

opengris_scaler-2.4.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.4.5-cp311-cp311-macosx_15_0_arm64.whl (3.2 MB view details)

Uploaded CPython 3.11macOS 15.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

opengris_scaler-2.4.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.4.5-cp310-cp310-musllinux_1_2_aarch64.whl (3.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

opengris_scaler-2.4.5-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.5-cp310-cp310-manylinux_2_28_aarch64.whl (3.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

opengris_scaler-2.4.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.4.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.4.5.tar.gz.

File metadata

  • Download URL: opengris_scaler-2.4.5.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.5.tar.gz
Algorithm Hash digest
SHA256 84b35ab515f41de3dbd92e2d1b15bb05a21cf98cc4d8fda3b6cc69cf203ba748
MD5 1ad779a21b068aa4079c8666bb45b9b1
BLAKE2b-256 fa91559a6ca49ebfd38530a6c415c1c63272588c5312f8a8b11092fddb5a410c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.4.5-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 b3881dc73b9c450cd63734687e34e3dba973d0a932a7e5c1ead7763cdf151220
MD5 94a96ec40c04256b4e7d2a2552f34e6d
BLAKE2b-256 bed022472323f272a1929a57f85e6928d1cb2a384f20d5bc8b0246970f1c2de3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.4.5-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 dd0719b3a388f6d97d04a9ccd8e29a1415630a4d5f185ad44ff22bc94f025784
MD5 3408418c469a9a8238eb4963aa7c933f
BLAKE2b-256 2942d4b4c87d5eab4d9ab3086710a02975692a5a29d4dbe3658eb26269207b31

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.4.5-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d7a289376332e3b0d5d77f63c80e6df64b23885224992803ebaa57aa6938b3eb
MD5 82175b43e2dcc5c3fe28a3e9d54a00d2
BLAKE2b-256 3be0a4872e97aeb63c655c35ebcfe0accc2ec373af5d19d878c2a4aa32cefacc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.4.5-cp314-cp314t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2a712ef3682d1ece9dbecbb556d6c811624cc10bceb497608a033e321ecd21ff
MD5 752eac8d8709a69778c355d10b4289a2
BLAKE2b-256 bf76ccd7eb6b806d2e3ea50d281837dcd987d9a5af8d0b824c877e93d2ec13e0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.4.5-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 124fb4b76e4cc4717d29256d3d8f919d453a167b3395b47762c99798fb661cff
MD5 1570f37a32ff00fc6ca1cc43082695ef
BLAKE2b-256 227dfc7b34abcd6607e344dc250487b2d3e55e6aecba923156cc438310f884e0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.4.5-cp314-cp314t-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 73efaab43ce53f02cfe7d8e96d3f2136a9c071c386ae485a1256900546e715c3
MD5 1853e4a51753744cf4c40e20d3ea793d
BLAKE2b-256 6bdb34930db0886b3f60319de266434390a5137e6dd065f0409556a3a29dee8f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.4.5-cp314-cp314t-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 8925db63c01cfcb15859e037fa96bc439f28b55bf764dc85b8a3c9c663ab9678
MD5 480d40365de1aee4156ee1ba593552d0
BLAKE2b-256 3d08d2126c596d6f03830fa18dc4a423de636f0eb306adb87b67447f6f103549

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.4.5-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 fdf6b8b1ab9529f012e0c0f83d7e03e1d74ec5f6b3c7ca854a49b53c9ea013e4
MD5 aef557f6ff035e86c4c457287b907e83
BLAKE2b-256 93b0305d3a81a44bc3efc1d4af1bf71f022a4317a0ac45a18f35507f31c89fee

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.4.5-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a35c2dcde02f4e225d2841f2f790c79b051be8326855a4741d2944a2feda88ba
MD5 0f7e45cfdea1e3d6db18123d5f0f468a
BLAKE2b-256 074d3763be8223941b0a2e5df775d08490dc083af011c92e964f0cfa153d505a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.4.5-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 dfa27fe1b793420a44d82187cf735b3ed082e755e9a163b4e8ed09c8bd809a6d
MD5 2c6097a4049566715bc8c783d7d1e8b0
BLAKE2b-256 a3112522dbc35219ecb10b1d070a209e9c5ed9e560a30bb5ebe6b91342d3bc27

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.4.5-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d0fe8ce14714c68becb27dcbfac2c65ee32d16cc2c042d6e6aca8ed48140a359
MD5 b4c8294b98237c27c6c7e62702bbd5ed
BLAKE2b-256 9c61594113076a9f840ef96a414d39424bce4fe0184a346cde5bd0056ad907b1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.4.5-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c2e5b165b117d3edf2db836f61b66b3ab8a94cc5e4ea76bde1488c269906a9ae
MD5 6f56595286416cff6093c61bd2c0eb6f
BLAKE2b-256 0cacd546c67882576162ff35e5d307d76028a4c1142d2cc6b661da9a32649b65

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.4.5-cp314-cp314-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 f38873ec0e99375ca269ec0dc5f93553e21617db0a804e76bb88d2a523d988a6
MD5 254ab37734a5b1095fa0219d27b8d873
BLAKE2b-256 d9b59a2ebff45794fe00b386ca4b05b517db6f2368c1005ac4f16fbc9bc94bb5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.4.5-cp314-cp314-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 fb9875161989683f0ca38b9f3acef6c58ae2bbb88940419b3c6d2119742137bd
MD5 d2ea59fac224f3e43e9c8ff62a0115b1
BLAKE2b-256 410de12340b22678ade30536e9806fa620d0e0fe018fa42281f46a8be72e8d1e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.4.5-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 f3614f263a9e3d5ebde1b8da7911bc74ef75961001af17b99aa4cbcdce4e7908
MD5 7e531e506676f647af69c0f9cf2d5420
BLAKE2b-256 91e94abbc378331796ec0269cbd1ee78a9f1be76ba07ed10f62a11775e2b96ca

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.4.5-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d23e82004c644c50cd172519d9f785b42d0e5d816864b68154f47671f2cf1adc
MD5 6c91b0810126e5c622a2302c184046af
BLAKE2b-256 a130d3b7ff6520a1f6be40c9139e7231a0a3ba1bb14cd43a13493d2442f375b5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.4.5-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1aa102e4eeabae244ff8383f80c30c0f275cd7d19f2bc95e7dbaf6fc27e78310
MD5 0d7fd8b6d45d31ae8bc30b6b4c4307a8
BLAKE2b-256 ed409822017da08cd713c2788ce79ac2bccf63139e0e8b73f8649caf3b66f7d2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.4.5-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 185377592c7699113a3d15cdbb80dcf8a3f5b4db726c211b999f70e90a2b1444
MD5 d7821c1086fa32e78046e313fe60c81b
BLAKE2b-256 5c76042538e27f46f478b4e4b61e2934de2ee54aac9f767a355453b848f26bd7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.4.5-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0e04dfd13ec50d24df4ed687b8b5271af057f6e8310f93e3a68d9f9ca8b85230
MD5 d2b9365b8991ced6caa5b521300c05fa
BLAKE2b-256 a12d434f17f8e26ef621a98667bc775334b7f6f1797bfa1696444141a2762674

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.4.5-cp313-cp313-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 9a9c3d2ccb8d00c88d14eaffcc0c0c25a1052f39d1a71fd03c147ea408ba392d
MD5 a86d2cffc89d8d853a8cdd095b4c4d61
BLAKE2b-256 6b5c6228d38e57b569c6c757fccf07dc2d8913a55696217d02793bc9eb03c1f1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.4.5-cp313-cp313-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 7372d1bf2017652e7439c84848506fcb516dbe03fd1b085ec2d3743ea5ad95b2
MD5 eeb4fe4434aa14c10c4479fee975e2a8
BLAKE2b-256 d84b63c467ad6e58ecbf5412fae47637bb2fb1d1f8a15151dfab53d4f960cd84

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.4.5-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 f8afa449a40881191c04eb6cc411e4301151efa999e1800d61dbd8fe120f68e3
MD5 1c367933482b46e2380cd3b33b06a563
BLAKE2b-256 38eedc255d0c41e58b659a210b695800b7f33a9cc545004d0efe967eecfb242b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.4.5-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5437a44042f8d6bb532f3a0fdad78bf2f0c8c2a5c3ac39c2d10084f6f40f0b28
MD5 3a359c0f8b77bb2edba33f62a873efbd
BLAKE2b-256 7ffd97884e30e4f4bf4f18064ecc5dda7f7085d7baa823e5c511ba5d711385f5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.4.5-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 11914967969d9e1796d1fea1a78531e44318310c26caf81d0749406f3d70830f
MD5 fd2a519e845de8af2b96ddc23805ddcf
BLAKE2b-256 2fe0bdf5dcb381046e589418e0ea4cd9f6a7e556681900c32c30bddce21f2e38

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.4.5-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 de80ccaf037a2915ef457c47f0742ae14636d664d7fe41b1bdc8339cb781de5a
MD5 d355da22c13879ad6ec99f243d2efd62
BLAKE2b-256 b3743a1abcf0494e42220abb83be1658fbcd6e1e973f23ba941d0d2ae4d3545f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.4.5-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 acc90baec52d8ac0793cde2986ab6ca0f75bb0d496bf15230a275e0267121d1c
MD5 1c78c70e257c8dc098296c6d8c31cd92
BLAKE2b-256 8c5ac4edaf65f9c4e1d3010e9e435cefc9da27673cf4cb374c7fc2b77b210fc3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.4.5-cp312-cp312-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 302bba5e76a83bd82042c2703be15582e63e93911611c329a7960034c244901b
MD5 75c5a317857f3869444ca88292ca2858
BLAKE2b-256 f5834316c4e0a49aba7de08c698041d37f0ab0d137d38fcef0a0116ce090ee9a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.4.5-cp312-cp312-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 d1505c50c126d383739ba50cf7b3699ea3999ecfebc2c853b14212e77177a6d1
MD5 a548e7cb301ad40033710db3546a5876
BLAKE2b-256 47758ff6b4b9dc2d220d7e85839e88146e55ec50940453f13afad51bc4f165fb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.4.5-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 58db6a2b3f8ead721e153757558f33ba023026024daa44c53b5bcea8c294c6a4
MD5 8c7d2d10745dd4243319b4ef9aa76c26
BLAKE2b-256 04ec40a0027c4a928e71bf6c5146d52ebd4e82c533053086edbfc13c8ca34708

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.4.5-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ead3ce5f6aa8cc9a61f66d97680c86678661507d907f49eff5b4a62afb82702a
MD5 5627bf701dce960cd0232a463f485dd9
BLAKE2b-256 e296544d194288c4d193a965466144c2f064365923b94433e202d92844a7a1ba

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.4.5-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1ae59c6c7e8f7424c57e42e01cd177760dd6562aae28a9ae3b003adfd77a3062
MD5 2e592c99244bf357a9fa7c6df067ce9e
BLAKE2b-256 3c5a3d86896ebe8e7b6e0705967a1f9f281bcb4c73d3efa250a6b80c80cc31e4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.4.5-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 32f5a104240fae813464083342b0e4dc98e41d83da26d7351f6d9f7555f9277f
MD5 9aa61b4af3321336378265f2f2e329aa
BLAKE2b-256 43628176993c13d57a92884acc429494ed0824dda040eec4a74cd27f12cc4450

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.4.5-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7b22c3bc454364a300659c74906579fb0c914bea44cd61020558fc318d390562
MD5 af5ce1644589f2b3da9c5ce2dd51881a
BLAKE2b-256 86c4e3818133f84c2dea80d51bc59439a550c2e65716d55917908119d3e16104

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.4.5-cp311-cp311-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 8ad437786eb0d961e7638a05124ccac4a2afeb92539d7c0bf1273e1264e0a007
MD5 ee5f7d212ced238488e1def217a436b4
BLAKE2b-256 76a7d52d41d91de4967662d7fa4df09a1dc22d793996e12b8e387d94988013c7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.4.5-cp311-cp311-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 62990bb409bcd07cb2da8bc521649ecf5ccabb9c3a1db7e4f976fb8aba73c311
MD5 36d0e36f285bcec9360ade9ae1548965
BLAKE2b-256 19e60fd60ad22822737ec201e27c7473171bc60fcf7772ac34585fb483cc42b4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.4.5-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 a2906bd7c3e941c5edd51017f1b28080572c8dcb46e3362bf5badd6aaf9f874a
MD5 d1813b129fc46e9c52a600541515eb4c
BLAKE2b-256 a2145be1256c02aba167931d6adf8a93796f14def9602d84ba8307e11516b2e2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.4.5-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e2fbabc3cb368a373d6e33d8ffa3d5307fbe2e51dca227ebe2a7e4ec1ea7f547
MD5 187fea95244d04563d309d3677e6bfde
BLAKE2b-256 8f9d2bbac5b205a6930a2e9a125c4e1d354ba18e59f9934d151ee4a2cb93a80e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.4.5-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e21bb0526dbda91199b3ee371defbb5c90716d4d044c95874adc2c75f5107c44
MD5 5dc34df92825a3d865706f17459a8c8d
BLAKE2b-256 1d5e1d708f4e49083c2f8be28ba79394ca746f01202d94d0b522ecf340b7ee2a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.4.5-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6d6f470bf1b337e78c0c74f3c4ab7d8f47f74a546be6ded3b68148dedcd9c016
MD5 c1065519ce2c9a40070657caff0a3fa1
BLAKE2b-256 2dcdf874a1bef752ca39bbe320d65b03280f48f7312cf9950c5dcb75e18fed0d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.4.5-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 dba2185e7cd5727b585d24ca22edbb16c79a6980f4c062c4bceb59edc32b7f61
MD5 be984e8c682da63b647c299646f9f5ab
BLAKE2b-256 7bc9ed43193b7a9dd0a97ff53ce5589138f16107be4ca83caab84a3886586f00

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.4.5-cp310-cp310-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 b634b78a266abf5b018b9eafa8da722ddf799835874412ab403997be5ca12f76
MD5 67dc49b2e8e7c6d813af55761f0708d7
BLAKE2b-256 36e39789b2e05961138220e09d82b91bb766dff5224c8fbe2df5617b8e7acdc5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.4.5-cp310-cp310-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 973c70002e192c360166da1e1c2b7aa61930629439ab33d45d8dfa0dc26f37dc
MD5 a33ed7a7c8f6ab6af89db5c6fdf76264
BLAKE2b-256 c85563ccb8243a64c2ada029cd1b5fd64fe1c85a23800bf6c9201f9359fee920

See more details on using hashes here.

Provenance

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