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.20.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.20-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.20-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.20-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.20-cp314-cp314t-macosx_15_0_arm64.whl (3.1 MB view details)

Uploaded CPython 3.14tmacOS 15.0+ ARM64

opengris_scaler-2.0.20-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.20-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.20-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.20-cp314-cp314-macosx_15_0_arm64.whl (3.1 MB view details)

Uploaded CPython 3.14macOS 15.0+ ARM64

opengris_scaler-2.0.20-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.20-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.20-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.20-cp313-cp313-macosx_15_0_arm64.whl (3.1 MB view details)

Uploaded CPython 3.13macOS 15.0+ ARM64

opengris_scaler-2.0.20-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.20-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.20-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.20-cp312-cp312-macosx_15_0_arm64.whl (3.1 MB view details)

Uploaded CPython 3.12macOS 15.0+ ARM64

opengris_scaler-2.0.20-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.20-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.20-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.20-cp311-cp311-macosx_15_0_arm64.whl (3.1 MB view details)

Uploaded CPython 3.11macOS 15.0+ ARM64

opengris_scaler-2.0.20-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.20-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.20-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.20-cp310-cp310-macosx_15_0_arm64.whl (3.1 MB view details)

Uploaded CPython 3.10macOS 15.0+ ARM64

opengris_scaler-2.0.20-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.20-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.20-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.20-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.20.tar.gz.

File metadata

  • Download URL: opengris_scaler-2.0.20.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.20.tar.gz
