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

Uploaded CPython 3.14tWindows x86-64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.14tmacOS 15.0+ ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.14macOS 15.0+ ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.13macOS 15.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.12macOS 15.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.11macOS 15.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

opengris_scaler-2.4.3-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.3-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.3.tar.gz.

File metadata

  • Download URL: opengris_scaler-2.4.3.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.3.tar.gz
Algorithm Hash digest
SHA256 1113a836624362c9bb610263fa85aaf1aab62cdebdeab618469f803e5444f74f
MD5 836a77de46f0d714c521b91b7a152121
BLAKE2b-256 041a9babaee6e3e34589c56cd9172037e63709327d392682a9387316bdfc7e3c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.4.3-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 47732b4b556348d66ce1db846073dfd824d474d73ef12fe3013dc5e8846b553c
MD5 783803d88e84d4bfb16c4fbd4ad26915
BLAKE2b-256 d9cbf0452377eacb6b2691da8b26f8a1919a1d9c8ef8705d205bddff1f9fd9ee

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.4.3-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 174e6cd5f477c05597e24f47e058f54b92570c351c45c0356f070bc5ee675c76
MD5 3a172d40553ab9c4962200ff4688c6ab
BLAKE2b-256 cd2c4455440b3ec80d894cbf96031a31964f552f8484223527682d77a028e5d1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.4.3-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f2f57f396275121ee2fdf889c67299459ff4aac64f19a14f1a34c3576df085a2
MD5 7e4c211dd5460d596f4c39cd234fc4e3
BLAKE2b-256 a2947abe396a204038a240999439ab870e77147920bdb2712a579f7eb802929c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.4.3-cp314-cp314t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f0c53d4a1c633d53dc932291d1100ff80ec48600a2c27db94f172ccd42945e05
MD5 5421f8affab0c066fa89e23f28b97e4f
BLAKE2b-256 edb811fb28832f54b04a89362fce02e99ce14abaaa19feba757e120a59e64ca3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.4.3-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0aaaa6851521235154fa310531b1a6fd48eb8b8b536c1efec921a9d160a99703
MD5 7e81a18449ce07d5158e86f9d4ad9aea
BLAKE2b-256 c84f49c844a7c214a16eb27ab06138a9d62e41e28562517ef4170182ca8577a4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.4.3-cp314-cp314t-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 0d753da44927b0de9301605afba902d7c4040e5ab839b54c0384fb8f2ca3211d
MD5 07fa7e37b477ca1e4114ed1c37805eae
BLAKE2b-256 6177e9ae3dc8c3c0ed0e0e8a1bdd50556dc274c71a3b09a3f8793cced404dee1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.4.3-cp314-cp314t-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 6eb859a42befee2b23b4a2b40d5dbbe0e8f4d95f5e1c5dadb346c4ccfec8c624
MD5 f397ad39915c2cd71691e77f33742747
BLAKE2b-256 60f83d0644bb0c0ceb9442d3519b14ea2cefeb212e86311abd253cf9a6f84ab4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.4.3-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 20b7c0c649ad85a9144f378f9c1d0b7a292b81be2d6de8f790daa8c5e382af0b
MD5 8f59c9fef1c538569227791f6557225c
BLAKE2b-256 ca43d8ae4e6262d940a644fc52a21bc6582f084e5716726b195957f85f9a7b49

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.4.3-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 378ea5fabbc28c953a2affe83b6c99cc7c4b7c5168d782db5e8d7a926db2387d
MD5 f37e6c8f14206ecb44f5538fc07066da
BLAKE2b-256 986c36691ceb24080dd3ac41071c985a218181e25d102e7de39a1d746bbb4173

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.4.3-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 499477f1275c789c7c95fb0a0d19e297c8d129c1c191aa5d359de2dc18e50ce5
MD5 07f8cc035c68ddfb82a05719e6ece47a
BLAKE2b-256 1767e9b4eaf7cfd2db2b82aee8bf02e33de0b08fb17785dae2da9704b46d0d78

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.4.3-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ef3f394f996063887140e9b01242930d1345f2d4f7d61a9bfa3451b37e668283
MD5 851681afc8762d464d2974a8d8b9f769
BLAKE2b-256 eb32d4163861ca10aa4c018c831301db8ce273a430a07cbd2c8c8a27db5492a8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.4.3-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d5b8dce1e075fdfb3ed06719da59afefaeec72e95810c4ba297325e3a6a8f84f
MD5 860c7b2d055d1893d7abdf8c68380ad3
BLAKE2b-256 e2b7a9084d2565179773f1b58593e0f049ab5bb7b0f2be56a3a3f83f83d1cffc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.4.3-cp314-cp314-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 34d1b3c6655a5adae03693879108caeb595a232168c6bef3830c2d349aaf27a9
MD5 5123a2ffaa892d54d749cc5e6bac652b
BLAKE2b-256 a17699bb038bf7944109f588fef342d52a21fbfd0eac0be55ce2abb19ab5e923

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.4.3-cp314-cp314-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 8849b6e4a61f96e3c45e31aa140db21130fe22127d02f5013a2d803434227fc8
MD5 ef9d701817f8e3c9337da5d39ddd5dca
BLAKE2b-256 9700958b50f39da27891d55eefefcc0801dccee3e76d49e923f9d65d26551f9a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.4.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 122128019afdf7699f485c9444aaa032fd932da9332ce85f6047e34cf8461201
MD5 0abf02033d55cbe3a59b860a1e1ccd81
BLAKE2b-256 3e7c6b27c8a4daf8ef68f05a62fac98bfa8ca781104fa5ed7fcd22d0bfd0767b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.4.3-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cd3212a98701c285b8593225dc7ece90c3fc935406db36df313742952136210c
MD5 11793120c057d631e87dff6bf94bf966
BLAKE2b-256 1d411ef7b49fe9f840a1038db3891c222d9cca685bd45eeb97697cbadb71da51

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.4.3-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6b75ccb337801fc8aaef3f8a0fbe1ab564910966c7a68fad9a478eb5cbd0ac9c
MD5 d0e9c79e9c7f64845d7eeb5d983a78e9
BLAKE2b-256 c90ea8be72265e415fbec2ba69ff517b533723739ab601c66c76884a4e9bc875

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.4.3-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1ab3df2e7ee0eb9cbe78a8ea66dae1511edb7e91f0a0e05a349b7501118a45fa
MD5 fe06d69121d30cb53aa796c1be4a5693
BLAKE2b-256 f50233fbfa00c1ff8d0c921af3cd8b6396bb927f47a641acb9fac86ae8a70fc9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.4.3-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7d929b598ac1fed285d0d3b8afd03b6dcc673438ac50181eb4a6285e2db5f713
MD5 cf5585b50190ef710dc596ce4ad9fd67
BLAKE2b-256 9d82356a690df2d70f636ced64a41793874842a7161aad0f606a5e9653193606

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.4.3-cp313-cp313-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 3086e7115fe352702a8f1346992e21223ac44646cf626f94b7ce4e9e75fbc17a
MD5 82d80023284f4dc6b7a1059b6a1ddc0c
BLAKE2b-256 7eb5607bf99e43336a8cbc9dde5b1fe6190a031f6236b692d73dede59cedc575

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.4.3-cp313-cp313-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 3b4a473aa7de81fcf2854a7c27af885724d518644df4539323218f594d9ccd3f
MD5 963acfb4ad6d88e906583ffc64d9db3b
BLAKE2b-256 d7efb8ebe083909e7fe6d46b3e8e42d0609a267a250a8478ad43442015941fc2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.4.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 06e1da5f292f9c2922f813496b960aae2cdebb8ca8b38be4d2bf5a6c032147f4
MD5 2da9b4ed7018c46641a2264c005a2508
BLAKE2b-256 43417995b92ef9837085263882850f74b54d1ec4e3fdadf4320f12d34dc4bd60

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.4.3-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 896d73512cd485d099883081459ba0ccbf763b35e109bce92ca5cd828ed9d7b9
MD5 a365afea73e1c56f004a0a37f558786a
BLAKE2b-256 5d3b3c25df98d14f8fb2677dd3a34b731f3e583b2496d97b786bcd3abf68856a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.4.3-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 652bfa5260d6c3b16e7bb521e2acca98e94db57e4d9f8b7b32974c7c4e74ec95
MD5 ee8a37d98b08100e8cc9672dda18232a
BLAKE2b-256 5ab93fe60897b3a69578efc149adf6e4eaa9def624e8de3f9225a2fdd6011118

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.4.3-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 65a8230c6e0c6612a3c0206b6c98e7457fb8bae017dff48c19c3d0224c160bbb
MD5 7ca3e40850a7ecb52bcdb763475cf697
BLAKE2b-256 16f811584cf2148fefe7d655fa93fe2b0580c22bb2a015be77b6ece3b0afadff

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.4.3-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7f9d62b746a1aa3a7a96d5e39a8382fdbdcd8d4740360202fe081cd2d47caced
MD5 e5fdf4ded15b5aca3c32b31effb29975
BLAKE2b-256 79201d7476cb0a6c1b2b49078f81b697d5bbb001097a7b07bc2fd54b5343cbfd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.4.3-cp312-cp312-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 8fd7600acb2f6ef7e42fd91f43de6131ff39f294dca3a2a35aada5f8fcd09653
MD5 6d79a1809810027d516c2e2d7aa8e32a
BLAKE2b-256 b1a36e98c58b12650f684a7895248714364d432b7ad6f44ad74e5b15d3a8feff

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.4.3-cp312-cp312-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 2c16b7ed4825c4e602042dac29f8856b980f0a0805e63eca57d5b963ab863f9e
MD5 b27de3c9b852aaf9fe9e9933913d356c
BLAKE2b-256 8eb927750ac626b7ba228322259b5bf76baeaed98463f815365d46750a9cc573

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.4.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 44b5a4e9d444ec1aa77bb58d3d53aa0bf9ef686be731737b825bd35143968f52
MD5 77386c5dc147545ed28974680e363979
BLAKE2b-256 bcb1b91da4d7e486253f369532fbf4c71bda0694dafe795cff9935d9cae3afcc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.4.3-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 71e1bf2fc3d8641ff04819e3c359f29ebe9f2c2928c4ab2572865547448432c1
MD5 784072401c274e51c69db8efc5ea7c9a
BLAKE2b-256 ff1802fe6b3927713257f71dd739e00499c0a83eda4f2053506978f6f0662ef9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.4.3-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 913cdd21cb7279061e17fcc3eb88de4d12f44eb8d73fa0e0f1a7ae2d8fed8207
MD5 106ded2da61e5dff68fc4dd100f0bb5d
BLAKE2b-256 f737ac8f774a3e593f1319705ec0487d71885a39c5957673c9289cc902d204c3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.4.3-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 92397f5130bb5eedd407a2175ccbbde5d5738aa858529eb7d68d2fc04c817ed6
MD5 2fe1516a6548510d35fa543910682770
BLAKE2b-256 012222b2186e54a76abc7b219590134217430d1c43124c50199b31c4b991dd33

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.4.3-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4a3aa9ed90c420bdb5a88694d2be61c37742e867a7c5b4cb9557bb21e620a2bd
MD5 e05c589d1f2cd4a316960bd02b635492
BLAKE2b-256 ee7d578575c46cee083a73621ae70c0dbb05781d0163dd069b8576c94c20ade7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.4.3-cp311-cp311-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 2d4dcde6c17f67aef46ccafe3abef9fdc591176bd2c1258b52b58147169dd49d
MD5 a192c693da2aed2400df6caf60489b44
BLAKE2b-256 0f3a6a55c303463770ae3a698fa7998e0e7fd1f5c2740686530e1bb18e47111c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.4.3-cp311-cp311-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 93d6e117c3fdab2c18629a321998ddebcdc9dfdfa57e6120009eb48b743b701b
MD5 d742a983e406643e5b3f75e08313eed4
BLAKE2b-256 42161c4d61ba43c7969dbd5e4f9a78a04aa1a4890a5243333d6f8b9611956c72

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.4.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 806f6512cacf73a5449cd4adae5688a1cabc90520ccb131b3e384b1f73ea0786
MD5 90917827f19bedf2cbd76fabc8a308c3
BLAKE2b-256 4c398ec17d400122d1bd1518764b10393c6ecdb664828fed50ceaa61d5096218

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.4.3-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b39bd08c54cfa2a7a4783ac2ba39337c3f593200eee33b8f7eddacfc3b3dc03d
MD5 efe88327901efe120a6a9987d22a4ad5
BLAKE2b-256 f4c8e8392e121f3ab9f1d7b8acb4f85317df10d85e7cf84d5e66b776fc2311fd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.4.3-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 34a943fc21f4e430e250d17ab22dfe053d0963a97ddc65dc03bc65d8f1c55ab9
MD5 237a207683eef9ec6fd62ee660cf5c2b
BLAKE2b-256 dd8a4ad38fe422d5a9a06535e82aae888fa87d52907df5f2000ace540f30b8fd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.4.3-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 402ffdb5b58eecb25359a83ac891c9e97c26523551cb1da705a0352cfecc44d4
MD5 102763563bc2460ce98876139c0da60a
BLAKE2b-256 e5e534c2d438f45d10a9d5714d5a807b30588885523fd57d6808b74b2ae54660

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.4.3-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4f6fd7be3c770a6b52406b404c0671112691925e74a279bb344ad34f9878cdb6
MD5 b9dcec0e8fdef4aba1a94ec87f5dc87a
BLAKE2b-256 688e7286a60737c856a1297c3d9b0b1c75408dafb7e44cb9f9b0c3638ab98431

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.4.3-cp310-cp310-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 66d729b806bffd90bb6fa190d37f3466d17999aaa4c52a18966cdb50228abaac
MD5 0948803641a44cae065a56014b4fe0b7
BLAKE2b-256 2f5a120f0928756f8903cdc4937c5c6110814beb73c7460f856002569de871ae

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.4.3-cp310-cp310-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 8b13d243ee989b7832c27dfcd6c28ab716e671404f0fa00e0c2aad1fbe5be3f2
MD5 5c5b32f62c219c9badf0542d6b9f2217
BLAKE2b-256 569de9c811b3098f7a50ddfa33642a514a5475c7902b5ba643faf2d9b4565aaa

See more details on using hashes here.

Provenance

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