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.0.19.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.0.19-cp314-cp314t-musllinux_1_2_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14tmacOS 15.0+ x86-64

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

Uploaded CPython 3.14tmacOS 15.0+ ARM64

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

Uploaded CPython 3.14macOS 15.0+ x86-64

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

Uploaded CPython 3.14macOS 15.0+ ARM64

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

Uploaded CPython 3.13macOS 15.0+ x86-64

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

Uploaded CPython 3.13macOS 15.0+ ARM64

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

Uploaded CPython 3.12macOS 15.0+ x86-64

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

Uploaded CPython 3.12macOS 15.0+ ARM64

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

Uploaded CPython 3.11macOS 15.0+ x86-64

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

Uploaded CPython 3.11macOS 15.0+ ARM64

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

Uploaded CPython 3.10macOS 15.0+ x86-64

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

Uploaded CPython 3.10macOS 15.0+ ARM64

opengris_scaler-2.0.19-cp38-cp38-musllinux_1_2_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

opengris_scaler-2.0.19-cp38-cp38-manylinux_2_28_x86_64.whl (3.5 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.28+ x86-64

opengris_scaler-2.0.19-cp38-cp38-macosx_15_0_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.8macOS 15.0+ x86-64

opengris_scaler-2.0.19-cp38-cp38-macosx_15_0_arm64.whl (3.1 MB view details)

Uploaded CPython 3.8macOS 15.0+ ARM64

File details

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

File metadata

  • Download URL: opengris_scaler-2.0.19.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.0.19.tar.gz
Algorithm Hash digest
SHA256 f7109f27ddaebb3b1245670e733cee05b5569c354b5f5dd3b483402b1953cddb
MD5 a337d98dc9ec7164e2d8698350a66e60
BLAKE2b-256 f54dc50b748fbc905cc24271f5606305fe431c2fe01e3a1a774ff365dd603dae

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.0.19-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6d2e2aac530a3b59e046748e13997916d00380dee43c24ca67dfc2db5a051c8d
MD5 92a90b119858bba2e47dfcb8a1e1c1ca
BLAKE2b-256 1df663ef23157d020101e75b57a19c4f44472ac4353e9a0032ad50564324b47f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.0.19-cp314-cp314t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6170d171a30ebc8620c76fa16e25eab7f43f687b26b5b06db680be35feee3e12
MD5 52cf8437cc53889e971f463d04a2df8d
BLAKE2b-256 2febf0f8c7dedfd0f417e3a7dc26c9e291f91c98e39758e2d8876b9361dfa7d6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.0.19-cp314-cp314t-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 cf53084ee435c8ba180159d06b0d037695c7b79a35084d85f8575ca2e8f02323
MD5 33743b1450f7c43fa81a98c36ea0a895
BLAKE2b-256 a74c521199266237821e6be397c5348158b9a7aeca0de6618306437c36b7e880

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.0.19-cp314-cp314t-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 7b371320f1b9ed8682f6184e44080d6cfcd52625276b583e34db0fd4c4db80dc
MD5 8cb1e0326d2ea44ef9dd7be51f355e58
BLAKE2b-256 4e7a4ac187e1ce05a9a9435e8825e9d2f5b3237ef5e74ea801b5beb953f45877

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.0.19-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 24c14f8aca1801f40cadc483265d3de05f7db11bcfbd37a52f9bb40f08d4cbe2
MD5 af6f8c44a38e4e52feb485c81927850e
BLAKE2b-256 c6940538dd4d5f7d7f43d7a838d06987a977aa16b89e98a4f65c426eb08e1af6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.0.19-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 526004da5dda3f12d3e22d650661f4e979e78c021372934f85c5b8a37e583283
MD5 3f8834681a480755ff687adae5b512ee
BLAKE2b-256 8d730f0216f0bfcc342308d8a521584c280f780699aa8731012f4a357a2f5f2f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.0.19-cp314-cp314-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 a9caafb44c1c818e64385d8915449102226dc19d794e57002fef51de37f418b0
MD5 f3b28715a5e9a72443153dc56d182732
BLAKE2b-256 c702a77ab720302c69e7efa0bfe9341d98e405f90822d2abdc980ffdd11b861c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.0.19-cp314-cp314-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 5d8fe04a1bc9bd432a0f9b004c88d3f55b3aa0164e55d5b1b35db5b296f1a71c
MD5 82823c9b89644123aafe0dfe953827d5
BLAKE2b-256 a4972d1ceded6445bbb7719f615ee578e3bd601212701873715794c84f593cfb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.0.19-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 aece9a2b888a77bb335726c1949bec8348132d750c68c8d35f2bf6e9edaf42c8
MD5 bce365fe133552b84355b2284ba423a8
BLAKE2b-256 0dfa3c7e14eaff8c8ec061f32e56a4f11354e7314ca51e0b6ad60d70dd55e042

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.0.19-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 194b485a1e4311139b2e98a39fb25d19f1c688b40a4104eac2008e96b89fc524
MD5 f5b5ec2c3bc7a5150ca388e707eb4fdd
BLAKE2b-256 1fde6374716884d5f5c1de9f466d3a910d50266e4f4472eeae067e555a1d94cf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.0.19-cp313-cp313-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 0c4e1bb04ebc215567a14dc6c8fe1efb8253d0036fdc1a2f414904dd91762bbb
MD5 ce6c501afa5e5e7263ffccc208de0f0e
BLAKE2b-256 72c16ef38b54124d2b6efb743a09c017acc49fa84d857231d3c346ab2dec86a9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.0.19-cp313-cp313-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 3c95f23b59ffdd8de9785d6d66677104560e351839498d5a908499bb5973f2d3
MD5 f34678a6ad880929b1fd5ae5d85d58ae
BLAKE2b-256 dd5ca7014494b62bebdb9ac72db1458f7f85bd201621ece7385b8f08e43ade70

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.0.19-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 89026c86d304c680409c8ee8cc273ec5d4d55462301f932f2c908b278b759e30
MD5 6e3de5d84dd9e5cc62aaa29c18ce7d1f
BLAKE2b-256 841db2e167d18cc1810161384c8d7988cefc70fdd5965b9b9a23623dd8095438

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.0.19-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1fa8749eeccb98900b668df0abaf471d39417b588a08ae632cb0bf0639edb31d
MD5 018f82cc339db1697c00b3e45f1a9371
BLAKE2b-256 0c6045a5fc66e9fd12800039e79e27193dbcc017da8ae8e40d2f7bbe5fcb3461

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.0.19-cp312-cp312-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 4c27567f60a5e13e94480bce847ae87f1703c6a1f0c78b72e9b457d79de64177
MD5 96fea121065dd8057e370d4eda40c708
BLAKE2b-256 5060e72f3483866a92999458f8d029c11d4f5b14e15005b2bef090374f9d5737

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.0.19-cp312-cp312-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 0eef7f37dd4e8884d8172668c5f23e7ea6f4c63fc0d99ac56ae58b77c153b9ec
MD5 d63fe2979bed891099e680fa269bdd25
BLAKE2b-256 03c25531e4baf34261acccd4cec267cc0b0f20b8878909be915888ab61e5935b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.0.19-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 857c7ed91b4799370f7307b404e759ff1fadfc54d1b0b8ad1ba53e8057be412f
MD5 338b75454f95c4852ba1b5b76f70fbb1
BLAKE2b-256 a30d00f5bc809699b587cbca1a1f583e7680289972d1aa5b933930e2aa01456b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.0.19-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a77b022dc0e033609f432e68b3d5ebbcda338ec122fbc56ecac8708607bc9c18
MD5 66ccd3a8da5b777370e450c61719913c
BLAKE2b-256 988ab33336a185595f8237f82cabbf31020d0987bedaf2bc1c59fd16c4d048f2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.0.19-cp311-cp311-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 12edf628c20fcee2f5753ebfbe8c69d1f9a6643e356d723b2cb92b6e9f8bce88
MD5 8c109bf3aa0d43df7f57f568c5f8550a
BLAKE2b-256 ac3136f64effdcb42ff87489c6e7f549b7248b170b9d0e35032b51a0bd88585f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.0.19-cp311-cp311-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 a943a4efc24f988d838e2391f010b8d50c695cab8e6b225c5c8d64efb6ff5195
MD5 727186923701a3f5b599219a6ef05b34
BLAKE2b-256 aa818d78b113a2e1017cf2fcdb1bac73ee523353c13c9f179d514e232e7a3f7a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.0.19-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 829a31a983229f7d6522ce27f56ba6640523f5baf590a7fede6f2e670e86423a
MD5 fe991fb5e7792a615f13d1eb28700c96
BLAKE2b-256 fd09206652bcfa86aea4cac89c00cf4a8a4d3bbc304675006a0f21596480aaf5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.0.19-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d2aaaa9037b4c659593712b126dda76cb4d96a573fbddbe7922b848852eca285
MD5 32b3c35a7a01ab77669b1ddade2fa4e5
BLAKE2b-256 be44965504cd9373509cbe1f5c22e7d6e854851ad552319352fa50ff45a6b99a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.0.19-cp310-cp310-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 ab9d49cac2074269b531c92f2e4f0630cb604bcc5567d4a54ae5c20a93fadb09
MD5 ab25050dfef24d1dd7f0716acdd4505c
BLAKE2b-256 c1e956296d52608d88cb19f8b5aa9418bbb11bd88e251213c4a2453a35e8c446

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.0.19-cp310-cp310-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 34352adc63d3e2ee6fa5cda64f5feedac72e0b759814b5e9b1f712d3b79068bd
MD5 403b278a2b8168c01ee7dcb3f6dbabb3
BLAKE2b-256 f99746134aab2d2ba0fd298199749fcbe966a65af5aa025919bd36b41cecea98

See more details on using hashes here.

Provenance

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

File details

Details for the file opengris_scaler-2.0.19-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.0.19-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fb92d1777321cb6adce257f1eea9f256b0bab67d68795444b6619c63bf883790
MD5 01339fa0fcbfa96e18b92c0f6e7971cc
BLAKE2b-256 57a7f5265cea7d5b5def4893bfb42e28cb84a19ee8f0fbde46ab8c7c3e4fa5a2

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.0.19-cp38-cp38-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.0.19-cp38-cp38-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.0.19-cp38-cp38-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 aab1a80f70859fd648dfcc21b53aacfc04cc8d9ce8a158bba738e16466924ddf
MD5 29ac143ba751dc53937d53760d65a792
BLAKE2b-256 f01c5290eb8727f2f0db2652bf07ebfde9d0320d55aeb61af312343e21e88843

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.0.19-cp38-cp38-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.0.19-cp38-cp38-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.0.19-cp38-cp38-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 a9ea2a4ba2bd7c7ba5b7d317a89169bd08eb2ac074d69222dad675d7bbbcf038
MD5 bf93b9894a9e9bd52e9ec0c586469a57
BLAKE2b-256 4045842b6e75a99da542327d49266ea4d6b95e42576d4bbaa7dec92abd8429b1

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.0.19-cp38-cp38-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.0.19-cp38-cp38-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.0.19-cp38-cp38-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 43ad2a46906461b87c29693fc07ef5b64c8d635482b61ffe15e7f5e663fe42ee
MD5 8cd3274dd69ebeaebbe058b7f146a84c
BLAKE2b-256 a98b41a4a413dfbfcd8f0e3953b5b98e49360040d78bb78d87f93d7a6abb30e1

See more details on using hashes here.

Provenance

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