Algorithm Hash digest
SHA256 4b4c3d6120b64046c97aba410ca91f74586caa2f857e39acd620d6cb85172ea0
MD5 2a79de17ee0a5d3b0653f2fcef8dd07f
BLAKE2b-256 9334f9e35f6c22aa78d90e30d8942bd7950e41d72398f35e57c9ac6586287795

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.0.20-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 834ef11dc038f4f46d940f872579f6facf8781a1aa9435b61f6a54154b386fe7
MD5 3af983ae7010bfa1c9ef0ccb40f4fca9
BLAKE2b-256 dc48f5095ba882f0a8c7bc0c1194be58dedcfbd1a3d99efff4ef4709c89975a7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.0.20-cp314-cp314t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e18b47c5b8d304d588eaca3417c8cbc319a124fd19c6e1fdc527104264a3eaaa
MD5 26c68a0044d86252d47f4bd6fd8c73a3
BLAKE2b-256 605ecc0cf39b525f2c04d0d62df40a827502eabbb6099393094d0537b5eb19ea

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.0.20-cp314-cp314t-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 9864d2453b8f7f7c45984df3e501bdb0eea0cc54fe459433f79f6367111964d4
MD5 538b902bfbd70a8a32dfa21926f768c3
BLAKE2b-256 0a2505f707bf2129eb7bf2ba904e2e223af12b1e8490458809af1d7d78a688e4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.0.20-cp314-cp314t-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 8d1c0925a9d2e795fad8719a6eaebf30c939ee2bd106b99394f6f219b431e362
MD5 13bdfd4dae04396602b12c27cb41c1af
BLAKE2b-256 e6a6f2974804cd363efdd9298e54bb3cbbfef48a4a8328eb3e46ce1d58777055

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.0.20-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 443eaa853cf43cca516618a92bd169ebc49a2bc622dba8bfefadfc2cb1c2ea45
MD5 8e2e0bac622aa9bacb077c1ef73af1c5
BLAKE2b-256 11d1744d86097cdaaf360118454c3fca0ad6c949a8eefe128ec064426e076b6e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.0.20-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 40466f3c5f5b36cea3fcccc13826273279dd0c129fbe0591c8040e47449e7917
MD5 1275bc864892b3555503d08647e27ef7
BLAKE2b-256 b6259a7c8d72f6ff411465b2b0f71f5527c6a6aa8270fc52fdab8d7786822703

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.0.20-cp314-cp314-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 5dc656ca0a52152d390e27a849fb4fd9d6818864d242af49b9a784a08604a1d6
MD5 ddf05661d887dea1abb77f5dbf108800
BLAKE2b-256 1eef5bd8126e3ff028195da32d646330d79abe75a45ff9d1e939ee179f2fb668

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.0.20-cp314-cp314-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 8e50a23aac49ecb9b1f048111f157eeb465024369beb8077a98778fcfb962de7
MD5 d9ba723bb0786aa369e063b3a187d6e4
BLAKE2b-256 8bb80527ee57a20e1ad3d20bb699b463dafa8434ea07d332a0bc56bda81e723e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.0.20-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f5c62dbf5b91b7019e2491534618a81130444bf4201ae467167712c35e7f9482
MD5 2486ae34c913e424f32ad53131665cbf
BLAKE2b-256 5c5bc32b9ebd2e3733d9c03932b0e1bc7c00e826b46a38c253b141baddfff645

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.0.20-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 57d6195dcb3d04d534b8a82f157dd5a77b580cfc10542465f3eae9cf310327e5
MD5 06e50f748d48f40d78170e8cb9bb91ad
BLAKE2b-256 16fb59b7798acd9fda1f7bd4bef5b9bd6520fe99bc9a0a774d24c378b59248ce

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.0.20-cp313-cp313-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 fdb3452a22474465ae3d7b22776cdfa1b7c756ecadafe7fa9f3da88291d4b314
MD5 46158f4b0b0fff12b5d5a5000d7da967
BLAKE2b-256 d1add54a22b6f60b84fc881b0cdad2667ec2011a5831909e9b21a48535b30591

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.0.20-cp313-cp313-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 818b074164cb32d88891fa4630162e0aa0a2ec9c086da05d2c951c4f84664213
MD5 3c7e7241be23f3b0be9aeb9be75a23ee
BLAKE2b-256 e9e679ca3a8d3f0ef51bc968d427bb0e32169f3137d762a9fea5d9a228e2ebd6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.0.20-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 09b77d613ef247c9550f539c90456c7a5a0565dc58430ccda4cc59d58753fab5
MD5 a61b71f3eca0c2b3bd69d23320a9068e
BLAKE2b-256 c548921a0385e811bf483ef04600d3faead7c05a1f342d5e6d0ce9d6bc6de460

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.0.20-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 46b0a7b568a21d5b9f322aac1a995cf5f740b4883c3bc37c9e2d44d61cb329f0
MD5 1785742e3f9bb2395e99f340ec1c2e24
BLAKE2b-256 87879674d2912dca91b028c303c2686e37ecff061643059684e88d974f7cdaad

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.0.20-cp312-cp312-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 abf5a779419e4413ef51816b10c5c2a838cb911a66892d50d408a6c50bb55cd6
MD5 117b89a05fff8e85296198cdb4525896
BLAKE2b-256 4ced1c1fbfec7508c5d4cd5b337bfd00205c91b061db9b958c0913c80cbd2745

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.0.20-cp312-cp312-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 2e06033202a295357b17b5f311e3bf067126ba82a25b955102175782b16def34
MD5 9903be299e15d0c64ff7566464737982
BLAKE2b-256 76824b6dc297c159d99def438567a9f7b75e8dfaa98144b0c09057fb5ba124d9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.0.20-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 43b685d055a6300cce6fd8a75f6ffc99f41d01428016e00d58c92d452d50f676
MD5 1f51c709a94062afb17a0c47e242a5d3
BLAKE2b-256 ebc2ffae8d281d906f682540834e5a4d3827b824fef1e53208bf475aa7742add

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.0.20-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8344383c02fc3d810261bf99b7e0407c381f31a0811f038997402ed333002981
MD5 d896d577196b0670258c06968e653ced
BLAKE2b-256 7f04c297b5d769adaaa00f416d511fb2dfa80ef47e048c708f041b1f024efa18

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.0.20-cp311-cp311-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 b008933eaff8ca96342f3a1719c60da3caced245fc51d09b45b446ff39754f94
MD5 c85ef68f109ba7c476eb6cd3075f2f2b
BLAKE2b-256 f6a4ff3623359f64c7d0c17835882e59336d1d427733775ce981702312184246

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.0.20-cp311-cp311-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 e77f4b94f19da548b675eb3c5fe1f2bdb50b93a03043c843b1f6a618b9cb44ab
MD5 46d625f4913d8a084c09a0a0fe3c49bc
BLAKE2b-256 3cc648c2a7106e9a0857da0d5582434a5ae6541c8e216419a52f7f5ac0ba4c18

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.0.20-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9b9190bd83341e9f7808f1fdb48dd1b81ca72453522c749c877bcc2e72bc78f9
MD5 156c7c0db04a4698ff365ab07c7e963c
BLAKE2b-256 d2398cfa0b8a9a69d80ed3951d3954b0b2bed0c7e68d0668bced3842f8ac37d9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.0.20-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 561ad8881052ca1f5f891100e89a0591a6d59e0a5d81df3f036a6715f85b05be
MD5 0bfc3454c8bfb9161636cb62e679c1c9
BLAKE2b-256 c0f8679ea3d7331da0b7c27ef1b83735a1124ce703d1bff16bd54da7616f8033

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.0.20-cp310-cp310-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 34f5efa314fc1b42677edbd0740cb67bc52aa558583b00c6c00d7c53e1e19630
MD5 351673b5ddd85e25fe19380792da436e
BLAKE2b-256 1323dc89945e14c80a9eb7401e7fb3246e95e33c17d26407860ce41cb32e24e1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.0.20-cp310-cp310-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 03979e81de4266b7fa4e0cbfaa784524320df54a7b913d2f4ca76f33523bbf19
MD5 f61380067b05759cd3620ef4ebdbe347
BLAKE2b-256 476f9be6a3ac3c755471b064056527dd7914c7e09602f6d8bad68304bdc1b722

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.0.20-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.20-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.0.20-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 edb205942100d78525e15a9fe0ede7856e90b74ad01cebb8458dc8fceeb0ed37
MD5 d573d0d770a7af72d6b3dde71f13c254
BLAKE2b-256 29714798eaa9552a2e256c8816d248fde6d850d4fa60818aea15b1e01b17a23a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.0.20-cp38-cp38-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8a3d01e1d218b960796d8eadf41f102cc25a3bab5a599e1ee701dfd6c6889298
MD5 55d0135a61b95780653be253d29e1c5c
BLAKE2b-256 9d84ca38328206aca660f8f6cece29b6f9502d1c2efed4b0893c0fffe0957e3b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.0.20-cp38-cp38-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 6774785d35813637fa61718ef6fbfef9acf8ae4b432b57cdece77fdcb8e219ca
MD5 e9541e280a3d28a60000b2992df3aae9
BLAKE2b-256 5c1df890b1d5dae895de61d4a585c919b13d1050b03bcfd3597db799f5435d9e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.0.20-cp38-cp38-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 4800d3248b405940816adbf5237ada816d8005a9646cd1ce52cfac295dc7e811
MD5 f38c7bafa72496c40c145de2a3cdfd00
BLAKE2b-256 54cc4151b1c4fb93b6ce138ffac94483e18dd95c05fcfdc62b2da40d16a4b990

See more details on using hashes here.

Provenance

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