Skip to main content

OpenGRIS Scaler Distribution Framework

Project description

OpenGRIS Scaler

Efficient, lightweight, and reliable distributed computation.

FINOS Incubating Documentation License PyPI OpenSSF Scorecard

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

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

What Is Scaler?

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

It provides:

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

Architecture

Scaler architecture

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

Local Quickstart

Install the package:

pip install opengris-scaler

Create config.toml:

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

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

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

Start a fully local stack:

scaler config.toml

Submit tasks from Python:

from scaler import Client


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


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

print(results)

Learn More

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

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

Uploaded Source

Built Distributions

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

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

opengris_scaler-2.0.9-cp314-cp314t-manylinux_2_28_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ x86-64

opengris_scaler-2.0.9-cp314-cp314t-macosx_15_0_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.14tmacOS 15.0+ x86-64

opengris_scaler-2.0.9-cp314-cp314t-macosx_15_0_arm64.whl (2.1 MB view details)

Uploaded CPython 3.14tmacOS 15.0+ ARM64

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

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

opengris_scaler-2.0.9-cp314-cp314-manylinux_2_28_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

opengris_scaler-2.0.9-cp314-cp314-macosx_15_0_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.14macOS 15.0+ x86-64

opengris_scaler-2.0.9-cp314-cp314-macosx_15_0_arm64.whl (2.1 MB view details)

Uploaded CPython 3.14macOS 15.0+ ARM64

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

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

opengris_scaler-2.0.9-cp313-cp313-manylinux_2_28_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

opengris_scaler-2.0.9-cp313-cp313-macosx_15_0_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.13macOS 15.0+ x86-64

opengris_scaler-2.0.9-cp313-cp313-macosx_15_0_arm64.whl (2.1 MB view details)

Uploaded CPython 3.13macOS 15.0+ ARM64

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

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

opengris_scaler-2.0.9-cp312-cp312-manylinux_2_28_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

opengris_scaler-2.0.9-cp312-cp312-macosx_15_0_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.12macOS 15.0+ x86-64

opengris_scaler-2.0.9-cp312-cp312-macosx_15_0_arm64.whl (2.1 MB view details)

Uploaded CPython 3.12macOS 15.0+ ARM64

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

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

opengris_scaler-2.0.9-cp311-cp311-manylinux_2_28_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

opengris_scaler-2.0.9-cp311-cp311-macosx_15_0_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.11macOS 15.0+ x86-64

opengris_scaler-2.0.9-cp311-cp311-macosx_15_0_arm64.whl (2.1 MB view details)

Uploaded CPython 3.11macOS 15.0+ ARM64

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

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

opengris_scaler-2.0.9-cp310-cp310-manylinux_2_28_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

opengris_scaler-2.0.9-cp310-cp310-macosx_15_0_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.10macOS 15.0+ x86-64

opengris_scaler-2.0.9-cp310-cp310-macosx_15_0_arm64.whl (2.1 MB view details)

Uploaded CPython 3.10macOS 15.0+ ARM64

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

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

opengris_scaler-2.0.9-cp38-cp38-manylinux_2_28_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.28+ x86-64

opengris_scaler-2.0.9-cp38-cp38-macosx_15_0_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.8macOS 15.0+ x86-64

opengris_scaler-2.0.9-cp38-cp38-macosx_15_0_arm64.whl (2.1 MB view details)

Uploaded CPython 3.8macOS 15.0+ ARM64

File details

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

File metadata

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

File hashes

