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.1.4.tar.gz (4.2 MB view details)

Uploaded Source

Built Distributions

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

opengris_scaler-2.1.4-cp314-cp314t-musllinux_1_2_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14tmanylinux: glibc 2.28+ x86-64

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

Uploaded CPython 3.14tmacOS 15.0+ x86-64

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

Uploaded CPython 3.14tmacOS 15.0+ ARM64

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

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

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

Uploaded CPython 3.14macOS 15.0+ x86-64

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

Uploaded CPython 3.14macOS 15.0+ ARM64

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

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

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

Uploaded CPython 3.13macOS 15.0+ x86-64

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

Uploaded CPython 3.13macOS 15.0+ ARM64

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

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

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

Uploaded CPython 3.12macOS 15.0+ x86-64

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

Uploaded CPython 3.12macOS 15.0+ ARM64

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

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

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

Uploaded CPython 3.11macOS 15.0+ x86-64

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

Uploaded CPython 3.11macOS 15.0+ ARM64

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

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

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

Uploaded CPython 3.10macOS 15.0+ x86-64

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

Uploaded CPython 3.10macOS 15.0+ ARM64

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

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.8manylinux: glibc 2.28+ x86-64

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

Uploaded CPython 3.8macOS 15.0+ x86-64

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

Uploaded CPython 3.8macOS 15.0+ ARM64

File details

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

File metadata

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

File hashes

