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.7.tar.gz (4.1 MB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

opengris_scaler-2.0.7-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.7-cp314-cp314t-manylinux_2_28_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ x86-64

opengris_scaler-2.0.7-cp314-cp314t-macosx_15_0_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.14tmacOS 15.0+ x86-64

opengris_scaler-2.0.7-cp314-cp314t-macosx_15_0_arm64.whl (2.1 MB view details)

Uploaded CPython 3.14tmacOS 15.0+ ARM64

opengris_scaler-2.0.7-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.7-cp314-cp314-manylinux_2_28_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

opengris_scaler-2.0.7-cp314-cp314-macosx_15_0_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.14macOS 15.0+ x86-64

opengris_scaler-2.0.7-cp314-cp314-macosx_15_0_arm64.whl (2.1 MB view details)

Uploaded CPython 3.14macOS 15.0+ ARM64

opengris_scaler-2.0.7-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.7-cp313-cp313-manylinux_2_28_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

opengris_scaler-2.0.7-cp313-cp313-macosx_15_0_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.13macOS 15.0+ x86-64

opengris_scaler-2.0.7-cp313-cp313-macosx_15_0_arm64.whl (2.1 MB view details)

Uploaded CPython 3.13macOS 15.0+ ARM64

opengris_scaler-2.0.7-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.7-cp312-cp312-manylinux_2_28_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

opengris_scaler-2.0.7-cp312-cp312-macosx_15_0_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.12macOS 15.0+ x86-64

opengris_scaler-2.0.7-cp312-cp312-macosx_15_0_arm64.whl (2.1 MB view details)

Uploaded CPython 3.12macOS 15.0+ ARM64

opengris_scaler-2.0.7-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.7-cp311-cp311-manylinux_2_28_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

opengris_scaler-2.0.7-cp311-cp311-macosx_15_0_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.11macOS 15.0+ x86-64

opengris_scaler-2.0.7-cp311-cp311-macosx_15_0_arm64.whl (2.1 MB view details)

Uploaded CPython 3.11macOS 15.0+ ARM64

opengris_scaler-2.0.7-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.7-cp310-cp310-manylinux_2_28_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

opengris_scaler-2.0.7-cp310-cp310-macosx_15_0_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.10macOS 15.0+ x86-64

opengris_scaler-2.0.7-cp310-cp310-macosx_15_0_arm64.whl (2.1 MB view details)

Uploaded CPython 3.10macOS 15.0+ ARM64

opengris_scaler-2.0.7-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.7-cp38-cp38-manylinux_2_28_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.28+ x86-64

opengris_scaler-2.0.7-cp38-cp38-macosx_15_0_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.8macOS 15.0+ x86-64

opengris_scaler-2.0.7-cp38-cp38-macosx_15_0_arm64.whl (2.1 MB view details)

Uploaded CPython 3.8macOS 15.0+ ARM64

File details

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

File metadata

  • Download URL: opengris_scaler-2.0.7.tar.gz
  • Upload date:
  • Size: 4.1 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for opengris_scaler-2.0.7.tar.gz
Algorithm Hash digest
SHA256 bb503e000946438484f5bd6ae3c030dc86c141602128d56c121a83c01c98c993
MD5 d0b25e18ae4bf6c93d4b5479f4d0bb79
BLAKE2b-256 3525cdc5fcba965d4926f919b5f1d1192740d046cb75be0389f2b41f10567a02

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.0.7-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4d8ae99f9a160f73774ca1f0cebf012d0ac75fc5347d87b6551d0b8d4ab93edc
MD5 c3676930013381acf4f8a001f8ead09b
BLAKE2b-256 04b316da985a8681ba2a2e358698108dd9640dfca0e98eb42ecb154c25293d4c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.0.7-cp314-cp314t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3a5843b8dea66b3775bed35a7aeabc6e665910bb492f0a856ca7cb4f89746063
MD5 c85756e4118506c7542a51a4017ea863
BLAKE2b-256 7d3c405293ca8ae9ada380ff25cc98f63bb01d1024f803d5df5fd0c530e73c57

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.0.7-cp314-cp314t-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 4314ef811dae4c2d44520b5cdfa6600fd22140566e168b1ff6f033561252b87e
MD5 4ae0f7223000d8b39a5b1319b81fd2d9
BLAKE2b-256 16aa7afb19b36c414c214bf4ca581bc00a055c728cccd352dab7e760fb3aa0a5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.0.7-cp314-cp314t-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 4fbb9837343b03255ef915b024d2062d80bbb5cb42ceef0ac2cc4595339a81e8
MD5 53ce269228f503c0596ebb4acb688913
BLAKE2b-256 3562e875f40729293553fd951f5e4aa6b744915187db46d9cbccc92dfa42a649

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.0.7-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3e883e5a1ec388572de85d7caa9c8cfcb64ba4d9e50ad5331dae8fc29cda0d91
MD5 e4bf9fadaadf0bf170275e4113ca1045
BLAKE2b-256 c17294a567bea9cce07d1c3f22f625f4ada3cf2401c0ab613de2b3ffdb7dd5df

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.0.7-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4dedf8db0f71472b87ce30cf289860c20e8b21ce828efd2f7151c0e806fcceb6
MD5 7c8651998df1135334ec16ce39df189e
BLAKE2b-256 16b5884cc8f28aeb81a0f2b680a009647904e21ffb329d6ec18897c5c9784f03

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.0.7-cp314-cp314-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 97399115eaf26151ba0da38590a23d703658f0fffb8626def2ea8f179c0d40d3
MD5 5be36cbbeac4465bf6053aedd4f91930
BLAKE2b-256 c60d67f5efd7be6c7909343b6d935009397c7ee7689de231b318383ab8d7fc48

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.0.7-cp314-cp314-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 301105d7b9ba2e381dcefbbae613e581753256d07ff52b94231b1c4f6d899152
MD5 678768206510346dea3ee749a017a7d1
BLAKE2b-256 656f6d89f22c27037958fac6547e8cfa5e8be95cee99254147485ca937e79f94

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.0.7-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b0bcd35b33165e9e6a5b2c11ed7bd2f592e884d0bf36773e3908d551915b11fc
MD5 52e33be15d671b88c9137ddaf121600f
BLAKE2b-256 2af9a776677bad15ad1b83dcaab509c10242efd18e8b915dc3d9594a8954eefc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.0.7-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 63d21e50b532a4f424248eec6a0c02db83ab04ebe0a35caac24720f955f3ffed
MD5 f8b99bef8574a67190ff2b7f524c617d
BLAKE2b-256 4849a65e8bebe87a0ad25653c43997f7a9722fe0ae47400c0335fbf8758d416f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.0.7-cp313-cp313-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 b808cbad4f3df29940b3ce9787c3dbf87e030a85c8fae67dcc03d465b60b9b58
MD5 88024cd7c331783acd3155c3a2847f23
BLAKE2b-256 56db855a1528a27014f267211f7eda1d3ea060f64721da8777eb09d54d4136b0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.0.7-cp313-cp313-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 55d709a8f721cbe3d214678983d6a18d40b60501b56edb66e01894354e114655
MD5 a745038fe15ea92ff4ff8990a3fe4f79
BLAKE2b-256 981901bb826860b9a1c2702f0f6982ec2aa440e3be87d365c8e534517ae6e22f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.0.7-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 96d1ab6d73358534b51c672be5a941b594a207803358621a152f88fb917c9d96
MD5 d68137250dbf5840a203d961686c65f5
BLAKE2b-256 e137f72ef7f65524bc67b233e6af579d7903e47b4a8428fa81222f2ff6f638b4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.0.7-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 81415fdeb18bf5a7fe57c082deff1d269451829def25f3ee6393cd8f6fb55717
MD5 eba74abc59bd9d624e4d1a064ea7ded5
BLAKE2b-256 990cf02c9ce00c3764a730627fe058e9b00b849ee0122f054d2651dd9c48d111

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.0.7-cp312-cp312-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 dc35448ebaf6fc07b927ad73a14f61cd6e6ed79fce8a657f9b35cdf7fba5ac6a
MD5 534acb3b7ca53eca3fe21cb4e685f885
BLAKE2b-256 f6a26903bf07451a7dc0f04cfb224c7c5a38173bd03310ea9c2c530c1627dbec

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.0.7-cp312-cp312-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 1ec3d780677e63c62872e64fb8ea8630d2caf523bcc9782a93250c7f56fb87aa
MD5 859cdae14db5b3dd872a4124f5a44e66
BLAKE2b-256 5852b40f64294e3a0dd2e070f884adb4e1064dc0c5328a0596e29fd0c4529d4f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.0.7-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 49274ff3cdaa6a2d038ddb8f6a4e1aa780a214a53a2c677e5d8bffa861135497
MD5 df7d9267b1bdbf47af93f25434d7e48e
BLAKE2b-256 88d8f556bbc2c331324b4a59c9a548e1c776c05f6618029e54827f9d4761bef1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.0.7-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 bcf62e0192141fd517d1cc9079a6be4c396253d4515d0722e2c725e303b6c1d2
MD5 36f6fd826000fc1750b84d7b6f7c89e6
BLAKE2b-256 3bb2db052f87c4433139da96f38b4d435a846d3839f5e824ddc4221b17e8e0ce

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.0.7-cp311-cp311-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 d7c58e2ba068efddf6f23d963dc60f37671a5859485f39e9f06217509d7c7e0d
MD5 c0eff7a523716b7d9a31937192bf0736
BLAKE2b-256 3ce39a9d4f8e34fc271a6e841ae80b224bb27001077d745f2139cd1b100552f3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.0.7-cp311-cp311-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 c9d1d84c2cf9c04ef10514556b36da71cd27ab97b54445f6ab2a3933ffb56e58
MD5 a7e8a26ad51f78a0faef03cb590fa437
BLAKE2b-256 70e009a30734826b59baa8e0ee49b8d78389362bb70213609f0513f5d34a87b0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.0.7-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ec9712cb8ba9eb2855c3f2c8973dfe61e2f8fd940d0fe2e5c2a4a82562e85d1a
MD5 b62dd7c653f1f8ed1d60aaecc97f4a38
BLAKE2b-256 4d85e2b5a6ebff3c3a82f3464e6a6cefaedcf8757c5e3c281c49cd1d6fe80772

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.0.7-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6473dfea7a8b1308ebc52a885828e2887972ed7df971ca3e131a042ca5611bcf
MD5 462bbb0079542fae385c6506c1b737c3
BLAKE2b-256 e6705600375f38d0a2092d7a6d88b28f866dc9795a1fb178a2127ce874d690f9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.0.7-cp310-cp310-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 4423acb2f17dfca975e0540f5d2b0f84869eb37e6d6e70ffe0473dfd32a1c2c7
MD5 9886b923b9b3ef3c5c615cc5f1d0cfe8
BLAKE2b-256 570da977ab6df7e942b5ac41085601e3891dc93955776c414af59621ff8a81f8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.0.7-cp310-cp310-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 c312db40906888fbc882f946bafecf2ff54b61560b495fea9e1b51e0881a91a1
MD5 38ec190f5a6576f26134e9022da59b81
BLAKE2b-256 449d13dc817848136b1cae33ab4998bf6d25dd4b754600d26bba8ee859a7a5a4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.0.7-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 36c5eb71d3d8cf3e5b006bebaaf0a2e3cfd28067f7945da14153d793797cd25e
MD5 3804339c012ae57813b5eb2db1850e66
BLAKE2b-256 545af322e796be898e5458cc321607c67ab64ccc178a2baa4ed90561d61af4d9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.0.7-cp38-cp38-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 de55dd7d342d0f93d6cf9e37281859258ce6e799b69a971475af2916d6f811e2
MD5 c393d224ac1e949246b1e4ac6a4f87f0
BLAKE2b-256 53604abba3f51bbf3d2b433fe47cb11e475e9e24245e38fa719bd3e1d0cacb21

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.0.7-cp38-cp38-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 6f5ebff01338c18cc1861ade3cf8a9326cdd8b1e7fd4380fa67a8e8906f2ff30
MD5 bf4c00e24e396a7545432035f78dc219
BLAKE2b-256 57d0b993987c24096860ca7a0285b84846bdac040dd72d8a89672ec342a82655

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.0.7-cp38-cp38-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 e87275131bd151f6971658196da161c4cae97ab53ce4eab8ee3d2a204a220953
MD5 d82bfd1dce97e60ebbc1f0d895729200
BLAKE2b-256 b274dd29b70f95352d380c44e5e707b6ecbc27af4a4fe4e9a5da737e091035b7

See more details on using hashes here.

Provenance

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