Skip to main content

OpenGRIS Scaler Distribution Framework

Project description

OpenGRIS Scaler

Efficient, lightweight, and reliable distributed computation.

FINOS Incubating Documentation License PyPI OpenSSF Scorecard

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

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

What Is Scaler?

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

It provides:

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

Architecture

Scaler architecture

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

Local Quickstart

Install the package:

pip install opengris-scaler

Create config.toml:

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

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

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

Start a fully local stack:

scaler config.toml

Submit tasks from Python:

from scaler import Client


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


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

print(results)

Learn More

Project details


Download files

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

Source Distribution

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

Uploaded Source

Built Distributions

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

opengris_scaler-2.1.7-cp314-cp314t-win_amd64.whl (966.9 kB view details)

Uploaded CPython 3.14tWindows x86-64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14tmanylinux: glibc 2.28+ x86-64

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

Uploaded CPython 3.14tmacOS 15.0+ x86-64

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

Uploaded CPython 3.14tmacOS 15.0+ ARM64

opengris_scaler-2.1.7-cp314-cp314-win_amd64.whl (960.7 kB view details)

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

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

Uploaded CPython 3.14macOS 15.0+ x86-64

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

Uploaded CPython 3.14macOS 15.0+ ARM64

opengris_scaler-2.1.7-cp313-cp313-win_amd64.whl (943.5 kB view details)

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

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

Uploaded CPython 3.13macOS 15.0+ x86-64

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

Uploaded CPython 3.13macOS 15.0+ ARM64

opengris_scaler-2.1.7-cp312-cp312-win_amd64.whl (943.7 kB view details)

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

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

Uploaded CPython 3.12macOS 15.0+ x86-64

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

Uploaded CPython 3.12macOS 15.0+ ARM64

opengris_scaler-2.1.7-cp311-cp311-win_amd64.whl (943.4 kB view details)

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

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

Uploaded CPython 3.11macOS 15.0+ x86-64

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

Uploaded CPython 3.11macOS 15.0+ ARM64

opengris_scaler-2.1.7-cp310-cp310-win_amd64.whl (943.6 kB view details)

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

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

Uploaded CPython 3.10macOS 15.0+ x86-64

opengris_scaler-2.1.7-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.1.7.tar.gz.

File metadata

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

File hashes