Hashes for opengris_scaler-2.1.4.tar.gz
Algorithm Hash digest
SHA256 b920db21229d7fade34f7f947cc925214b7bab78391f171e1bde6478f02ac444
MD5 afc1f78da99e69f8755c79f19184617f
BLAKE2b-256 19d3c5f6dcd4e9edda80bdb36ac70a5b0593a2be476acfbc9a2dbb19837edfc5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.4-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2371c5ce7683bfad96ed4057a057ec9d26ce6ae142167c2bbc9151497919cf30
MD5 3050b1bbf2b4a14221bb148789bd6c3f
BLAKE2b-256 6d23275f6becf0844eabcc2144931b7748dd2d9470222de7b49d62f1c068e117

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.4-cp314-cp314t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 babf841a265640c3f8a9819ce8582b3629a39ad6e5f3c6c6e67e6d3de95e2d8f
MD5 3b8f625ee9f1d164865b79242a9a24e8
BLAKE2b-256 7d16901234651a73913e6588794f9ebc2b61bd2e9c630c8d07ab2886a27e98a2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.4-cp314-cp314t-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 3cde8be800ccfc17f5be1afe04430efcb8a8c54b6ae75d2710f4bdefa5ec5c2a
MD5 469a29c3fa0967e56a9aa9e83f452ba6
BLAKE2b-256 268767264f436effd1dddf0128b2aed684280cd3c3684a63bdfdefada7f0155c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.4-cp314-cp314t-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 0b90b8ece7087f3c3d4a34d999e6a8078ce8271d575aeb42aecfb90fd939217b
MD5 2ab6a438eca97229c727f3b768ee1eeb
BLAKE2b-256 83c1cf687a8fd0193d5ac9133d7c5eb9f43ac0fda8ed7a2b9a59653255c08a85

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.4-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bcb41f408c6f328ac56d4f725c94a64c3e7f9d1d4f699b9ffdbdf37a35d3ce08
MD5 a9114df70ce31ecae1fb3661d3b3680b
BLAKE2b-256 815de43a8964ceea83cc9184bac0e7c0c2559ec3f714f1e10d6f15ce882dc2c1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.4-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2737c2d04cead7c5bc206f3fff7f775b0ec20b174666efd5e8bc1462b8570ddd
MD5 c466ce7209d58279df98d67c6f736f8a
BLAKE2b-256 db498cdc0e70830bd51434b3d594daa83aa6385eb635506875f1cefde06fb237

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.4-cp314-cp314-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 90575d36002e92b0393a034ebe8fe25790a86d46632df9b07f029c497367d1bc
MD5 b0364d603e7fd964dae7534376a772d2
BLAKE2b-256 edae3a190d1027e2200587cea59d12fac47639ce4d50ed01d8ee2f72e07659eb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.4-cp314-cp314-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 fd67f24948ce8bf911936e3b4bb5625d0113657834993b158454ac9d91cb1d55
MD5 95aa5a3ff0bda0b899b3051104c93f5f
BLAKE2b-256 e4931f774deb0e0b682ba8c5ba074ba97c7fd6f6d6791aa23f28a3f334ae49f5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.4-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0bce4b7b8d481c806722440b6596131c18428e658974a59f9d35683d7aeaca3b
MD5 b90ec1090cb6a57f537b93ada36ac5b6
BLAKE2b-256 c3ea02b41da57c8413ca044c6ed0c5fc00b10966893af3ed71e13e6952214732

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.4-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 774652ac26ebf01f3c0c47a274a76c0630032ec078a2c2ce25d1964130326694
MD5 352bef833cfa1b0cfbfcae4176e94e92
BLAKE2b-256 b2a99df84bd9ff640b38e927affa385947c2f3f377ffc0ad71a0db9d38c8c994

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.4-cp313-cp313-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 91bcbb8eddda4ff6293d5fd0601ec52003881d8ac3fd05ed7fa5765ca74b24ea
MD5 bdfd6410f423c8e671067908b9621187
BLAKE2b-256 c96edd957ebb5165caaf33efe06a178ebefa0e14838536700fc681e3a62ca795

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.4-cp313-cp313-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 deb7149b0e3b6c8d1ddcd237ed3f01b38616f4efe41d56937056c9421cc28d83
MD5 3388f198b5000e08117aacb9d5545bd6
BLAKE2b-256 401abf5c57837bbdec20253500dd67a580b4561fd833536cfb65e84ab9e2e3d0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.4-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1cbad669416355065cb313c08ece5d7399bfe05a42e3a80c85ab8f1996821703
MD5 90e4997c344234fe10e5001f1919c305
BLAKE2b-256 602999481bec81260d9466bda097a4b15b0b4c4b36e26dce49eb5d374fa4f7b2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.4-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9c212f00fd4b703218807b7cde8a311ef9c44e647e7a9412b8dded3d5b00740d
MD5 1d07cf8b00a33d96e9f9d67b3d2fbc52
BLAKE2b-256 7c428c0d57b960d9362ce19d2958741af673d2966d82b898658ac58fad73e43f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.4-cp312-cp312-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 add5bba302cd65d472ca93e27b3259edf43e7387b10530bd38842df0ac71b25c
MD5 38bbaf763c618026d0d08478eaa23309
BLAKE2b-256 b3006d325f04e77ad94b38667c3d2b943863e54a07e6bd7542de8c6c016f0baa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.4-cp312-cp312-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 82e14a4fcb73ab209cebe228725bf08817af10a439755c6ea390924dad342f38
MD5 71d514dace08a962e66974a2cd08d81f
BLAKE2b-256 40717d6890e3f022d621b50233787161b10f4c5dbce598c5b88f30ae5dfad965

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.4-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 498ccb4f6ba8572eb6401bbe67feb2008660efecdf2784cde0dee2859c43feb3
MD5 c973ba176668aea35d985850ce17619b
BLAKE2b-256 6c06ab2e5ce2af0ad55d183d7e12af68f40260641076bdbae1ffbd9e0ef9a905

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.4-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 18bb6f6a1929224989fbc7be18510d7c6428117f10933d88ee48c7b0dcf5ecdb
MD5 53e382d46226614be6d1eb343c9eb163
BLAKE2b-256 87a92c986bf4582ae01fa1d2506ddfeca7926b584787087f4c1d7e51b217045f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.4-cp311-cp311-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 614a95d00f7cff943c445c966d0a1e8a8eb7389306a046cf36ffd6cc58737614
MD5 12b212f94dfc67cb677579cc8dd6807a
BLAKE2b-256 5491671d80f96c2adac0506758889b3554db805f7cbef3264e11ff8fccbf5af4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.4-cp311-cp311-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 0e41663ccfa0e861719cbc7eda804f3a3e8dd0016beb1d00b8509c0ca0453409
MD5 4777b72202bcd73fecd4f5de06170313
BLAKE2b-256 5cee274d042b5686f22ec58887dc47cf0f4ae1efc23f3d6dbfeef7aeaf21be4f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.4-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a467591d6ac835e0a6602ac4c4871a2307f7b2055b2ef840c5b3b75b60aa1ad9
MD5 44f6f3735083f4ee34631b5c5b9c16de
BLAKE2b-256 4a4258386604d58b35295dc6942db1a683cf87a91cd9bd9bf70b8349de5bfdb5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.4-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 052769fa3991a71296075835de76b38b0f2467b9a0283080f070779b728c1a53
MD5 97dccb120397f895b76fe1e14c67e0b1
BLAKE2b-256 fbd0be4d1de2cbf57085020d7b88e318011e6c184e0d87b4f1ad533f65c38963

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.4-cp310-cp310-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 2ce6c3108098a2caae39b5c35544541e4f4e565440ddb32c36c0e401bf4f44e3
MD5 0e2599b7e44841499c64fee3b4a1d0c7
BLAKE2b-256 ff2c1de20aa8ee0682d65cb3d971e9751016dc1f00465f752e2baa118c03de5e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.4-cp310-cp310-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 a9a58a53f6535bec3ba11321ca3d5fd666ea7533a90f580993b0887394089e2c
MD5 dc5b5716be8768c494b29d92c7fad955
BLAKE2b-256 031f424354d70d98a182b34ba03bc113e21d7b7a5b49d2e247ebac6b2365ce4e

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.4-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5a67cea6e89eb0c45c93ee6eff35d4e5499c99cdc9b758da82ae1a6b207cbb58
MD5 f6e6485cf7d5a8526bfbf04fe96accb7
BLAKE2b-256 222c7eb30516ff14731109b4eaf078341daab128f8f395327afa799c1e1d58fb

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.4-cp38-cp38-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c70b8c5bf9d19408dfa2268bfce7fb5e7f4073d62746ae5b21d884dd19822b83
MD5 38e0de00303a6d24ec0ffd4517cf9082
BLAKE2b-256 27d214725cebca521636236531f5610ca16ce708424b2971d3eade5fd6efbe1a

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.4-cp38-cp38-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 246cef7a53a256d318667bf00c19d73cd817529138f060a5e40750ea4e8c1cb7
MD5 acf874a3b1f6b6c1bb2d140e9037f45b
BLAKE2b-256 56cdbdd9590091136320cd11cba78a05051d1b6d50fad7c877ece9a917e73461

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.4-cp38-cp38-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 e01bfb1826fe1e6eaef3c1f0e96c85655e4ef0633fd338b743ebb7abfff598e0
MD5 2546e9aa2dac2e4bcb14bf1fefcd9071
BLAKE2b-256 9ca843e039b3aed81206cba5122fe39f91bf31a73390880b11c7fb6ca299f7f0

See more details on using hashes here.

Provenance

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

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

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

Supported by

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