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.10.tar.gz (4.6 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.10-cp314-cp314t-win_amd64.whl (967.5 kB view details)

Uploaded CPython 3.14tWindows x86-64

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

Uploaded CPython 3.14tmacOS 15.0+ ARM64

opengris_scaler-2.1.10-cp314-cp314-win_amd64.whl (961.4 kB view details)

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14macOS 15.0+ ARM64

opengris_scaler-2.1.10-cp313-cp313-win_amd64.whl (944.3 kB view details)

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13macOS 15.0+ ARM64

opengris_scaler-2.1.10-cp312-cp312-win_amd64.whl (944.4 kB view details)

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12macOS 15.0+ ARM64

opengris_scaler-2.1.10-cp311-cp311-win_amd64.whl (944.0 kB view details)

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11macOS 15.0+ ARM64

opengris_scaler-2.1.10-cp310-cp310-win_amd64.whl (944.3 kB view details)

Uploaded CPython 3.10Windows x86-64

opengris_scaler-2.1.10-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.10-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.10-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.10-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.10.tar.gz.

File metadata

  • Download URL: opengris_scaler-2.1.10.tar.gz
  • Upload date:
  • Size: 4.6 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.10.tar.gz
Algorithm Hash digest
SHA256 80ec1dc96f47d7b4152f0b3214bbddefe07fcdbdbaec69b06ce3c340668a45eb
MD5 8ae224b3ab142819e05618f487c41653
BLAKE2b-256 de7d0d3336770ef70b20cf2f68d4ed72bd19a79daf77419e6263d0ead5fe7c1b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.10-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 33eeb77492ccbf11865930fb35af782540de1979df55ed9fbeb8de44db940222
MD5 9b91fa8a179fe8b1e0ec14fbdb5fd110
BLAKE2b-256 77d9d4aa882c7fa2c35f7dc3159c5f269505ff8efe66e2cde078da1f1cfba29e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.10-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4adb14fbb2add4f5e98ac80bfbea74835293e942b0cb1f748347cfdb2e15e647
MD5 43e52df3ac7f8d1a19efdb59fcd35468
BLAKE2b-256 ce02f2dd37f986a2a256dff58d58b743507de5bfe022640cf99ebe7ce1f7d05f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.10-cp314-cp314t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c1fa06c383cbe0896c9d1b5cec2f64626d38ee6dcd4df0e9101393923fd1977d
MD5 ee379c6ec7b60f987bd910855896102e
BLAKE2b-256 c553c033b5bd0ca300ea0151c766a65ffcd343165e4f05fb4665d196beec3041

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.10-cp314-cp314t-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 711d9a4f01183cbd42a2eb671111e5eaa7f3bb743257a8049763a9066d98e005
MD5 221faf624a48bcc3343902ac7f5f471f
BLAKE2b-256 3e130b3f4e0472671c5015e8041ffbaa00170862515c7f97a021f72910f55f42

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.10-cp314-cp314t-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 080dc9c19b9d284f8e5a61bce7966e0537fc6832b6a0db26adcdae4100fab256
MD5 0bfd6d67dfd1d18f0f74e226818b502b
BLAKE2b-256 bf1c87a9a3bf9e96764da7de95cf21b5e695776d19b2e3d6a8784b838f43e32e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.10-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 536f1b7473d1148f39e95f4b1883f261b20d7b9feb98f36eea93962de31032cc
MD5 c3a47a0fa5ac6132be6128cde1cf44f9
BLAKE2b-256 2fae16f3e732147df98e023004937c8b2d1fe35ba5a4a33ec154c1d31a496e93

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.10-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 65d91ad4911ef40bbca74692274aba69e31127e67bc83d4a738f9c39a93294c6
MD5 004cd77e98c697a82d52ace9aa10ff29
BLAKE2b-256 e8156caa1e0232095377bf2d8d69b6df5d6256a2a4072fac81516ec4609cec1b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.10-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 18584230ccafd5d542935b176df58c6b438b65c3ddce4fcf3409aaa6bcf0c127
MD5 1c52fb1368b1fe295f881407673c3e11
BLAKE2b-256 cbf17735049ae00bd22d772a6237d0e7b172363767d9f3bcd6c7f1c870874783

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.10-cp314-cp314-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 7f4b0d2ff20e56a576a4f8890a2a57134361569f8e48a0f59c37a39a206290a0
MD5 e3011eb1d8b04ddb66c6c09787b5d2e1
BLAKE2b-256 26a392208a2942e70665a47e627eaba643719525749cf3e8c841e7acf3121766

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.10-cp314-cp314-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 4a18ebafcab50974cb3f8cc8013869b301056316c3274a04290d35661482e549
MD5 04b793943153210a2c3ba7b3860bc4a5
BLAKE2b-256 fc85b03ae9ca4b84f59ce7fd383406ba00e9cc8760b21fef562ac49785a60a05

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.10-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 0c29d0cc38fa60963b4f53184341c55608b9cdcdc53a159cc90fe7ebbe383b82
MD5 860503d304189c94cce49cf417c53d31
BLAKE2b-256 2ab832100b3499a6666c8f5edeb10e1ad5f419f618b7d454926566130853dcdb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.10-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 44ae0f7b08757cce542fdaf333f30fd7b40aa92fedd707c0395d00d92bbda2c2
MD5 3a787d2fe1086ef3da814f7edb5dcbe7
BLAKE2b-256 61bb2b34d4de50257ef12f6756eb797c67cb57a116eeff76643fd24ad31cd18b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.10-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9ab9d0448e352c527bee94ed97795dd627abdeb54753947102ad0490600a9f5f
MD5 2e7a30008841660bd250d098fabfbf18
BLAKE2b-256 c5837f39312e82cb113f0e690b7e50deb7207096f0c85399c222bfaed703f2c9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.10-cp313-cp313-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 48b7871a4b382b1177098368c3652354ec69edaa2356802fdf7f1ca769f63cb2
MD5 5114f1148e79c3c10b17f19fa5ac9b94
BLAKE2b-256 497ad222ce7097080578d3951e9b5db4dd9ec3be5a76c4875d39d68687f23037

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.10-cp313-cp313-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 758b61f34ca33cc705c9181e0a39def1354e3a1542eae63b3d254054427fd6db
MD5 3d62a1d875789d9dd777a3658964dc9a
BLAKE2b-256 335fb1748eac828f0938039c29b75893be5009dcb92fddaa8ff936dbdaabb258

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.10-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 4729d0c0df4b521799c082cdfead08985d9c54ec018eedce7c8ee4525f8b7451
MD5 a2002aeceb3f619b82b51c23938748b8
BLAKE2b-256 462c18feb92ff595110844bdc0be4350c833a74cfcc01be4c07a2d27381640fb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.10-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0c4089ef5067319b83eae3faf57f725dc007a0dcf5cd40185bf7080130917b0d
MD5 e386d90967a0940037894c64005b7405
BLAKE2b-256 7134449c5d523181c5b566b7ec88b27f7424115842e8de1f1487356688654e96

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.10-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 92eb44f8df535c954b088fd0212143dc1fe245ae3e0d08f786f19ef58bba07e6
MD5 7a01d77b69bcadf96fdb14b4f39ae0d4
BLAKE2b-256 40db69f722ba83e2c8d709cb5c8f6863703f7540064244fc8770eb6b21d4d4ce

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.10-cp312-cp312-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 ae44550e23c02be9cb7704c5ed593fbf4a2afe05ceec0172ab6c5355952d6157
MD5 5398aa3085dd9d53abe0aee553af731a
BLAKE2b-256 56653390b05be6eefdd6bc6443343e8002a5b068f863ef98484b65e7048aa54d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.10-cp312-cp312-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 5fc2daf499f12e3c0cd93319a07087c1716129d873c20d560e0a7f1615a18e8b
MD5 759b54b1d0c1c2f0a3adf30ef94b09dd
BLAKE2b-256 45882bd1515702c00d2599c5ee08f1093e6b92510b150aab90120f64b61b3cf0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.10-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 f3766f1a8be2a93337d0e565fa05808b6bd4406ae95ec6d6f269f7b5b0b39629
MD5 c26c9c906700a341e3931a46047d0f41
BLAKE2b-256 6e465f5e7b3c3e3066a72822f11ff6a69564c4cc715e2ed71b39be0a0594152c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.10-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 15f16d28f7fa06854dddb293078f69c132fd7409208bc10d490ad96b193d98b6
MD5 e7785479bc66e56cdd1a33450b1a5aae
BLAKE2b-256 160d7496de6edc8b22d523bf04b2f9cc0c31f4b712c3464c38bb198bcac9442f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.10-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 cff006146d7710bebcd251d226c85644df273be834bab708ecc5d0bce97d16d0
MD5 980e27f91bfb9cf5ef2b1f4313f8a531
BLAKE2b-256 88f96319eeaf5f010d8af09617e516b1a99c3da8d01caf750787876e2563bb7d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.10-cp311-cp311-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 31bca6d32228d7c8e534cc0a4edb00dcf03cf412e461e71c3afce90434adb5d0
MD5 f0f5e1a6e78517ecfa20cb1dedd7d100
BLAKE2b-256 8656b4dfd0f0258207f594334dfd88c8c8fd686daae58dcaf16642c255139596

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.10-cp311-cp311-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 0809cce83c07e896ddb4738da64d32fbbcb7453ca863f7962a5a03a454da600f
MD5 641ad0eb0c464cfb46ce700e34569090
BLAKE2b-256 218d44311c8d79634faf98c8a57626ca38b8b850032152acf9b5c14c5747c828

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.10-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 dd5649b9ab4ef0bf5f1e5b10ced3be6d3643b30e8ed995b069f66a1d716d877a
MD5 fe313193781806045fcee49a54950805
BLAKE2b-256 f67341401d58e1ae20c3f5da6e671f032147c5d8a29f3e037cba6c4301323fb5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.10-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 676f2ff6261cd905b922b8e710af9c0d6cd8382c13f81f21e10b96808ff2df82
MD5 4bac259299dc894b68c79e447380c50a
BLAKE2b-256 6240e8e994544a7450b9d68aad5847b0fd6020149e014c7b8e0e4559d2524a08

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.10-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b148488a74327c47520f05b94d301547db3c204e7483569e3e8a006ea1f422c0
MD5 e5ef8ba054bbb529f44f0f5a95368552
BLAKE2b-256 bdf73628af4b31dc5baa905ed9d1a73ee9dedb7cbb423779f5d803b0ebb07ca8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.10-cp310-cp310-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 a9456e9968b3e41363c63000ed7f324b55fcfef96a43072a01275be90a9ef2e0
MD5 9853728418f58d4d680647699b0ec219
BLAKE2b-256 8e20adbe65789838c686b3c7aa8b2086936a9d2c87b69f315ee7f2514a44a2f6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.10-cp310-cp310-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 4dacbd5f65d162256d0d3a9c841d4e6ec382792e7d631c77bc559cde8e9d9f56
MD5 ab11d4ebf608e8d8b39f2d3abbe3adda
BLAKE2b-256 024b43ae2b793ebd29848b827c076a547a3dbe77526d4b0afb66ddac1455e168

See more details on using hashes here.

Provenance

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