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.8.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.1.8-cp314-cp314t-win_amd64.whl (966.9 kB view details)

Uploaded CPython 3.14tWindows x86-64

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

Uploaded CPython 3.14tmacOS 15.0+ ARM64

opengris_scaler-2.1.8-cp314-cp314-win_amd64.whl (960.7 kB view details)

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14macOS 15.0+ ARM64

opengris_scaler-2.1.8-cp313-cp313-win_amd64.whl (943.6 kB view details)

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13macOS 15.0+ ARM64

opengris_scaler-2.1.8-cp312-cp312-win_amd64.whl (943.7 kB view details)

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12macOS 15.0+ ARM64

opengris_scaler-2.1.8-cp311-cp311-win_amd64.whl (943.4 kB view details)

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11macOS 15.0+ ARM64

opengris_scaler-2.1.8-cp310-cp310-win_amd64.whl (943.6 kB view details)

Uploaded CPython 3.10Windows x86-64

opengris_scaler-2.1.8-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.8-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.8-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.8-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.8.tar.gz.

File metadata

  • Download URL: opengris_scaler-2.1.8.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.1.8.tar.gz
Algorithm Hash digest
SHA256 f10801a224fef2eff3fd965806cba59a0103e7807923b0477247d2ab86f2d2ed
MD5 650bbc8c04a0e8695558fa7d25c7c789
BLAKE2b-256 af7c15e144687094f52cddf4ffe8a2d38c0e0c450248229ed4e1b3c9bad0c891

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.8-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 903c89bddf3682cd61868f1569caab436014da59721971557b4b6a1b0933d7eb
MD5 f430fe12ae8d929a835e267d06a40956
BLAKE2b-256 c2b486f9015ef9a053759ad549f5a52913482e35d9e88c958ef1b89d8e66e958

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.8-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 187fae4cb44db69e236cfb29f1921fba7b33d2673809830fa615bbdfd69ac7e7
MD5 c8cf9e973f9e108f1f3c6d631f89b5a7
BLAKE2b-256 e9944a78037cd360f3235d6ffee3c273eae010a197f603e0373d7c41057d21b4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.8-cp314-cp314t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e10f3f2bb060927aa602240c7289e70d95c16fb7694b481a156ab09ccc97c354
MD5 683bbcd869c02ccee555f036ff60928a
BLAKE2b-256 556002bccc1e048698294670e7286ac927f9686edbe7504dd6341cf47e2cc23c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.8-cp314-cp314t-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 f92fa42171b0a36581d2e7206ce39d5f2211a5a2c984f6cd7fabbcd4267418b4
MD5 9dc427b22949cd737131280a3a0253c1
BLAKE2b-256 6842867e2934980d8f2aa71fb4613af776916de320fd214df990a62a7f012d67

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.8-cp314-cp314t-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 854f99fc3352234dfa672176a40693355ea8fbe47b9c0be4869a0cec6dc7640a
MD5 464185d59778d54b67b2abf52ae7ec7c
BLAKE2b-256 9a4c4619ef38e80574496e934fb686e31c78b0be76b8dd0b38c6b71396408678

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.8-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 980bdec8c645f8b8088dead0008c9733b9bd9ebc7ac7dc1ca71af02a85756bdb
MD5 212bf699e401cd9d86e31094a64e0540
BLAKE2b-256 6906669a50075e3b484c8af80176f4f523d2254f91a277a73f136e1fcec5da06

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.8-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e5ddde77d78152afe3abd01fd9e7474b1816c7a3f1bcddcb1df936271c4afce9
MD5 9b875c24861bbaa1b6b3b3e338ad5842
BLAKE2b-256 0bea71816e778926f48ac1a436892b22df59dfdbe7f4d37c7de6a61cfc56cb39

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.8-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 61b6e94088b4d499459cd6f128da460d731121cae72be1636a320287c04c5ffb
MD5 885ae0def98dad7ad5400e474e072f64
BLAKE2b-256 7339b766545f7e337b50c38faac95fe39501d68540a54f1b9eb457fbda2a667d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.8-cp314-cp314-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 b866a789db5291a4db9b91dc757a946289098c51cb57d0b5c7213439d629f330
MD5 fd5981567191fdd22a68103abed6cd6f
BLAKE2b-256 cea7c70d04ed4106376432182905d1ccc6b9a40e953611f618f8d0b65fe122b0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.8-cp314-cp314-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 20e4278b0fdb2a543170c834cc208161c4931f269174819a987108cf8e0c8e67
MD5 981eb2c7500f8484de7b20709a91959c
BLAKE2b-256 9f87c70b0904f086c003c28d8ad38e5e80b933f04358ca7b706a7f4ab9b708a1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.8-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 cc94068922cc7f4364e416bfcae972d628901b20e5725b898e40f81827842166
MD5 acd1b264d243050d9e102bed4882a6cf
BLAKE2b-256 8dd5217afcd9194f55825264fafb6ad052800614292c0300b06432228229c7a7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.8-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bfcb2228d3e29e7f873fd61840017b581668a9958150d5e6df654bc14db4b82d
MD5 d550a2d3591319cfd3d9db3e4057668c
BLAKE2b-256 1222312348390aca09c9f4b0b236304e8be20194a65a210eda92357a9c1181ef

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.8-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ecc5027e2aff55af85f4d9f822f59d4da4fbc06850ab830d11017b0d39ea8ec1
MD5 96740fbc8a2b472748a44b87e733f495
BLAKE2b-256 9afa85ea6059917269aa9743764f12932e0003b3fa6b7c11d495806c1f90ca71

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.8-cp313-cp313-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 c2c8afe02ddb42bf1302823dac3f7db6ed6bef26a87b302c42e0950344afdafd
MD5 408f29c14a612af42c7cf811fcc8497e
BLAKE2b-256 35d71345a87b2c4fba3b12ee0b3e0ad1ea39740b9b167dc3ae4702a31cb4219e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.8-cp313-cp313-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 02e91a9ce0833594ba567ad1f6b10ab6bda1e7a972df97d9de0fe9b32d58339c
MD5 8415a672f113e9bd128a300332c8f8f2
BLAKE2b-256 e1a321ef3b23bd7f01c1c89acd41010984cad039cc38293976d2b186ad0b8cb8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.8-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 afb9ac8bb2a77ca92705b5871417c472ec7f114d9cd2d91eec7c413aff43e199
MD5 ba339f35b156b8da8c16f25fc23dc29c
BLAKE2b-256 599d41684f383d8d04e912d04f4500dbc4353d0c87662a842d9052eb73669ef0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.8-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 261284b3bc71b8fddecbe1968b7b477ef3678ebeda36c97acc411f1305978270
MD5 d465fd01dd28b92ce708f5aaa4bbcb81
BLAKE2b-256 4ab09d2fc38aca2922069d8a093cac42f5d5842021088fafae908b20824ba553

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.8-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e4ac75b39278098eb2c619898d66f38e018639e1b09076312ac91450d7338ddb
MD5 2875dad9695957ee7f05c8f511cebf3f
BLAKE2b-256 2b9ee11a729b4232be76c4daf9cca44beff0a98db6243ad22444f6c9f1f1dc7e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.8-cp312-cp312-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 7426a5d19ea97e102ced5051f9e08680057dd3ebefbf9c7cff039f6e8bd6ab44
MD5 d790e28a33e3c46b45f2398b6a958938
BLAKE2b-256 154cfa696bf6ec65d50e997b7b6e1de74307827384422afb61d95657f7c23155

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.8-cp312-cp312-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 11b5ce0004f70ebacd8efdc26b642b8174490c8d0d8dc961f3983ff9fc8dbbf9
MD5 c8275154d472b83785e24fa1dd0c7cd4
BLAKE2b-256 c806290350b9d45052485671cdb5a44548fc36ab00a761f03f1987a373403d89

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.8-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 dbd978796b75d141e920182321eff3ea50b059f29fc5f5ccfdaae1514ad7b449
MD5 43604adbc565d56bb925dfc10108e8a4
BLAKE2b-256 dd5d1eec02cc94fe30127aa40c402075f7e0ab1564434243fed8de175126f602

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.8-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4e88ffec690c77d89c5fa2c9673757ce565066a6977012e5c4a07b5d23ac13ed
MD5 1ef8ab8a768dfad4220bf99df9ba80e1
BLAKE2b-256 08193cef28a85edf8045e8c74d4a9584ad805b468d26e1b4e765d81dc99a6450

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.8-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 598a723b1c2ae73b49da70111ec828ca7be371a1f37d86eb601216714c5fc357
MD5 ad8e30430e54beb81c78e1b70aedb2c4
BLAKE2b-256 3711d4c6661d72527c18abd6cb06cbf8cbf5727db2fd6bd0a9bb2e2345744902

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.8-cp311-cp311-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 112d4b0331dedc7a0800b7aa04d208645eea6216e5c5a55130471e94cde0e6f6
MD5 f687fc2c197e09b242f3195e03fce9cc
BLAKE2b-256 4ae5c9f5616df2f8a445773eaca2f43b0e41fb24a461a08fab0860e51d6f9504

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.8-cp311-cp311-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 5d57e820fad3365c868a232213a8bf2282715eadc314ba5c9f2b0d9223553d91
MD5 a5c61b66f16115a92cfb6f536aaa2821
BLAKE2b-256 4a7f4cff77d62b88a8f26501965dca8577f5ba2089f9a0be5c86bbcf726546a3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.8-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 b2fe3a6cc8d2da50e8a97a380f6ee96708ec845c4a8779485209a946b425b378
MD5 0b4e3521e434e1e75a4af7976783a833
BLAKE2b-256 a6833d345a07006c22c542d556b4e6c0502577559d676964643d477aac7da3ef

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.8-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 76b3958c9646a8e2b0451611a9020cb4b4eccfdf6a38be5f237157f8af7d0732
MD5 c4417294f69d20bf5717c74b6ed4b49a
BLAKE2b-256 e2950baa96baf5a87267840a5dac9d26f867cf966dc37de9f127619c94c14837

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.8-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4938a8990332c67ae383121878a5d37161b1e3822a6b87c3c9a43b3eb59aed51
MD5 e31b25505644d6e56d5f7e105c03f65e
BLAKE2b-256 c4f345d8bbbeae38c5e3bcaee6bea609948032c66dab5e6a1e0a13e0a768a172

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.8-cp310-cp310-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 6e0032d96ed0d195c81eb73e374fdf7547dc813f32bfefdb2872736dbe1e55bd
MD5 ba2d53039f3d4171088ef38e0246161f
BLAKE2b-256 5ea138f003d96434a6a765e66d0dd93b67e9e563b0701d8c63b9b70cafc2f915

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.8-cp310-cp310-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 310929dcc6e2462ad04d947b435f3fcb3d6d06311fffd105331e30da83894bb2
MD5 2b3f52f8d96a87a85ce6100bc9c37c2c
BLAKE2b-256 88e6ec9a2b0725e1f3e34fd9ec2675fd2a55888427561cd9e0a94756ebc0f598

See more details on using hashes here.

Provenance

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