Skip to main content

OpenGRIS Scaler Distribution Framework

Project description

OpenGRIS Scaler

Efficient, lightweight, and reliable distributed computation.

FINOS Incubating Documentation License PyPI OpenSSF Scorecard

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

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

What Is Scaler?

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

It provides:

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

Architecture

Scaler architecture

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

Local Quickstart

Install the package:

pip install opengris-scaler

Create config.toml:

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

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

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

Start a fully local stack:

scaler config.toml

Submit tasks from Python:

from scaler import Client


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


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

print(results)

Learn More

Project details


Download files

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

Source Distribution

opengris_scaler-2.5.0.tar.gz (6.3 MB view details)

Uploaded Source

Built Distributions

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

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

Uploaded CPython 3.14tWindows x86-64

opengris_scaler-2.5.0-cp314-cp314t-musllinux_1_2_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

opengris_scaler-2.5.0-cp314-cp314t-musllinux_1_2_aarch64.whl (3.3 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

opengris_scaler-2.5.0-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.5.0-cp314-cp314t-manylinux_2_28_aarch64.whl (3.7 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.14tmacOS 15.0+ x86-64

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

Uploaded CPython 3.14tmacOS 15.0+ ARM64

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

Uploaded CPython 3.14Windows x86-64

opengris_scaler-2.5.0-cp314-cp314-musllinux_1_2_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

opengris_scaler-2.5.0-cp314-cp314-musllinux_1_2_aarch64.whl (3.3 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

opengris_scaler-2.5.0-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.5.0-cp314-cp314-manylinux_2_28_aarch64.whl (3.7 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.14macOS 15.0+ x86-64

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

Uploaded CPython 3.14macOS 15.0+ ARM64

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

Uploaded CPython 3.13Windows x86-64

opengris_scaler-2.5.0-cp313-cp313-musllinux_1_2_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

opengris_scaler-2.5.0-cp313-cp313-musllinux_1_2_aarch64.whl (3.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

opengris_scaler-2.5.0-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.5.0-cp313-cp313-manylinux_2_28_aarch64.whl (3.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.13macOS 15.0+ x86-64

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

Uploaded CPython 3.13macOS 15.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

opengris_scaler-2.5.0-cp312-cp312-musllinux_1_2_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

opengris_scaler-2.5.0-cp312-cp312-musllinux_1_2_aarch64.whl (3.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

opengris_scaler-2.5.0-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.5.0-cp312-cp312-manylinux_2_28_aarch64.whl (3.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.12macOS 15.0+ x86-64

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

Uploaded CPython 3.12macOS 15.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

opengris_scaler-2.5.0-cp311-cp311-musllinux_1_2_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

opengris_scaler-2.5.0-cp311-cp311-musllinux_1_2_aarch64.whl (3.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

opengris_scaler-2.5.0-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.5.0-cp311-cp311-manylinux_2_28_aarch64.whl (3.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.11macOS 15.0+ x86-64

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

Uploaded CPython 3.11macOS 15.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

opengris_scaler-2.5.0-cp310-cp310-musllinux_1_2_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

opengris_scaler-2.5.0-cp310-cp310-musllinux_1_2_aarch64.whl (3.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

opengris_scaler-2.5.0-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.5.0-cp310-cp310-manylinux_2_28_aarch64.whl (3.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.10macOS 15.0+ x86-64

opengris_scaler-2.5.0-cp310-cp310-macosx_15_0_arm64.whl (3.2 MB view details)

Uploaded CPython 3.10macOS 15.0+ ARM64

File details

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

File metadata

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

File hashes

Hashes for opengris_scaler-2.5.0.tar.gz
Algorithm Hash digest
SHA256 fa30c00d55542770cc0894fc4ed9e16a2caf9dfc2dfb5cd1bb240e835fe2d7e9
MD5 02e5ad8dba4da0caa9cf618384a913fc
BLAKE2b-256 003cdb85d0d7e5142c8801b9c5dab23fba29f40ade54c8b8a0830e27bd4bdc78

See more details on using hashes here.

Provenance

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

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

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

File details

Details for the file opengris_scaler-2.5.0-cp314-cp314t-win_amd64.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.5.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 ab32651622f04c3805ba0792561e515c8130a216d37d46c679ab7722a0e08d39
MD5 a5d5191dfcfbac4a814a4e865b70cd48
BLAKE2b-256 7fabb61d953f0a5b7545d79265b6d88b0da805d57485fcd40ffeebff13611382

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.5.0-cp314-cp314t-win_amd64.whl:

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

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

File details

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

File metadata

File hashes

Hashes for opengris_scaler-2.5.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d75cdfef6b04521fddf1eeae85705e72060fad0c253e6b6024bad6387156bc25
MD5 9baa8fbc2c3f93364286af248a46c97e
BLAKE2b-256 811f61ebb43004b70d9b9d1b0f192385c320faa9f71b04afd912dcf173c42a10

See more details on using hashes here.

Provenance

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

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

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

File details

Details for the file opengris_scaler-2.5.0-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.5.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 645ac1530b8c35fa79a58e50e31dccc64604290c92e3c54a148b152f9fc2c600
MD5 50a7bd31592be7afb3005b1f452f3f11
BLAKE2b-256 332d4de4efd745461cd148beb5edac66f681d416e5617b9ca019f8b9aeeec3ba

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.5.0-cp314-cp314t-musllinux_1_2_aarch64.whl:

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

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

File details

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

File metadata

File hashes

Hashes for opengris_scaler-2.5.0-cp314-cp314t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3802392240ffaf71325eda005d206515e3889347ef156192ca80e7a8b3a41380
MD5 dcbc01a451cad08ff809d851a836c1d0
BLAKE2b-256 77d3c8d34db0d95e25a4c36345a85d409d387a5629c3c16bea0b307b87b7a600

See more details on using hashes here.

Provenance

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

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

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

File details

Details for the file opengris_scaler-2.5.0-cp314-cp314t-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.5.0-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 cd1e4f51fd31b3d70ea89e604afadff8d663c674b404608442f3ec4cc5447124
MD5 63dd0e4438f1305f534292a4a89f74eb
BLAKE2b-256 4192923ad499b2f935203e4609d6a1cc3e47e54bac3278b758f7f1fb715f298a

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.5.0-cp314-cp314t-manylinux_2_28_aarch64.whl:

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

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

File details

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

File metadata

File hashes

Hashes for opengris_scaler-2.5.0-cp314-cp314t-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 6b6fa8fc1d38a62cd96db4d1434129108a1fd4e4561e02d8f68dabb440960b3b
MD5 64c9d42b69bf23cbd8961382d0a987a1
BLAKE2b-256 e084a3c25d109574c43503aeeb212dcb8eabe407f3eab7b2a3d89c43e9f46d84

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for opengris_scaler-2.5.0-cp314-cp314t-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 f9e9a2479cce157c135f005a9a2305022b531280f21fb7c713394cedc99b3785
MD5 aa3c2ddd78e7146ddc07f542f9226d05
BLAKE2b-256 724174069c7484508cfa7cf43d37062292222ebcbdaa82f9cb8dee526819af5f

See more details on using hashes here.

Provenance

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

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

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

File details

Details for the file opengris_scaler-2.5.0-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.5.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 825640576ae295c7223ad2877598eabaf9e7f901712238e99b7ecebd52874461
MD5 891a66e6c9596ab5ad84819ccfd82221
BLAKE2b-256 b943c77fd88143d1e1c22491759c3b497ec45cb3f4bfbd06af30463424921ef1

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.5.0-cp314-cp314-win_amd64.whl:

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

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

File details

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

File metadata

File hashes

Hashes for opengris_scaler-2.5.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 677fd773f0ba60119bc9c73e04c7c31e7aa08aeeb8aa2aaf9f0abdd3b9ed7562
MD5 6143b1732d59865a45961682522f84d2
BLAKE2b-256 b96c30363a9bdd35a00be430c4cb647fc915bd5a8751765dcce9610554c719dd

See more details on using hashes here.

Provenance

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

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

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

File details

Details for the file opengris_scaler-2.5.0-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.5.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c388ead3159a86f497d2d46a6b87ed070c10403039ecb382ef8c5809cc682fbd
MD5 91104ab03b4fc2a54ee59c3363d369f2
BLAKE2b-256 6bbe48069696cc3d5a5cbef9c25e6f3148604f7dd0b5ab818258415695457607

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.5.0-cp314-cp314-musllinux_1_2_aarch64.whl:

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

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

File details

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

File metadata

File hashes

Hashes for opengris_scaler-2.5.0-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 09cbd647bdadaa11fcb97246bcded542e5eb403452bfe14f285c0f909053b796
MD5 9846d9fdd9ab2e46d566fa2fd241532d
BLAKE2b-256 b8b51be6b413e7045222bda79605b9e418ed97b8dacdf6cd6e7c65b3920691b5

See more details on using hashes here.

Provenance

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

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

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

File details

Details for the file opengris_scaler-2.5.0-cp314-cp314-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.5.0-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ec0c38939bb63a5c564e18c3cfa784bece47d7e61575b1075e5b3177677ee79b
MD5 b036c175e00310cfa1600a2a38981940
BLAKE2b-256 adc52ea0a2d122de6c3dbd517eacfe5ece435da06b8b74203aa2b80b1f51537a

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.5.0-cp314-cp314-manylinux_2_28_aarch64.whl:

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

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

File details

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

File metadata

File hashes

Hashes for opengris_scaler-2.5.0-cp314-cp314-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 f4a900b8242647a027c0a1efa169a6a540504fe71b790eb91fa436a49334b3ed
MD5 669d4ed718e2260d93d9d1913bd70e46
BLAKE2b-256 39d34d3f59ec9b2d14bf6fcf112405ca633136ddef42a606810514a017561dcc

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for opengris_scaler-2.5.0-cp314-cp314-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 755fcedc9f1ed3e1360c95a2ba5507be85d27d93241747e8e936bb5e5fa86b58
MD5 c9ff5de4500ca3511f07cf0ccabc3264
BLAKE2b-256 deca1cb044e12bea95b3cd90fd47eb7d02c9ebbfe2a5e6d2d03652d8d9046ae0

See more details on using hashes here.

Provenance

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

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

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

File details

Details for the file opengris_scaler-2.5.0-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.5.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 97625ec84cfa040d60f40aade0b492be6a928df133b0dd439f3b9f65ecc4ef79
MD5 830c5d7667aca1587e8679c8aadb3474
BLAKE2b-256 90e142ed06fd0e4e0bc24b3f1f3a04a4ba10166e3938a5b205efb8ddda1ef467

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.5.0-cp313-cp313-win_amd64.whl:

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

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

File details

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

File metadata

File hashes

Hashes for opengris_scaler-2.5.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a218b4c8e7bcbb76a332a45de56aac79269a6dd9b09032648fb6f48953119d10
MD5 7aa2ce6ecffc49198e868a1e4c22b978
BLAKE2b-256 f6d3bf05cba7bed31464c1b4b03f106f0df3a6b85f7e5192d15237365b261a08

See more details on using hashes here.

Provenance

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

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

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

File details

Details for the file opengris_scaler-2.5.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.5.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ffe13971eaca033e8e9e40909382d465f1c3efe0634d39e0392c75d26e94e4a5
MD5 739a103d164024c2c538df0cdccb6f92
BLAKE2b-256 17b2f847d5f90014176f6269cdf1c95faa899c84f71bb2d6e22e46dfedf90cf7

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.5.0-cp313-cp313-musllinux_1_2_aarch64.whl:

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

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

File details

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

File metadata

File hashes

Hashes for opengris_scaler-2.5.0-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6fdd3af814ec1446ae75126a9de02904e627cf579a09a5ef66314295143907c0
MD5 d2909037c552a0175069a52e7c4ecb38
BLAKE2b-256 726232a702d02e613eb57848a8ed7dbea29f6e0fe4a8b358e16199d96e9c153a

See more details on using hashes here.

Provenance

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

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

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

File details

Details for the file opengris_scaler-2.5.0-cp313-cp313-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.5.0-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 655c663bca61956afb85b2dc8301e17d0216136a0da6ffa74259008a6bf2f55b
MD5 e82763d2e03be3f41a554d185ae791da
BLAKE2b-256 9bd38a2713b8160d2a32264613b1dc41114611772cc80800d50408ef5ec6c5a6

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.5.0-cp313-cp313-manylinux_2_28_aarch64.whl:

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

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

File details

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

File metadata

File hashes

Hashes for opengris_scaler-2.5.0-cp313-cp313-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 939e5045b2deb4945a3a374dde7720aa7ae01e2fd676b4a2bc3e45f8f19bd75d
MD5 b34f1ca76bad4e5cab1bf1c9a6178529
BLAKE2b-256 580c5971fdb0d6da73132e228c88ee71ca1c9f4c46922ef791334d5015451462

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for opengris_scaler-2.5.0-cp313-cp313-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 001267c02a0981456995a2e2c1c38d4fdaf6409dc3d8f92977982a0aebb7e829
MD5 0c114eb45a39b11f945c91032ba9ba9f
BLAKE2b-256 0a097d3de88a0adc7260485e11bc12b05713eb75e72f8635e3a771ef2b6ae5db

See more details on using hashes here.

Provenance

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

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

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

File details

Details for the file opengris_scaler-2.5.0-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.5.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 8c35d418bf2647d694c29e1706f64b39d742dfc914f2429272005502664de8f6
MD5 d8a1199157a90b43489e6d9af51d4d47
BLAKE2b-256 e96f0205ed1a22749e8ccaf2fd726b660ab2c4bc8d3f632e930fb9f663fcfba2

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.5.0-cp312-cp312-win_amd64.whl:

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

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

File details

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

File metadata

File hashes

Hashes for opengris_scaler-2.5.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0e64c870b0ec8b70f36bfcb79fcb54d08156355f85adbf4d8f79443dc7500444
MD5 d54806be98e40f6f3e11fc3ad08e7b54
BLAKE2b-256 f5047338906e683d7af9aa284d4399b394bbed94a2555037397f13a884e0f123

See more details on using hashes here.

Provenance

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

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

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

File details

Details for the file opengris_scaler-2.5.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.5.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fc9aab860d0e25b323af312cddcebcd7754e8a3e92446e7722157e7ac6fb7ffb
MD5 d77cb92ea890459e3fa8fd010113889b
BLAKE2b-256 fd7eb554c52922b4c4b4217ada83d4ef9f5248cf6a2591cc0f42d9983297e258

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.5.0-cp312-cp312-musllinux_1_2_aarch64.whl:

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

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

File details

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

File metadata

File hashes

Hashes for opengris_scaler-2.5.0-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 11f504f8dd0dd0ad80095b6e3d166c10f0eff2076f65edb56f2ce102fae8193c
MD5 6c29cd3cef6557c5e214391597b8ddca
BLAKE2b-256 4bf0c33262a3949f8f56471a484824676e7f67cdd63ce2b9172c0af082005038

See more details on using hashes here.

Provenance

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

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

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

File details

Details for the file opengris_scaler-2.5.0-cp312-cp312-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.5.0-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2a6d8350e0f8b7ab2a1f37c16ae588c798fbb653f5d11baee0f9817d8725906e
MD5 f37e5a45f5d8ee37260e3a087904bb21
BLAKE2b-256 224fd6382f7d16327a5a8e8e2df3ed6c6e083ce0c946d21b417b35046725cfd1

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.5.0-cp312-cp312-manylinux_2_28_aarch64.whl:

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

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

File details

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

File metadata

File hashes

Hashes for opengris_scaler-2.5.0-cp312-cp312-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 93de1a39369f56d51de8105ea5f84090e94440daffe463ab56c56183e1195fac
MD5 61982cbf24e1df343715cc571c7cf3ba
BLAKE2b-256 d037b1be7fe7b8a1dd8e56490bcd140ae97f1790895d0c2690a358315d7ae895

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for opengris_scaler-2.5.0-cp312-cp312-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 5c800c59857a709745dc8078ab68071d325d5bdcfb586886498a2cd23103496c
MD5 7668f857fde301f4ec227687880b9e4c
BLAKE2b-256 4312a6b41e08c304851387067f94e5b73c403e7849b31ed8da2778143a1e39f7

See more details on using hashes here.

Provenance

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

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

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

File details

Details for the file opengris_scaler-2.5.0-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.5.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 eeca457bb4113846b6d3fa61098c12cad0b9c7c79f120c821b397220c9920b5a
MD5 a5cc7bb2f40d6b96ea822979130bef9e
BLAKE2b-256 874b3ef3148e4c434826d4917b9bf2e5b2c6e07315bf9342185074bc65d41f4d

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.5.0-cp311-cp311-win_amd64.whl:

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

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

File details

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

File metadata

File hashes

Hashes for opengris_scaler-2.5.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 03d7620e79f2587a7bb1f152a3234ca22a5f55a5529b1c8e98c52fa56e2fbe58
MD5 6ad933b29dc89964fd1b862077bfab9e
BLAKE2b-256 fe75b3b83e8abc82d13403fa07dad40a3e457b8457853b621530fe41e6479aed

See more details on using hashes here.

Provenance

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

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

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

File details

Details for the file opengris_scaler-2.5.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.5.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 15e4d3d9a34d13e79f8a704e8a15effead904d1c65a8d01a4ba5ed25580efffb
MD5 21c95394b668814dda829b57d8585766
BLAKE2b-256 c522f4d03858535066e94ce1df7137b9fd30a317bf9f77a66e2664667e97b7d3

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.5.0-cp311-cp311-musllinux_1_2_aarch64.whl:

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

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

File details

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

File metadata

File hashes

Hashes for opengris_scaler-2.5.0-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 db34fb88a5aed4d2e1091275d7b71a2b975d4252520be4664840a5b6e55e554e
MD5 1212ff18a0415e0ea52e1e4d959a2db2
BLAKE2b-256 2451bc4948ff058a8d9f923e7508e5cc50ba52f37cb5762775679e0c5d9d8330

See more details on using hashes here.

Provenance

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

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

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

File details

Details for the file opengris_scaler-2.5.0-cp311-cp311-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.5.0-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3b050aacfd6fb60625b0001353f72077e3771c68a5b4201b4a6e7692f9f16163
MD5 892308db01c54bddcb13dad753f61275
BLAKE2b-256 d3a0b2fb8ce799be384696774cc1f57894df96567a228f26337ce94da39f83ba

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.5.0-cp311-cp311-manylinux_2_28_aarch64.whl:

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

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

File details

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

File metadata

File hashes

Hashes for opengris_scaler-2.5.0-cp311-cp311-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 f88063d0c28284c223d007eb28985e21238f6c62135617d31106aac3028031eb
MD5 e934d10e06e48dd4fd2adfc1ac88b2af
BLAKE2b-256 c3dd3ae26ee440ac36077adabbb99903073782566fa5350f6d3b19608fc2b24c

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for opengris_scaler-2.5.0-cp311-cp311-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 044321c3d67459261d3e51a94fa0ca551759c2e0e377c7b06f21580bd44ca7e4
MD5 d40924d0b840cba672214f1fcfd4fce7
BLAKE2b-256 58b134399aa02c253c2182cbe02d3c58872fdb2c2a143010cc952387a360646b

See more details on using hashes here.

Provenance

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

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

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

File details

Details for the file opengris_scaler-2.5.0-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.5.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 a60facee11f3c20d87819d542b5646e1c2ec3150566899e5f9c465d7e2069014
MD5 4a06a9e01e658a50fe24dbdc11064813
BLAKE2b-256 31ff5466c81bea079fa46e66685ea04f72f394a0c3b8bc51669eaa4e42c06488

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.5.0-cp310-cp310-win_amd64.whl:

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

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

File details

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

File metadata

File hashes

Hashes for opengris_scaler-2.5.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f52b0a8e30abcbac7b1779f8ebe2cdacfa29e2efb153ddcbba65a48b4bf263b6
MD5 f51e2b8a491410963530fffd78d42b57
BLAKE2b-256 6ace8d1f13bf7700104497db7923cfd84c5c0f95faa47d52553135eb28738cc1

See more details on using hashes here.

Provenance

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

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

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

File details

Details for the file opengris_scaler-2.5.0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.5.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2adff341bb0615ff4bf402f8687432d738743c7ad9146acfd5c6acaccb643b34
MD5 b9245df3c5ad088224f82907a067c183
BLAKE2b-256 f0eadc983fb9d663e80182aedab1081eda318ef472261885c6691b2c82baf7df

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.5.0-cp310-cp310-musllinux_1_2_aarch64.whl:

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

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

File details

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

File metadata

File hashes

Hashes for opengris_scaler-2.5.0-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 36a4cb4e5dce8d34880573bd381b12e71c6c9ba6de3e56aaa5a7edda87b185f1
MD5 5059ff72e3bfdf5a0f091677ef3940d8
BLAKE2b-256 33f43bd5e4a265f0335ae399bb50ba34b40329b357090f0318c980dd12e76939

See more details on using hashes here.

Provenance

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

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

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

File details

Details for the file opengris_scaler-2.5.0-cp310-cp310-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.5.0-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 30ddb860096bcd484d597509e520309635ee4e68c23eb8d0572ee2e0f829d9d6
MD5 a587fbdb9b2cff67706614e9d826eab6
BLAKE2b-256 e55b5521bea8da5b748b4c13dda3f300870346d902f611bfd3a9308ec23f76ad

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.5.0-cp310-cp310-manylinux_2_28_aarch64.whl:

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

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

File details

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

File metadata

File hashes

Hashes for opengris_scaler-2.5.0-cp310-cp310-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 c25c1b0fc52a54dc4421bec7912498bb2e86d6d7135cd62944abc312ef321c17
MD5 245107014d0efc6d482951e599b82e56
BLAKE2b-256 d1bc2a30a62f8c1e3dc880109de30b5daa1be92d017ee7cd9938882f0005427c

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for opengris_scaler-2.5.0-cp310-cp310-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 7657e8506c326b122dd0c36a9126d0f4b568ddf329e44e838683c61470990db1
MD5 eb467205280a58d64cc7895f621258ae
BLAKE2b-256 35568fa4656170c0f5353436abc7a0fcdd013675c3eadc700ec3c023156847ae

See more details on using hashes here.

Provenance

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