Hashes for opengris_scaler-2.0.9.tar.gz
Algorithm Hash digest
SHA256 4acd13e4228ba6e2bb8bcaa055a7fd32574da6d3d3c541d05095e2769b0d666d
MD5 75373548cfb625d2628e943055e45370
BLAKE2b-256 7bd896fc99017823a774a87747632c0d5e19680d93ab44e41918f85add2d008d

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for opengris_scaler-2.0.9-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b4eddcdeeb567a2783f9514d27e9ed5f86e7f051d061449240ff3b568ffc8f2e
MD5 80e7a9b37ba80b0dacc213c287550ec4
BLAKE2b-256 93686cf24857c0a01f16ecb6527b6911351073f5fe2ea8a07ca2cf5221d0be0c

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for opengris_scaler-2.0.9-cp314-cp314t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 29656f003ffaee91cc7bd6cace557dc1680011253b67dd7c3195d26a0f763292
MD5 2a407177a9b0c283db8932b2adc98566
BLAKE2b-256 9376280c3e3a4d0b394a683e283892b5c4e8527acf8ca814fc68c3791b7e371a

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for opengris_scaler-2.0.9-cp314-cp314t-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 fbbb1b26e5491b6a9506559049ee34f447c34605910dda7dfbbe80619dc2a272
MD5 4c250bd7b0a47cfaa1e11ee467f9756f
BLAKE2b-256 753d802ac09b2dd3c5382a21f6f4245fbcaa554058434bf3409e2b60cdc241d7

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for opengris_scaler-2.0.9-cp314-cp314t-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 56343a2cbae2a4132514f74328ebc65ca3b3caf415bfbd7aed9a8e24ea498ffa
MD5 c5de9dc0fdef46cffc540b7bea102112
BLAKE2b-256 69c346931261d0db730aad4cc0142958cdcc232299cc3cf61877404e6f3a78a0

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for opengris_scaler-2.0.9-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3cb1a08fa2839b461551ca907d39a72aa794a8b5821022ea3e133237433ed808
MD5 e64a38a47310edcdba987c9c16228fad
BLAKE2b-256 fbaeb27cb95dd532f8b4a2da9e2722d1c3817ca6a5a6cf8ad491a23cc60aa3ea

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for opengris_scaler-2.0.9-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1f5ee768df3235689ded32eb5528f7bf8f304c9df40239483b765584fb11f60d
MD5 541658dbb75900cad6d54e8e6e2b533b
BLAKE2b-256 1bfb94738366c9c9455ddf066e301d64960b0085c7b10460c181fb44f9cd8de5

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for opengris_scaler-2.0.9-cp314-cp314-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 fb9086a359278592fc293f148efb41eec8ee4d957dc5a7d2b4154327acf0c844
MD5 7039ebdb9a22f9df0e44d6177e949c78
BLAKE2b-256 325d1b3bb4f035542f152bd85ba546a1a2b8729f1caf26bb406b97c04fb73a0a

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for opengris_scaler-2.0.9-cp314-cp314-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 1f203d3d0c186518bf1b4c7e87f54a6b0fcdaf63dcb472967c21c75ab6de86df
MD5 8d767f55304b7313aeeb19dded3f9293
BLAKE2b-256 cedd1da8a361290bbe25f6131481deb8108bb10cb89f92eba7b984bd6ad30bc4

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for opengris_scaler-2.0.9-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 46b129ab75b2ab30f21cf5fc79a1a049830c723a5a093f9e1fb4bd439e70ebac
MD5 93149aa5c8cd758138cf390059817953
BLAKE2b-256 b66e57fe1f68c483ca87dba725b5e04bdc29c67b4ec5f9e0880848426951462a

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for opengris_scaler-2.0.9-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 78e0cd83c7e6a6f2491f72a474f145dfdb29d562327d4aed8eda2716ba6a1bd4
MD5 5dfcce47a280d4ddea7d9b32f28b8950
BLAKE2b-256 b47651013f2bf7c006335b84f96718182086fbb59a41aa12fd577dfd2cfaf967

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for opengris_scaler-2.0.9-cp313-cp313-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 ae6adaf4f01571a63321e2bc59ae5d331c099af7ea6ea5006d92c9df3fc7f802
MD5 1d3cc06e8dada31d3b882d1c300db7cc
BLAKE2b-256 c5b50ea2e71efdf0addf605abbdaa6f38b003b098e22c20447fadf3edd85475f

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for opengris_scaler-2.0.9-cp313-cp313-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 f230f081ec81a92428107f0868c96945613f8e4faea5082992db6bd857f21442
MD5 80c5aaf110426c81aecd08615278bd68
BLAKE2b-256 ec7dc23891ace449e150ec33ace8c569680b455b254849310c2988eb2b994900

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for opengris_scaler-2.0.9-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 20d9b795435ac21b0c3ef83fd287deab63e5ad4e5c99a44745305055a80ba564
MD5 bff9e111945e8a16320833a61e903b34
BLAKE2b-256 a9f54eab427e74516ab239449ef304cf52e99f01159119825a336f175b41c6e6

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for opengris_scaler-2.0.9-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 572dc7e835cb727264323759e5ac639c38a2e86ab87a24f4640986b0175104fa
MD5 a17f5f6397514f0369c30d6d8a0a0c0c
BLAKE2b-256 fdc1abc4e6bd920a59171c7773cc565c74d2b88198127119cc493ab9a59e5072

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for opengris_scaler-2.0.9-cp312-cp312-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 3608f654e60a15aeb7c9a700d17aceb2e0915ab92c038012142ee17a1fa9c77c
MD5 1af3766680f2f7a32668c510ef8274b4
BLAKE2b-256 6a7186327e679d6d8f35f0ea975fe9d22cbd50d3aac3486c218c278bc528eeb2

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for opengris_scaler-2.0.9-cp312-cp312-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 5cbab010ec62e165d833259cd1d3a5b17cbe730e977613a3e95241032d7acb7b
MD5 3f95b6b91f9765eed06dc23ae27d52eb
BLAKE2b-256 730f49b3f2e4c829cbb84a017c52b33b4f7ccbc46ec69d205b70c00339574813

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for opengris_scaler-2.0.9-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 74301fc282ab78edb1ce2634b28587bbfeb8e7a7beee69c480fa84d9ee5db1cf
MD5 1667b1dcc03304ecf1b8074519c145df
BLAKE2b-256 45f357624c6ed3981f7175a28644dd61f547c9cb72510a105e21e78d3e63078e

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for opengris_scaler-2.0.9-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 fb655b50d23c57aef5a14be668b351d25815ad60367b4af5111bb60f9a41549e
MD5 0d23e2473ae946aeb50e2c8d0ac57bd2
BLAKE2b-256 a8e8be4c6896c2ea67a7c593996b6bc0478023fff7b0e677bb6b98d53149d0dc

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for opengris_scaler-2.0.9-cp311-cp311-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 e23190489b03addbc23e656e6fc7a9da7f5dbcfa1081526c1b2842bd2bb203a2
MD5 d2386ca12d9f701b324f3cd56f6c0688
BLAKE2b-256 499d5b022267d92e2cdbe52ca030c451bd510110d59707863a39ae7732eee8e9

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for opengris_scaler-2.0.9-cp311-cp311-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 9623aeae649cf257d71ba56ae01409890e598db5cc7179d11595acc293191440
MD5 f496702b4f8816598b16d12a21e959de
BLAKE2b-256 08adee44441a26f97dfa6ac559bcb9591237a893df1573ffc97d7d12d00fae1f

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for opengris_scaler-2.0.9-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 850f821d856c899dfbe6c53383209398a9871878c5267a8e187e9c24fbd502ed
MD5 2b4b04f158babe9013233373ba513796
BLAKE2b-256 423652d686b1b5df474699603959b842aa8ebf85c0be98873b1fa9b13def7535

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for opengris_scaler-2.0.9-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5b04f24ae34e0bdbc70ebd694fad0ea5d3b97cedd6d23f89a6e234b3108d1ac0
MD5 c71ad6246ea419c2f30c2ef96353aafa
BLAKE2b-256 f453a66054963660417abc9dada2b3f663ddd3e5d1df78449b3cfd3384c3fbc8

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for opengris_scaler-2.0.9-cp310-cp310-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 1c05dbec8013a9d4b7b32e0916de11eac5ab7210b74065659e3bb28f3f06afeb
MD5 a6ad37c8a99cf780cb49318f85aaab44
BLAKE2b-256 f88d409093896e7b8eea96dfb48863d194ca40b9837468115ea823d04ff97bc4

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for opengris_scaler-2.0.9-cp310-cp310-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 f84be07656fb6cd71f0dde23dceba7eef4eda9d8b7d0578ba5c24c62f5c9216d
MD5 b147a4c46d83640c48c8a8659ced5b5b
BLAKE2b-256 c3d5707e53470f5dc986f9dafa52a470998454f664c4c5cba0375c4659d35857

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for opengris_scaler-2.0.9-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fa0d0f05aa97d92c7e4f5cbfc50b6c1e005d7fd8f7e1faf8faca6d8a5ccefb7d
MD5 f84d508e63d87cd031e11400696eb267
BLAKE2b-256 fa6754ccea7d783dd3e658d469868b091e44da25782c04ccc13b731f2553aa70

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for opengris_scaler-2.0.9-cp38-cp38-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 901f75a97237be76795dadaef319cde07d5a4a20a003de8dc40518d12b852a39
MD5 773943375f8ad3dd55c1f456f975ef7a
BLAKE2b-256 1ee3bdf3483d04b5a045d304a0c753e8ca0bcf913dcc51c1fbb6efc749067cff

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for opengris_scaler-2.0.9-cp38-cp38-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 cd4699a23ecf7edea101f8eafe04d2dd73777cd502643f088ac92862e017f7fd
MD5 c9807d77ddf203c1994370596417d195
BLAKE2b-256 aeb1835188fceca5f24d3c0d7a64dce384a4ed41aa2f0b19e14a4036823394c4

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for opengris_scaler-2.0.9-cp38-cp38-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 4b1f5a0fe50e8fd89ba8b9422f42427f5e13f23512bd6739526e07261b60fd1d
MD5 0274fbf913134c63a660a8bd3a3c0878
BLAKE2b-256 a3ac2229181d2c217ec9c54ac5b17039f24a98a4568b67a33662104ff2957490

See more details on using hashes here.

Provenance

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