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

Uploaded CPython 3.14tWindows x86-64

opengris_scaler-2.3.3-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.3.3-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.3.3-cp314-cp314t-macosx_15_0_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.14tmacOS 15.0+ x86-64

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

Uploaded CPython 3.14tmacOS 15.0+ ARM64

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

Uploaded CPython 3.14Windows x86-64

opengris_scaler-2.3.3-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.3.3-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.3.3-cp314-cp314-macosx_15_0_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.14macOS 15.0+ x86-64

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

Uploaded CPython 3.14macOS 15.0+ ARM64

opengris_scaler-2.3.3-cp313-cp313-win_amd64.whl (987.3 kB view details)

Uploaded CPython 3.13Windows x86-64

opengris_scaler-2.3.3-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.3.3-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.3.3-cp313-cp313-macosx_15_0_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.13macOS 15.0+ x86-64

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

Uploaded CPython 3.13macOS 15.0+ ARM64

opengris_scaler-2.3.3-cp312-cp312-win_amd64.whl (987.4 kB view details)

Uploaded CPython 3.12Windows x86-64

opengris_scaler-2.3.3-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.3.3-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.3.3-cp312-cp312-macosx_15_0_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.12macOS 15.0+ x86-64

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

Uploaded CPython 3.12macOS 15.0+ ARM64

opengris_scaler-2.3.3-cp311-cp311-win_amd64.whl (987.3 kB view details)

Uploaded CPython 3.11Windows x86-64

opengris_scaler-2.3.3-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.3.3-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.3.3-cp311-cp311-macosx_15_0_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.11macOS 15.0+ x86-64

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

Uploaded CPython 3.11macOS 15.0+ ARM64

opengris_scaler-2.3.3-cp310-cp310-win_amd64.whl (987.6 kB view details)

Uploaded CPython 3.10Windows x86-64

opengris_scaler-2.3.3-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.3.3-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.3.3-cp310-cp310-macosx_15_0_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.10macOS 15.0+ x86-64

opengris_scaler-2.3.3-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.3.3.tar.gz.

File metadata

  • Download URL: opengris_scaler-2.3.3.tar.gz
  • Upload date:
  • Size: 6.1 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.3.3.tar.gz