Hashes for opengris_scaler-2.1.7.tar.gz
Algorithm Hash digest
SHA256 4b68d9e6a4b21d83d63f1b2241e26ee51584580441a2c017f945a26e1d08a68c
MD5 3452125700f0914b55577c14e5908681
BLAKE2b-256 889c10ffc0720fff9d110fdc77bc03801427aa582607a2ada65a73bb06499d99

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.7-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 14ee58d3b428f09210c4a25596fbe93242e29f7bd9380e36d380fc049ea2b063
MD5 c666edca841dc60e5b52a506db9fcd7f
BLAKE2b-256 bc9e088766fdeaceaf0b702b1265fd22de96554655cbb72139bf328083f1f241

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.7-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a035b4e962caf3436eaf71ec85c79629d346e454452fe9dfe40657dc537f2ebc
MD5 6a2113fab87e907ff6aeab46eef21e2a
BLAKE2b-256 c4a201cae1c652628d783cb3e7a43626a0387a6a88056dbbf612bbb688b64a8e

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.7-cp314-cp314t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b9e849252f403d2a2915d4e2e8aa556145692b075c5e2ba588a78e70ddcdfc8f
MD5 fed14aed119356ccbf6d3a486651e187
BLAKE2b-256 2f9a2d8301e007bffaf1932bdc0ed0c0648cb9fc49f745ad7b137af667eb282e

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.7-cp314-cp314t-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 de6deedd66e4d179f66bca044d11c359c115648ed7864aa0f9da86973da5694c
MD5 89b24e20c04a688e2255b9956b102fab
BLAKE2b-256 f27d6db9149f7bd40b62cbc21500261d3c13720bf40ab3c46e59f610d1f9290d

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.7-cp314-cp314t-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 d450a8b2b82bf52f2a9b066b7aef59070f7a8e8d2500a21da7bcd3559be9c5da
MD5 0edd48befaec3f3f54f5e98910b97b24
BLAKE2b-256 619ef5f35749e4e320abbd91527ee2811a915afb16faac38c6b9f37c88d719d5

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.7-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 fb6f2a286aa8b2c856552923776e771b3196e42c9ad68f24eb472319c0015629
MD5 932c69b2300141c3aa6293eb7b1d3b25
BLAKE2b-256 cb1be1f1f6b09f41e7b6a7877542e4514adc6a5b5a0ddf6ef2e7abf78f2e49ab

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.7-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 25fdcac54f6cb7f0396ea0f5c195209be23c91aa32e7e7145e5046cc311d2d9a
MD5 64eed60d0504ae0075ebfd9da43cea27
BLAKE2b-256 5cb1c4a9386b2a5cc167e6ab48fef1e80f86498c1ce2960db214293cc21119cb

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.7-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 738dd685d2797fe6af4ed79b858e7522f2780e4e59d92eb45601b0998d1435f5
MD5 7e350626f10a319ea38323f3ab946267
BLAKE2b-256 6d533ffa5a3dd68f0bc20073b4ac5401d93dc94617b83aa30e6d468f08ba1095

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.7-cp314-cp314-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 7772ebd4a362865153d67ea4e77b72584ded3f2ebf1922419820e237f10d8923
MD5 9eb8e0e17102d617c9baa319cee357a2
BLAKE2b-256 ade35016d70f6cc800dadc157c14cb48af5d8408684e7a6961df513aade53d58

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.7-cp314-cp314-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 b8b1b78ca14c3565b082e847f68ce04785fd33a34f5b9a8de01201eacf69b885
MD5 4bd04bec957f11bd290dac2c8ff2b532
BLAKE2b-256 dd8571a8afd6e447f673ab4fa9b35691c2102fa7763833528697548a810b9842

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.7-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 756d3a8c5c7c21388272536d4aec8f1e813fbfebecaf5fb0627641b06bf6249a
MD5 ebfd54b1fd2651503a124ac4b7e8c883
BLAKE2b-256 9a5b12349291f12feef65c15b81ea2881f8dd9916feaecf6e4b544341c95962d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.7-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1562d23631b5cab55972bd78cdf07482fcc996731409f31e5da8433984751fa1
MD5 0332fdc1c7032bb893b087241a0a638f
BLAKE2b-256 b90662e3519aa70977732d1d58bfb5345924e7772685fa8dda213dabee518c35

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.7-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f8218d67d4eb75090ec08b6d896a146dc531add0cf5f9b2db62b80261df0adbc
MD5 cf2f2ce157deed2c61ea0dbee5fc37b8
BLAKE2b-256 a9e2d5a265db0650d1ccc50d7b016d3a298aa6ba8cc9bff405165864cf91621c

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.7-cp313-cp313-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 fde2a2eccf802f7aa3282155c99cec0445d572709ba9e054ace9f1d2a3c6470f
MD5 c54ced90156613c70b541af880db2dba
BLAKE2b-256 c37d1aba943e5c8444a1fb902858dfb9b472f5e35f061d7f78328394b4014060

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.7-cp313-cp313-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 28239a7e8b4d98eb727fb4917a1b9421711df2cf6af8f8877cc9916f4e4cadf0
MD5 283da846be4fff6006923af3ad820c7a
BLAKE2b-256 6941465319d8c4cce04a732ad4043ff7cdca333f457a2a45f93d21235dfc33c2

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.7-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 7a5b2a9f7751d7e176b60079688a974878b5a4e4cf8729412332d3db2588664c
MD5 a2adb9d8dd94b0e24b4364f8651fc9ee
BLAKE2b-256 2c35e9843ae80550f2f10ebbf85106ba08e0c89b6e77e65b6651ca9cec5d324e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.7-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8151491f6e8137f21f2da377599227150fd457476624ad6b86551b43b30f7afa
MD5 42c1c8d47a88f4c1d2594a613fcf1d9e
BLAKE2b-256 57e3932635f1126452561af762c74de66bddad0d257058c0e6da7d467c91ac8b

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.7-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 bf1634ea2ca2d9a3f20013e26cacb9dc94386449256f43052052d6c789e5ef03
MD5 7ab8776e3dd73406f66179af4503e312
BLAKE2b-256 7bf294208ff67871b77606a7f3ab37890dc82a8035a707f684a50c331735f39c

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.7-cp312-cp312-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 2b310cf63d09663d86fb70195196d0b41cc7e181b25f6bdda4f48731ec2a210c
MD5 7e1a6309ce37684530206c086c5f1094
BLAKE2b-256 e4f6b292fb3de9a1ae00226b2ce4f5cfbd146e2d47144bdee18d9e2aa369d402

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.7-cp312-cp312-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 926fa353643df2f98cb3aae39a00d6fe4ba7054692cacea5b238225b152769dd
MD5 732d3ab5cc1e167f8b610ed2d898b7f7
BLAKE2b-256 f2f398e981d1c28cb73ca2c7505d8171cf2b7aa5433d4e40880015d644bbae89

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.7-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 e4690314357a8f44ef719ce299693eae5e49333f4d6330b0c0da6ca71406b10f
MD5 e3d2da3283e768a5c9268099ec1b5763
BLAKE2b-256 4c44315119421fd0b54e2a15b848eee14cb7ae30287a875b5549878c9f174d0f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.7-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cf7ef529bc76fb98348585824868c2a06a59fffd484066e741c27879a388a5af
MD5 6454d9f545c6ec3b67bbb12efc037ceb
BLAKE2b-256 4573d88e919efed19826ecbc210e3ab314e69945540a44fe0d51c7bfe0804ca2

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.7-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a28ae9ac9dba3ef75eb58ff1cd70ae15c3a80406c643fab5d03436da6d412e08
MD5 027a4eded803eef1db6f3791c9808129
BLAKE2b-256 5db63e6cd54282c9069c124e2c6ece444e608f134ef5730b030f7b72170d156e

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.7-cp311-cp311-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 aff8cde5160f678f0841cf797f08fa1f72d3fefeb68560c7805a735474528c46
MD5 987ec345acdf0de3a152ea7cc603143d
BLAKE2b-256 9de93888973152a3f287e287a73f2bde1f8b1cdb1b8387132a942e7b20d283cb

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.7-cp311-cp311-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 b6ef0e31e3c28f2034900d37c6b17c2d68fc73a8d62cc9104d9d38e1f3957140
MD5 738daf3443c766f6e38940e8abc4c646
BLAKE2b-256 386fffc77b956ff5241c42ed3a338da755e97cbfa6ad0887ae1a31e94fb1e990

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.7-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 d5afb845a0f774f83d3bd8c66225d5349e8c783af4f3b8b94ab84968f90f8f22
MD5 95fe59466f42af51d4017541e7e9cce0
BLAKE2b-256 a1d82ac679a57fd3c6acd4da94c6d7c57d27761137b439c3910d375e86b73f89

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.7-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c559bd8f6068f27e8c49114d3dc9d52fffd65a1aa2825a2ceadd55f1a8245ae8
MD5 20db097f8eab7eef91eaa23ef6b9db33
BLAKE2b-256 5696d807670a89b6178efa3d76b271d382485e25772f80a5e1728f664fa7971f

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.7-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 bd839d60d14e6fad6076cfd3b8c30834b705f12c55f9b8aac26a41ba52f69de5
MD5 942737cac19c3b91a61e440cdc2c2ab5
BLAKE2b-256 f1b92bbddec94235df35b70b0a29cf8b0f5b1f4eaeda629fea31e03bd8435da3

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.7-cp310-cp310-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 d93cfe32b1d7b1ddd4ecb82a7edba358bf1173947d32395384fc9a7ca9b60c58
MD5 6a492d412e0bd65b5f8a212c2d5748a4
BLAKE2b-256 8663224d9008c23638f0263953bd070ed4be5c54c8252ed00dbd92c28ce7ce05

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.7-cp310-cp310-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 c552dd3a5740d6950c6433fc06a62b8335c44e91088c460a3702d465202e6168
MD5 884e03b6b7d146635676843bc02f480f
BLAKE2b-256 7dd3a55011dd2387ed3a02b1d87404cadfbabe21f847836d70234a93f9986566

See more details on using hashes here.

Provenance

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