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

Uploaded CPython 3.14tmacOS 15.0+ ARM64

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

Uploaded CPython 3.14macOS 15.0+ ARM64

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

Uploaded CPython 3.13macOS 15.0+ ARM64

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

Uploaded CPython 3.12macOS 15.0+ ARM64

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

Uploaded CPython 3.11macOS 15.0+ ARM64

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

Uploaded CPython 3.10macOS 15.0+ ARM64

opengris_scaler-2.0.14-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.14-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.14-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.14-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.14.tar.gz.

File metadata

  • Download URL: opengris_scaler-2.0.14.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.14.tar.gz
Algorithm Hash digest
SHA256 4865f8c1e0b885ad142c3e7149ee6206943b62422479a78ce25d1df880ef0168
MD5 9d608292279f0671dad222d9467a9488
BLAKE2b-256 6cdb17e00e11fde9acb844d2dc6aa6d99164e8407532f18953ae214bc5aa8698

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.0.14-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 37a8fa98b0a4d223101e37a12751d6640142295eb8fef96d5d52f857a3f03b7e
MD5 118773ea3b170cbbfaea9f0ad26ebedc
BLAKE2b-256 16a8233fe99cc1ae0a5d14d209b89108a476c0b99881684e4aaa361367bd6cff

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.0.14-cp314-cp314t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c7d7b02bd3e81e1db52cf6df93dacf8a16722e3df4ea81dcc01da277f22205f0
MD5 12d7aa44b3a9433420e0b24f6629c33a
BLAKE2b-256 f9964883e8f5dbc43e94736b0a99e3da5e24fbf829a01e9818abdcf0d266579c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.0.14-cp314-cp314t-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 d0230a1452a45442eb2f1f227095b4af810c51c4102a67f064e28a2ea4a879b7
MD5 4481febda160f368359eee45b50e8d8e
BLAKE2b-256 9e958381f41231fe1cfc63b55a20bc01ff90fc05c41782d59e97604ade0a6330

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.0.14-cp314-cp314t-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 3cd977465085831b636cad007344a69959e86409d5b7710c739db10f55854bf0
MD5 156b0be9a61ed2ef49d0183fe0c78f80
BLAKE2b-256 3134b7da55098b0c06236325174e3d1b290b3adee63f2c033d57deabb0108e63

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.0.14-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 51fa21f388c047dc74bb4fb195a144e500791574711a63775aa13e497c84ebc2
MD5 62afd97ceb3aac1eb37e4496cb93715a
BLAKE2b-256 9f22c2c7e6c2c7ca9c498df9023161f0776d02da0876746e39079ecdecc48c60

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.0.14-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c981d7e33dc2945130ce6f4c6338adb14e6963cd2fccdee37b2077683fc05f3c
MD5 b12a43b1a7b60d68c7efbc73144ebed8
BLAKE2b-256 d76152d6c2b0b6cd40ae4d5d277abd09f555f4fb7491de621e2634e05b9c6b66

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.0.14-cp314-cp314-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 179deabf30869a7b1d89819278df25ddc22e9321fe991732d9b4d5219a58aa5c
MD5 0b39002d6383360eb814ec3a0b238e6c
BLAKE2b-256 3292d3b87584cbb7cf54296f3d0fcff72960ff6d6e9ceddd60f55ce06788cea1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.0.14-cp314-cp314-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 a14e5cb810ba4524f86d4ff6a07992964a09abcfb2f5df8ecadcfbe05553662b
MD5 dcf317e2bf69d8364f7100c50d5fba13
BLAKE2b-256 9aecbe01442d82c2048443f873743ac0c44d0ea3d551b5e6cfbace0cf2a7592f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.0.14-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ce8e169533a0ef379ed9caba27852cddd3ceb02ac70258c25d652937b1892bad
MD5 56c924c3d698118538e071e64c42cfbe
BLAKE2b-256 2baf984546552af9d713882aa9bdd486d911223def229ec6a123e5f9071aa9c1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.0.14-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f8c1d5ff3688d54df400395b537483dd759f12737a686794838341a9a7be783f
MD5 2fa2aa9074d8f76d8125f7bdfaee5ee8
BLAKE2b-256 ad4a9f6e914bf040ed992bdd27376ffb43ca9d77079d09f3bb3f60f48aa70801

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.0.14-cp313-cp313-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 1d1af9f8a984c148b4dac40260caa31b54902eacff5a1e9cec94fa84a9976f0f
MD5 738b3e8a857258c19d5f7dd112bee03a
BLAKE2b-256 f9e3ab8b6c3ab4ace424d0379b4234abd2b23db677919688fb1e640a11b326db

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.0.14-cp313-cp313-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 51dcbad7b841846c33b08b48a002afa4fb69bc715d24692fd6dea7f94f06e38d
MD5 906341b7309a56997435a5bb66008322
BLAKE2b-256 6a241411b243c47d31ea709c66475ca97626156033d40228b362c41250935e57

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.0.14-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8a46e9535998c928e15fb5f49e5138cd960729fb7e3fd090771c113f4337c3b7
MD5 c57064b5764c2ed1d943bdd32df79a82
BLAKE2b-256 013260d7bfa7de6432f80f14ae88180059b19d744c036600c085228c65c37c99

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.0.14-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d53b04f9c87dc9b88b4980e7e379eee9b66b369465f2de7ce049f041b34fe54b
MD5 6336db872e512c553bf2d0a91f864896
BLAKE2b-256 cba30bf92b46a044a9103aaee263855d65d07c6453095ad5ae05b14ee6d37374

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.0.14-cp312-cp312-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 c7ba8933f51146bf2678ebf7e722229092a68766f0e61f44c6d57dd321b7142d
MD5 02cc30cfe6bd31a36fcd8a25de8d4019
BLAKE2b-256 d55d200a9d420675e435e834e09bad1b4224c074d4ba9573cfebf2b8b97c1652

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.0.14-cp312-cp312-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 1d8ff2bcf63a09235a60cb01e384286ca5364b6d83cfaa3e41d4ce894ad08ce5
MD5 fd8a0f847a8ddf5d2132b5259cd39cdb
BLAKE2b-256 25c533d54ecd6946eea8df2175fb2c17ac2b53440aa793487eabf4cc39d049f5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.0.14-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c7eefcdf1ab10ca308facf2973425a776a0d316defd59a1675f8dcdcb9079c4f
MD5 6dc1197a158256e11cbc4400ae12f16a
BLAKE2b-256 fd5826c9805cef085d4c694cd92cd444847d1a1461a12e316ad77553518e426b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.0.14-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 285612fee1544b8f685c1ec8fd0a42b1c50d59f874228bb0d7b2ed941ec67ae7
MD5 55857ae099827eff770ac963945799b0
BLAKE2b-256 9aab2f0438e6fe8fd312920835eca4312fa0fae65b3cf74dad527ca15cd42a6a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.0.14-cp311-cp311-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 93bc5c9ec072e7755fc51b1ee2dc8625db00d93292c4154757ae50034fe4c3cd
MD5 f63f755cf04998cc2aed2b14ee0d13d7
BLAKE2b-256 fc97f9e9fb4c26c4df383e2f86ff37b62bef7de734a84c37a399ed9285b0d3fd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.0.14-cp311-cp311-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 4cc9263dab9661fe15f16353cce314ac88b383017298457394be502b922deb77
MD5 9de05f301670a77f5e64c8f3c0ff063b
BLAKE2b-256 022b58753aa1abdbbf259530a925ae3c297bd1527f65abe298f4ef45fef7c119

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.0.14-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d10b39c88f6dd07774dd5ac4b11c8f07593cf2c06fcd1f1386075565dcd75962
MD5 afc687cbcba9af84d5030ac46fc3581a
BLAKE2b-256 fae93459e3b580365242f992417d269e20332afac1a704302ef77a95bd7ef3b3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.0.14-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c6b27bc8617ddfffcd9243dd3c59c0b0a7a77e4ff4617574e0b7e834e3caab90
MD5 bb5c4f353d79e9ad0955dbb2c3c906dd
BLAKE2b-256 f0e3a6001dd462759fa8664ee3fc5e138f6e99d3f9fa1cec1fc86c33d32aa432

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.0.14-cp310-cp310-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 5ae63d025e157e7a8eb87cfc0f7b531836fe7680d37c342ff48c49d72790e294
MD5 dca327629936cee9326df238dc4a3b91
BLAKE2b-256 8ff2e3c23955c0d5da54541c05a9ea27f7f5502bfc6b63c2a41343013e69ec47

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.0.14-cp310-cp310-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 13d17d1602b82ab4d2dd1b0d0ef90a727d4881eb6e6587b6392d59cb6127a76e
MD5 9a58a63411ad39791b863961ee1a563b
BLAKE2b-256 18ada1a5c90110bdbdc7c5b4cf9b4174931208c91516961cf68bbb53ad39db47

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.0.14-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 102485c3fe12f9c8c4cd4ec43e1702d8d85f4e2ff404afbf97fd97b48e4e147e
MD5 b469067d09c5a4e9ffeb08c54248e0a6
BLAKE2b-256 da86a69d643b008b05adcd368827a286f753355d62833265702cccf36b877446

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.0.14-cp38-cp38-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 dd835c25f27bec56d47a0ddb1c378f15288a9e98ceeace55e9a11df53075e202
MD5 91637f76e165c225b48263f72a9dd2b0
BLAKE2b-256 50d6206aeb71bf7a0e2cafb8b71cf35e9a785107ddfb4b5b1582b324134c9003

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.0.14-cp38-cp38-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 04bdb3c36822fc345d7a4f59d1ce619505b46c50ed01e812d76ce2575e7a93ae
MD5 bcf027a1d5fb5bbd6ac7b603949be357
BLAKE2b-256 1de3eb01684b190927dee8314d0e3c1c6d55d934b9306e8ceb8c666fdea7c77b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.0.14-cp38-cp38-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 baf863d92ff4342e3c2c6eb4d70fcdb9139a9cce05065412ef31eaf7ff45675b
MD5 e7ac04953eff383a7923bd31cbcc497c
BLAKE2b-256 79ac9355da3f152076bf2a4d2ab1452e22d219d236afc901c7fa529be880c934

See more details on using hashes here.

Provenance

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