Algorithm Hash digest
SHA256 e0cc93ad6c495888864e68755d0343dd486c5cfbfaf5c22c7e007e4a686c97d0
MD5 2d67e58dd010aacd80746bd70c6419ef
BLAKE2b-256 e3da955292e69282482c596dc683051c67796aa8f686a51f543a8d6eb3c40b9b

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for opengris_scaler-2.3.3-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 f38613a36db2cd814f0cb258caa1dc605054f6f6a8bf91d411489554fedb2c20
MD5 4e9cb8611bd29f52b549247b241b8c20
BLAKE2b-256 efd3f11c4aeca760a1d27f26abbd6116a056be54c5f40114bbfb7f1dc7545de0

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for opengris_scaler-2.3.3-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 75af7a6ec69acd53ca657e6b9b6d3d38489749427b0fe8019f3a77ee7518f4b2
MD5 e0c088b983679947879b0b9f9b7a05bf
BLAKE2b-256 a0092270985d4ce1d2a689630299796a4d0df49c2d898faa3cab3e5b82c6a5a1

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for opengris_scaler-2.3.3-cp314-cp314t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f039f44049e8461a4c1e243783aa01d4ccb0d71db1b7a6eee18302e261b097a4
MD5 ee8ceba3a57f7dd310cc9610daff17ef
BLAKE2b-256 227400349324ab41744ce534ee2d55e47c1349e0c873c7aa198950f6829c0bc0

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for opengris_scaler-2.3.3-cp314-cp314t-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 0a8e0f632fce7101020194ceb6e47e7b1fab34ffa74ce2b8d801dacdbbc8a198
MD5 00f0a1bc5c9799c51976861d0fe29544
BLAKE2b-256 8928b6808d1a2ffa85dd27ce74c154d2686b83ac7f9bfcb8a3cee8dcba07ff2c

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for opengris_scaler-2.3.3-cp314-cp314t-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 45da4a214e7d3db5a6cac62ce6639d9b5ee5aa6f8546e2a2980097256ad05d22
MD5 722124d2d2b977a35770c88b1c67fc6f
BLAKE2b-256 cadd7c6a20ff0d790f4f2b4b06270a232a0cc8919b1ae831c45edd4395b88da8

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for opengris_scaler-2.3.3-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 f5293116f02e655ed0583550af15647577f6ddb373870fea833d10362c63d4d4
MD5 3ae87057584450d7136f454e76b153b2
BLAKE2b-256 3cf794160da72febac61c149f910d3e03cb914cef0031d9d6604b9efb77e5472

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for opengris_scaler-2.3.3-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2445e1c60cfe598678fb5b12bf5de282c816b3b239db45a8938e2f3c71b17ad7
MD5 a4d477997fa10b57fd752e6e00aa075e
BLAKE2b-256 1295f22b5f7e65c5786f3a5d04eaf2efc2c3b8dfef7b09f2ee884d718c532d33

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for opengris_scaler-2.3.3-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5ab7dd40c00963aaa43dd67231a70dde013a36b1d9b57a73f70ec33df5060dd8
MD5 c14e2feb0ba9b57b369727ef6b36f661
BLAKE2b-256 5d4a57d7e7b7605e66d2cf3cc990ccda465885f78ed9331b8677a262cbfb5603

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for opengris_scaler-2.3.3-cp314-cp314-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 5e6241cdbef7fdfe409a08444552f17444f5da41ff07e8b823d26fae3ab464d6
MD5 b942bf6c6222702ce3c9f0b3c184f848
BLAKE2b-256 ff23c8e04fb0be633b2fd4ee074541985d9a9549db7ca7dc7eea32b0c8684553

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for opengris_scaler-2.3.3-cp314-cp314-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 3f6708bcd44a998e69ee8e96dd26c6f885793870fe9b021131265340b5edaf04
MD5 934f0c201fb96f7763f4ab21ee6f4e2c
BLAKE2b-256 1bccec729b4857ed48c2f71b0d04042e6d0cdae7ddfaeef3728c4f6422d2a545

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for opengris_scaler-2.3.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 68bbaef1d848405242ce6c71f369e0322de10662c95f8e536f319f3c393b9029
MD5 ab7bc8bf7bf800c57fa853782d254cd7
BLAKE2b-256 d09d3415825aed291e691a0bc6a3bdde5e382ac19369c653667069d2e808c4f9

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for opengris_scaler-2.3.3-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c3657773afac9bedc67ffb86b28171c21b9a0da468388d39f974033e6c6b5d1e
MD5 f63769e2c751e5abb0e334bd03b2fbea
BLAKE2b-256 b0c92aca4369f8f894e5076d727147c3489fd2d8d76e4bf081e051a63c910cea

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for opengris_scaler-2.3.3-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e91cd11d84ed3890e9edd3a7d70ea14f130a11bab21cb6f8241a2d99bc04d58d
MD5 91e4d05d9a19ada277981291fff3d9c2
BLAKE2b-256 14028842d9fdb717e8f8ea38e4bcb65255ad043e971fb440cf9196c9a59fd279

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for opengris_scaler-2.3.3-cp313-cp313-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 20f5fd8799ef087b2eed0118c84da938323a9003ed34a1772897a545b9c7957b
MD5 611176ba494740f9489730fd7d033812
BLAKE2b-256 1867b3c48d2f7b75360083732e5147566f17c144d3cfefe82f540fd9c35528d9

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for opengris_scaler-2.3.3-cp313-cp313-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 e69418e87315e36b4092fae14af2fda54a7cc6444d66ab4c7740f6924400f388
MD5 60ece560568d55564761f1717bb945e8
BLAKE2b-256 bfd21180b8f942b778260d181cbfce4f0a4d2c5a58cdc1183452bf36ca353cc5

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for opengris_scaler-2.3.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 d3726435139dd7d40a47509c093cc8888b06959c6df3d459a8be60a10d95b553
MD5 6e10723bcd6213f445a1f3369376881f
BLAKE2b-256 de469c9addff6375e30a07d7beb9c72b6e524b49999cafa48ea4745d0888fcef

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for opengris_scaler-2.3.3-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 53244ff878219800c7c8ff4904d4f3a94d7d213ea0d823f6c04ff9a40385555a
MD5 9cf06a18ef09d7b7c4d2753ab7c9e986
BLAKE2b-256 7f3f703c44d3da97082211bea6882339b26c1f38f95c1c24c96104f9d0e13a6c

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for opengris_scaler-2.3.3-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 68a2e065f1276723f3942e7194295c0ad3c275c146f930382f1fd5824299d0b7
MD5 3b03eb166d79bd6e3c17d7d58473c349
BLAKE2b-256 c28adb2848990c570924ea4a4d3c7fc211269a8e8ed9b6224ec076a6c08c87d2

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for opengris_scaler-2.3.3-cp312-cp312-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 874054a476eb74345d81799099c3e987d59f8358b800ab45015144f56a6c30ca
MD5 b81d668cc7c1f10926e3941b09079b19
BLAKE2b-256 03cfeba94cf9915dca0d958282ceb21752621e7c59bba0b2546786bab666eb01

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for opengris_scaler-2.3.3-cp312-cp312-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 58807f5df59c00c92bcefc7fcb598091668508d78bcde6bf952710bd75494c34
MD5 8cdcbce6f07c0387825c34b4c77d2941
BLAKE2b-256 91da1c08b81d7aa3184ef1b4f65e52beb5c6125572d293b6b1b7790eef2e27b5

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for opengris_scaler-2.3.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 577b23136711ac9eb714bfd068d9a9fae84f0b257007b1de662c722847574526
MD5 78beed4d247dbb5dacfd134d946b0b20
BLAKE2b-256 5ec1cef15bd984c5523efae68716c91f03e07a062c827905af938fcfc187631a

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for opengris_scaler-2.3.3-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ffe19031b98c1e59062a6d1839ca9c81e9d49c3962ee893b0c72fa0e4701db80
MD5 adb56d28cbc44ddca0b7f2e19247116d
BLAKE2b-256 f8effc9ab5bcf1432b93a48fd9f225661ca99ddfdb1f0e18b3045af1dd788407

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for opengris_scaler-2.3.3-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 fa4837e8687275f7a1e80af4365bbcbf6adc7546639b24da96419802238e0012
MD5 00b468a5b3f7b7f8043ad76262e07088
BLAKE2b-256 7cb9ab5f74ebac2394aef1fd323a846f59e5d5e47739d0e27fd6586d2345e3f1

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for opengris_scaler-2.3.3-cp311-cp311-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 61513c58b79fde39b9300685c3d2fb2d24b85218471649adb4320bc83b6b1c33
MD5 e7bd0d6ce482841a16322d9202976499
BLAKE2b-256 9e79fae0d9c6b0b2a1b6495c9d90cc93bac756b31e814e855b915e942b98a11f

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for opengris_scaler-2.3.3-cp311-cp311-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 3ee9da154cbf364bf5da252f7e96a52ccd9fd59b8406e5add13bbfe1b72c1100
MD5 da3106e1aab851f43d4ef6099a9a735c
BLAKE2b-256 652fe218bf826c2aa1190bb99e9c60d60fd2ec9322652d50b08834701c94f05e

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for opengris_scaler-2.3.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 7dc587a16025509fae83a72e12b6f8f60a25d70a041edc2f3680a7d668e58ca1
MD5 546fae36916ce657d4f6a1b6f8184486
BLAKE2b-256 5c91fa61b72840407e96218e1100fea94f92299c73067710861e626cfa4a0a44

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for opengris_scaler-2.3.3-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3dc86dc79d976af19c95adfc0caefeed93197b3a4039a00d0dc6ff0996ab0beb
MD5 0c101f5dbb7df7a102b02d53ada8459d
BLAKE2b-256 3ea27ea02fd543fce8212b4512e69ebe3ba7ee198e000da93805a35237830ffa

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for opengris_scaler-2.3.3-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 38e23adc2d460e6812c6f111ccc86eb5f957a5df17abdfe668e2f5459e0480cb
MD5 38bb8647c7ed54d0b09e89d878879bcf
BLAKE2b-256 74f667edc6510744fd97cda8c7e9ad840f4e9807e50c83dd2f839ee365a47ae3

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for opengris_scaler-2.3.3-cp310-cp310-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 a0c37a30fbec046e2fa43bb69719875b0b386498b1a2cfb5c1b964b1e78384e1
MD5 e8cadbb6ac8337b82b2c700c9255bc20
BLAKE2b-256 a7d4fc0e85b449d2776150f6b4cb0e2f20fd7ab700644d4d8e485110aa325a66

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for opengris_scaler-2.3.3-cp310-cp310-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 08e6191487e2dcf06ce4a34d5e3507fdd819f9215a1987e9a61397d8467bcc8e
MD5 b43c131bbdd00b9790359ea05e01e4d3
BLAKE2b-256 849186dc42578ab627f038cd8f3e9e8897de0b9b58f0194ccfaa557d84c20ca6

See more details on using hashes here.

Provenance

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

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

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

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page