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.2.0.tar.gz (4.7 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.2.0-cp314-cp314t-win_amd64.whl (1.0 MB view details)

Uploaded CPython 3.14tWindows x86-64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

opengris_scaler-2.2.0-cp314-cp314t-manylinux_2_28_x86_64.whl (3.6 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ x86-64

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

Uploaded CPython 3.14tmacOS 15.0+ x86-64

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

Uploaded CPython 3.14tmacOS 15.0+ ARM64

opengris_scaler-2.2.0-cp314-cp314-win_amd64.whl (1.0 MB view details)

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

opengris_scaler-2.2.0-cp314-cp314-manylinux_2_28_x86_64.whl (3.6 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

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

Uploaded CPython 3.14macOS 15.0+ x86-64

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

Uploaded CPython 3.14macOS 15.0+ ARM64

opengris_scaler-2.2.0-cp313-cp313-win_amd64.whl (984.1 kB view details)

Uploaded CPython 3.13Windows x86-64

opengris_scaler-2.2.0-cp313-cp313-musllinux_1_2_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

opengris_scaler-2.2.0-cp313-cp313-manylinux_2_28_x86_64.whl (3.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

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

Uploaded CPython 3.13macOS 15.0+ x86-64

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

Uploaded CPython 3.13macOS 15.0+ ARM64

opengris_scaler-2.2.0-cp312-cp312-win_amd64.whl (984.2 kB view details)

Uploaded CPython 3.12Windows x86-64

opengris_scaler-2.2.0-cp312-cp312-musllinux_1_2_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

opengris_scaler-2.2.0-cp312-cp312-manylinux_2_28_x86_64.whl (3.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

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

Uploaded CPython 3.12macOS 15.0+ x86-64

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

Uploaded CPython 3.12macOS 15.0+ ARM64

opengris_scaler-2.2.0-cp311-cp311-win_amd64.whl (984.1 kB view details)

Uploaded CPython 3.11Windows x86-64

opengris_scaler-2.2.0-cp311-cp311-musllinux_1_2_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

opengris_scaler-2.2.0-cp311-cp311-manylinux_2_28_x86_64.whl (3.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

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

Uploaded CPython 3.11macOS 15.0+ x86-64

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

Uploaded CPython 3.11macOS 15.0+ ARM64

opengris_scaler-2.2.0-cp310-cp310-win_amd64.whl (984.4 kB view details)

Uploaded CPython 3.10Windows x86-64

opengris_scaler-2.2.0-cp310-cp310-musllinux_1_2_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

opengris_scaler-2.2.0-cp310-cp310-manylinux_2_28_x86_64.whl (3.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

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

Uploaded CPython 3.10macOS 15.0+ x86-64

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

Uploaded CPython 3.10macOS 15.0+ ARM64

File details

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

File metadata

  • Download URL: opengris_scaler-2.2.0.tar.gz
  • Upload date:
  • Size: 4.7 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.2.0.tar.gz
Algorithm Hash digest
SHA256 546e98b63ea291d0a1469531a8c739b8e197bd0f88eb45df5201687500462b56
MD5 29ce25d1c83aaeb47c10d602b36ce150
BLAKE2b-256 007d08afc23ec262a98a7c414583ae45c20c6da43b83c4dae6683325cd691943

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.2.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 e64d67e9fe608ceb8c014295b47d0ba1a07a650168e43791f9f703891869f5a0
MD5 6efc4af9f49e1966e2db0582ffe9df56
BLAKE2b-256 b84168aa0e82070e1a651cde7a9c77dc3272fd553d746e3586dc4e3de09ce641

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.2.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2f02a95fb42034d1e268bb983a205c98ca72cacb82c4690851563a655c1ebe0e
MD5 a44424b5b056134b296ffe1c6c9cb5b8
BLAKE2b-256 d8b4997265ff0caa47ff254bfefa3a4e30c258c247295d57d3ddc322eaa676dd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.2.0-cp314-cp314t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c6dcfb9eba33076ca6f6ec6a353716c5a71dff31e3f7218eea8dde62aa4419f2
MD5 238ec1b72fd6871e52d0a3b482ac11c7
BLAKE2b-256 db41342f230fa17666e350db207951243644d7ff45fc10a93e9a49c832338ca8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.2.0-cp314-cp314t-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 5aa377aae07e0fd8f9fe6e9df8de31face81229bec78b4af89ca56696a9c5fd2
MD5 b9df89f0a7c5e5464dd4c67cda40160f
BLAKE2b-256 5ddec38c76388e584bb781859e3cc45cfab26c6364a9b59bfcb7a9ac34cd5174

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.2.0-cp314-cp314t-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 874d807272fabb7fe547517fcc41e24632ef0decdb60d354ecbb29186022ca9f
MD5 f03c6df1fa2f81739f2a5fef38422ebd
BLAKE2b-256 9a44e2d1ed42e553ebd10635e458d439efe14b03b889d1c9e8862c13cb0673e3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.2.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 6ef047e1e00f400f9dbf5316c31872bbb2c14a1809d899a6cad870544fdfa381
MD5 514864f1e6dab6c6d7eb4a55a84cb87b
BLAKE2b-256 ec50645f96876639420b282b25bd6b1e411fa6feeef03d3f362a02de74ba7090

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.2.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 95e6eda70e4cf345fbe37115bbef5a214e2b43ac5038ba33659b2120f256ca73
MD5 5dfddcfafa01671c589c6ef9d91f97df
BLAKE2b-256 1039a1d737c4cf5ac0dac7dc33f9448409d14617eaeb3308df27d97cd2245531

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.2.0-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6459090dd3720e61d71babc70cdbc163937d59cc58fad8f12fe8f4410907b3dc
MD5 330fa5173fd950d5beba81743df9da23
BLAKE2b-256 da9ed9df3f30e4966e4d58455f6c742b8230bcfd903f18ec61e76e88ea93e3aa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.2.0-cp314-cp314-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 2762ddfe7a29b81289c4e6fc39652670bf00fa8582133659e44ab5588c73424b
MD5 4b7d91b5e12410e10d528da1b6b1b8b4
BLAKE2b-256 051eadfe77d5dae06e201679b250709b8795ae409bb6db5b34c8c0141ea44141

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.2.0-cp314-cp314-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 ba5199896ae44cee5a70e5c2d11d1b0df12a01f53f7074c92955bd31ee8f4975
MD5 3bbb61af2b3f6c69c6e35fa253a076a5
BLAKE2b-256 9d39162bab845073d8417ac2406a8cd964daf3a5189b2f0fc03cb3a1371a8e5c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.2.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 6c27330987d9062e182d1d876aec761658900b182a55c4dfaa0db934a338f078
MD5 c5def970dcee90acf4de566f6f8c6f2a
BLAKE2b-256 c7ae2d62eefc7f8e5a0abb94545595985e95f8cb4133935217d45e28e3faa011

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.2.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d20e8add44e71ab23cadb05e6de8ec8656b4421539f5a3a3600bd7c5bca2e4ff
MD5 c7259b0f4d56f7d5933ca19b5095dfdd
BLAKE2b-256 bff240c24582cfc444157299feb03dae7a227fa554163745f582fbfcd4274f3d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.2.0-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 558eb706c363b9057b8a3b26e18598494db3860f66cb4c3b420e3b6ec285bb47
MD5 1284743b4f6b03edaf97a803f63aec9f
BLAKE2b-256 1c4d61da04a4fcc2709d171da9d82ad250f22d19d862e7aa0be6cf7a1a1f468d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.2.0-cp313-cp313-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 32f1e59e32beb02f5e3df2f58d14425afb13788d02011891f743e5ae03c1de26
MD5 35bfe38a819718743689141f360cda8e
BLAKE2b-256 5fccabafc762d4f93db2b37c6a002aca32c75590e9d84a7cefa75da2425fd682

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.2.0-cp313-cp313-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 d8cab27952aea5e72fe00a7da10ccce2a1f0814c2f023e2836766c630d66a900
MD5 1da7a6da5fc430ab66824074348b1b6a
BLAKE2b-256 582c11307b7e2790553626f7cc5b692a18e5d07cba05325c055506b41ec9e165

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.2.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 092c7a8fd60ddad57916bfdcd368499635db7e4c7c2afcac8f340bb0b52b5b54
MD5 9cc90f96b95f258912a13cd9ba6681cd
BLAKE2b-256 d460d034c7c54addbde760e76d4007a364eb98ef5ea64da6dba7bb7762336339

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.2.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 53d635f9ed526a2546323ca78e65920db3c722b39cb3d4cfdda642dd56e2f037
MD5 73a831167934010c80ae0bd47511932d
BLAKE2b-256 66392a940cd756adb4f3f49f532d39cd8df85b86a879d72637daba3d907805d2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.2.0-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 99e8ba9f18cbadde615e72d773f0c2f4da17d706dd7fa21aaa3b1cdc68ca3dd5
MD5 da9a6cdbc1c6450365bf044cdb69090e
BLAKE2b-256 2f8e0bd10ea1183a9fb56a47a39eda208053a574530dcfa85e6330ec4594f435

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.2.0-cp312-cp312-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 899f9576a22c35a5214933649bb54f08728f103dd33353097b2e3b7749839a58
MD5 07545f436d0bdef1494d513a80813fe1
BLAKE2b-256 a26a283b5d3152273b5a658f7fbfdc4cb46abd1e28b4092c6b62e1ea61453f00

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.2.0-cp312-cp312-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 1e830f1194a33950ac419f0a0e799fd619a5f27459207f8af844e0d38b8d7424
MD5 455c3207185714338ecae52088d9c08d
BLAKE2b-256 fb4e15beb34f909d0320ffc6683d08c5caa610deec3e8582f3dde05ea0f0e876

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.2.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 d8ef90b60fdf1695bc7f17e41592156d5952de962f5c793ad1e9d0c1d17b484b
MD5 412f3e075a964366249278bf6effbe70
BLAKE2b-256 85aedcefbaf36e96b0a9d85da0ebbeb2f24593c85cc131df7427b5c5c903e594

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.2.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5c6f859a037c7b4941cc51b33247e6bcce9b3808444e2aeb488f4492fb78100f
MD5 9f800a332a8991938406a4d0c026f468
BLAKE2b-256 745b96a85feb9d09d3c112451b1d4caf17abe9934519404f409a13c652fe6fb2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.2.0-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c3859e4f9663271c471bae1fa22ccce7589be1da5ff08031c0158f0ee75a50d1
MD5 283a8168aa3337b90aaa904e500c9439
BLAKE2b-256 23d6d35dc8a8fe1b705b5b38b099c6e91690e530c0e7f73b8eaf421644431d2a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.2.0-cp311-cp311-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 42a43e821bbbaa01380f89b841a1a87c07de0f075163ae0aad9ade835cae369d
MD5 c5786c3fbe988c86bae569eb3c938797
BLAKE2b-256 f0dd283dbb4e5160a46a1975de37deb68b46e676563016d45cd7a3c54eb0e359

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.2.0-cp311-cp311-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 d083e64a1a9e8fb80874f8b563f87cd2d207026a55a6cfee4761b2fbf00354f8
MD5 833c64b82b69192aa0e7a23c9ee45635
BLAKE2b-256 4f39c63c062314d5ec6f80cad711fdbecc5d519e8df4aacdb3c31e37c5f5aac1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.2.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 ace39aad4a6ee675367bff5d31547301f2a054ac64b12f1aa2f1b60eddfff774
MD5 ff7975dba2b0ba66afe3ba808268a29d
BLAKE2b-256 a22df86f9e33bfecdf87ddc1ff524710fc2b07030d773edd8a74f8d00620cb36

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.2.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 715025bd22194753139dc9e88c4a26acd76929fc8e738cb320e2a6b45ced8317
MD5 ed822e17fde54bbe0963ba7fa8b9173c
BLAKE2b-256 1e0a67075acb5ebb593181041e10d8fc32dd8ab61c6da331c51c7463e5f5652a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.2.0-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c2e50ff06b9cf42aaa5e7167a2adcdf029bb1a33453364b65177b9432b73636c
MD5 eb4fce8eb8c21568dae585b9f1fcede8
BLAKE2b-256 ec8994bb8bf4a6034c93203e762ab23bf5fb4ffac861cc3d570e513a09444852

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.2.0-cp310-cp310-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 fd83650ea3964fcd5dd69d8ee51f0f80bb2ceceaccc0327e051c250bbb2066c3
MD5 6d9c410df5a597171821decf95a6df3a
BLAKE2b-256 bbba75fe56b75ffbecaba0c2d84a83dd41985fe25ff9d3f409607c62a908ad09

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.2.0-cp310-cp310-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 c6240b78b7b382bd20a8b864de33407f5a564af0d9559e2f64fc20e281e26eed
MD5 563380e8c9c2a00d17d91d3fbce36372
BLAKE2b-256 a317999c35281315f915f759ef57db1afaae1c05f329aec693e83d2944b707a5

See more details on using hashes here.

Provenance

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