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.4.6.tar.gz (6.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.4.6-cp314-cp314t-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.14tWindows x86-64

opengris_scaler-2.4.6-cp314-cp314t-musllinux_1_2_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

opengris_scaler-2.4.6-cp314-cp314t-musllinux_1_2_aarch64.whl (3.2 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

opengris_scaler-2.4.6-cp314-cp314t-manylinux_2_28_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ x86-64

opengris_scaler-2.4.6-cp314-cp314t-manylinux_2_28_aarch64.whl (3.6 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

opengris_scaler-2.4.6-cp314-cp314t-macosx_15_0_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.14tmacOS 15.0+ x86-64

opengris_scaler-2.4.6-cp314-cp314t-macosx_15_0_arm64.whl (3.2 MB view details)

Uploaded CPython 3.14tmacOS 15.0+ ARM64

opengris_scaler-2.4.6-cp314-cp314-win_amd64.whl (1.3 MB view details)

Uploaded CPython 3.14Windows x86-64

opengris_scaler-2.4.6-cp314-cp314-musllinux_1_2_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

opengris_scaler-2.4.6-cp314-cp314-musllinux_1_2_aarch64.whl (3.2 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

opengris_scaler-2.4.6-cp314-cp314-manylinux_2_28_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

opengris_scaler-2.4.6-cp314-cp314-manylinux_2_28_aarch64.whl (3.6 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

opengris_scaler-2.4.6-cp314-cp314-macosx_15_0_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.14macOS 15.0+ x86-64

opengris_scaler-2.4.6-cp314-cp314-macosx_15_0_arm64.whl (3.2 MB view details)

Uploaded CPython 3.14macOS 15.0+ ARM64

opengris_scaler-2.4.6-cp313-cp313-win_amd64.whl (1.3 MB view details)

Uploaded CPython 3.13Windows x86-64

opengris_scaler-2.4.6-cp313-cp313-musllinux_1_2_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

opengris_scaler-2.4.6-cp313-cp313-musllinux_1_2_aarch64.whl (3.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

opengris_scaler-2.4.6-cp313-cp313-manylinux_2_28_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

opengris_scaler-2.4.6-cp313-cp313-manylinux_2_28_aarch64.whl (3.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

opengris_scaler-2.4.6-cp313-cp313-macosx_15_0_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.13macOS 15.0+ x86-64

opengris_scaler-2.4.6-cp313-cp313-macosx_15_0_arm64.whl (3.2 MB view details)

Uploaded CPython 3.13macOS 15.0+ ARM64

opengris_scaler-2.4.6-cp312-cp312-win_amd64.whl (1.3 MB view details)

Uploaded CPython 3.12Windows x86-64

opengris_scaler-2.4.6-cp312-cp312-musllinux_1_2_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

opengris_scaler-2.4.6-cp312-cp312-musllinux_1_2_aarch64.whl (3.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

opengris_scaler-2.4.6-cp312-cp312-manylinux_2_28_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

opengris_scaler-2.4.6-cp312-cp312-manylinux_2_28_aarch64.whl (3.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

opengris_scaler-2.4.6-cp312-cp312-macosx_15_0_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.12macOS 15.0+ x86-64

opengris_scaler-2.4.6-cp312-cp312-macosx_15_0_arm64.whl (3.2 MB view details)

Uploaded CPython 3.12macOS 15.0+ ARM64

opengris_scaler-2.4.6-cp311-cp311-win_amd64.whl (1.3 MB view details)

Uploaded CPython 3.11Windows x86-64

opengris_scaler-2.4.6-cp311-cp311-musllinux_1_2_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

opengris_scaler-2.4.6-cp311-cp311-musllinux_1_2_aarch64.whl (3.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

opengris_scaler-2.4.6-cp311-cp311-manylinux_2_28_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

opengris_scaler-2.4.6-cp311-cp311-manylinux_2_28_aarch64.whl (3.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

opengris_scaler-2.4.6-cp311-cp311-macosx_15_0_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.11macOS 15.0+ x86-64

opengris_scaler-2.4.6-cp311-cp311-macosx_15_0_arm64.whl (3.2 MB view details)

Uploaded CPython 3.11macOS 15.0+ ARM64

opengris_scaler-2.4.6-cp310-cp310-win_amd64.whl (1.3 MB view details)

Uploaded CPython 3.10Windows x86-64

opengris_scaler-2.4.6-cp310-cp310-musllinux_1_2_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

opengris_scaler-2.4.6-cp310-cp310-musllinux_1_2_aarch64.whl (3.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

opengris_scaler-2.4.6-cp310-cp310-manylinux_2_28_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

opengris_scaler-2.4.6-cp310-cp310-manylinux_2_28_aarch64.whl (3.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

opengris_scaler-2.4.6-cp310-cp310-macosx_15_0_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.10macOS 15.0+ x86-64

opengris_scaler-2.4.6-cp310-cp310-macosx_15_0_arm64.whl (3.2 MB view details)

Uploaded CPython 3.10macOS 15.0+ ARM64

File details

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

File metadata

  • Download URL: opengris_scaler-2.4.6.tar.gz
  • Upload date:
  • Size: 6.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.4.6.tar.gz
Algorithm Hash digest
SHA256 4656d4aa362d489c2b5a8cbf14affac00fa432f5d1bcd6ae8c5a6c620ebf9dfb
MD5 263e639eba6bdc23edcbe61db11360c3
BLAKE2b-256 9a8769a73d9b455eece28d6c9b9fbb4904936d662d91d9ee6ad3b4b17f428171

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.4.6-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 d7de7e457af784e96921445908de389d0027ce284c54d91e317ee0a50fb44db9
MD5 82bfa681ceca7a3592f0b93b14b7d3df
BLAKE2b-256 91e065f61dd30587cbcfe5b4af14e8097231c30d1e8f42f43887a802f3f73ab0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.4.6-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 58808856c2583e717e3cf6eee9e62b2290e4c78fa035e3dc7968d0381b7c1ec0
MD5 b53fcd71dca36da38e1dd9f157f15625
BLAKE2b-256 39d4201f7b2c117904cf7fd4214fdfbf29016c87f394d0d7cabd36e2f5e7cfe5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.4.6-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 db084071ef038fc02b258a5ef965964a974251834dd1ff376ef4939508d0f2f1
MD5 170027df61129da2ce4fb19b90cf304f
BLAKE2b-256 77b8e2fbef847441f561d0f4c5d8e0a7848a879994e11cdfa9dbdbc123e048fc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.4.6-cp314-cp314t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4fac4449ca88af12bcb57140699ca1cade5e52866ffcf9647597a8e4b1a45862
MD5 b6940bb8a36b5ba489b3663b7d3e7117
BLAKE2b-256 b633a32af8e8431eac869f06de4654c695f845136afbdc798b029573bd91ab6d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.4.6-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4e299faa91011418212ffe993c8f4c3dfde81271ecaf3b47e6c8b24b80503f50
MD5 802743d6a6c92d5f19cefe7019033d76
BLAKE2b-256 4bbf6b875d6040ef922a7d4e935b9b9a912136c05a86b79179256595e74f2d63

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.4.6-cp314-cp314t-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 ef5f8e5a6047a3b26a05be99fbdc07046d0ee1c286167c177595b00c5f15340f
MD5 7d6e2493e6706e068d941bef6f186931
BLAKE2b-256 f4c3ced04db2f9fa82f0791b3b48b77552d0d46492e59dbf91fe91325ade8fb5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.4.6-cp314-cp314t-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 1f407105fb9f4cda6deca00359fa3ddd737c7c6110726f92bb736ed7abf98170
MD5 ecdb65d84f4d7b78c70d303180e08d4a
BLAKE2b-256 b18954d874b29f0be3872f5f6cd9741eb0e8a44f5f0c8a1e912b1d4e12e90f46

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.4.6-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 71b3ac7f8d91b47d0c1d8d3023d1c6d51eff75e0db7d6e7511fca6179b9719bd
MD5 d4ec560bf24bd2412eaa0db025950978
BLAKE2b-256 2368b45cd407f12d19d6bf70c1908a46990265ff9162ee255648497fed84471c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.4.6-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f86aab358e12132f812ec7e2adb5fda149e8f8e6acda5fab9eade777940df735
MD5 b17f4da620a1f6a27c8ddec3b8d6b2b0
BLAKE2b-256 5d1df42eb1fa4ca08becbfc6a19a95645e213d3a75b4b7bb2677e773ab13d14c

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.4.6-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.4.6-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.4.6-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0d2b5420fc49e1a8ad6213d10ca55b2b20d99864ac0aa36b5f8566d4ed92f398
MD5 57d34a92a81b77dd053acfdb752238f3
BLAKE2b-256 35c6e44bd87b9d19c4033883534b97e8f9a904a5e3c785491b199e878ae11d9f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.4.6-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9445a130d477c618f11808023a7bef14d606b7597b3e3b979b6c0f2962dff073
MD5 907a529346e3454118e6754914881e19
BLAKE2b-256 b678d8f946d86a2792b5c7062c8e9f561c6fdeb4fa77fd1bbacc6efe16c22950

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.4.6-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.4.6-cp314-cp314-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.4.6-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 263f3b58607d1b5b6632dac7f630809a8a821f26fbbb59efa8a7e9709b3c9b07
MD5 c0a62da7b291f71d9130941c9fb52af5
BLAKE2b-256 ae122e695cb3f8791c9b28dac206f87b2ecbfc15015e3e670a6d17ad2cb17d80

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.4.6-cp314-cp314-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 f77037f99f4ae74492ceeec1182a01aa9239b7adcd6f48358234fca7939cd39b
MD5 bc44f867e17e336d00b6669c51bbb805
BLAKE2b-256 0223fc6b0d24340a94d2cfd2a6a029e54a38ef0ec47742a06a0c3ae51e0d1f2f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.4.6-cp314-cp314-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 eea57d79f89dc55b5bec6dc0657ccc54572c4d0ea9743655ec7461ee41aba9b7
MD5 bb014e84a68cd05d55dbe8eaeaed528c
BLAKE2b-256 07fcc84007d37a22a66b9ccfdfb67d56ba73af88521e9b2eda60049b77051b18

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.4.6-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 638ec27611f04769162940ced78e7141459549de03529fe5457a0c3a8fa77b5a
MD5 08357f2e188f50bd05c1cf75cb829880
BLAKE2b-256 ae7c9d626f9526a2c118e93847e89d8f5dee09fa7653d751c74d7981164db068

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.4.6-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6d7fe558152ea5511586346e49fe1d14eeff92950f9722e79195435afe53f00c
MD5 c434f096172b7e65ada612722c151d24
BLAKE2b-256 8e07df9b56cd791da6bc3c13809e81828cab1ca5b13b7447c0e78d4355c3c019

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.4.6-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.4.6-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.4.6-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 693b61f66caef4e38031d6b46d35215f3596771c5a41ede00b01324e76c44149
MD5 e0b03f6810872be183b23b03ac860d82
BLAKE2b-256 997b3166f14779f47ea61a5ff571b3c2e1e1d4da63d10d968ac3e0c844f88fbe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.4.6-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b79728539408c4eb008f0f3eefcb66625b00d09e4efc5a48dca4a20c61f85045
MD5 33bb9dce84eb8e5491cf6968877b39fa
BLAKE2b-256 3cac3273f21ac85a7180da9ecf96aacc7d646bcc29e4afddf6e940d8505b21a6

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.4.6-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.4.6-cp313-cp313-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.4.6-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 839a2dc5d0cd72c9e8875e497172569487f8b55af676b17d0a50841cec7df517
MD5 e80aa299c42ad696d4e9b81c13400069
BLAKE2b-256 24eec5ee95591fbc493924253cefd370d6cde7cb83d3b12f949ffa86161887ea

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.4.6-cp313-cp313-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 69e636c53a45a0da350c4f2235bd718e497f5381fe50fc9a808adaf19fe97c73
MD5 e7235cb0645e2a9d2be5e270d7c773ae
BLAKE2b-256 e2eb9cfd41587817225d5f1fa02a3b85662fcab0db4a4c040f316e3f5b5b0d64

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.4.6-cp313-cp313-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 f98d3df96f0a0b5f5e0e93421674f8344d75d59e27f5cac9094f93cd380f43a3
MD5 670110a52243f94b57ee2af6991f415b
BLAKE2b-256 0e4ada01385f47f0cbe5c027a7fb4789499a6925680266dd1271a1dc5fdbbd41

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.4.6-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 486b245b25ee692b3fdc4bed2a9420089a51a23b72702a29847929577092d573
MD5 24a7c2ccc35d988b7ff96a626c4c7f04
BLAKE2b-256 3270ca84539d45a1bf4240552bf326a302f3f69cfffe4d0b04323b77ad3feac8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.4.6-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c72d8ef3fa9a1cb54304bad54701a58fa7e77139a3c9699f4b16d55c7a942f1f
MD5 45edbfa91b6727983e13e1cca481121a
BLAKE2b-256 a75f924e36a74388280e2cd204fe724b3e911eba91cf0db2183d4995d9e45695

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.4.6-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.4.6-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.4.6-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 83dd9c2d389d5956c08cb480a21fd6a6bc8e782c7d9d4a93ed18886dd69baf3f
MD5 96bdd83956d16b067091c285b5857106
BLAKE2b-256 f3b8cebeae78d2f1901e59a7484825775345f15149dd25afc369b22415f42812

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.4.6-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 33104d8aff7a1a593158fbcc57d9fdda237a184b4ecc4e66d94ecdb8015a0dfd
MD5 a22cd077a6d049ad851a2db63648e54c
BLAKE2b-256 0b00003a5d55afe47b8d8d16d802065c8a179d53a869f327d91276f8b6a6331f

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.4.6-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.4.6-cp312-cp312-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.4.6-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7fae490932db139463a531e288cca3f9ef0304ffa51b5d0263f495ec249a3362
MD5 a3ca2b0b6a979fe8c3d5442d196c435f
BLAKE2b-256 a82f5d0f5bb562d1b1848271ffa3b51fb5f4b3b4596abcfb003413e05efed1f9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.4.6-cp312-cp312-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 d924ad79ce9b4b6a25b074852cd88293370302126fb126651b4de8722268118a
MD5 b44794bd29d2996e455e22f3eb45e666
BLAKE2b-256 c8aea76b7ae0cedf0c523dace1065223c95b7f823021bdef36ce5e2aadb473d0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.4.6-cp312-cp312-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 744742e50de167b2c36717b59fbf2779ebc3375c2c368553175df08c7b2f901a
MD5 440abc69ef335110eb0240a3fe88fab3
BLAKE2b-256 3400c7da7bec19c337fafe0436e9e71f8498567b9d1a33976db4d7b263812f51

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.4.6-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 029e7967bb31b4b3fe6493cfd3e02a8132bc066d9d799772fc866a3a4bf4a89e
MD5 0f4a8e44cdd33688a618fd745bf8d923
BLAKE2b-256 48986931faa01a7d01c647aabfd85d149851c1a63f33fa5ea6fb2e53531cefda

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.4.6-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7c153f97fba9f42f84db9e441b7a4921e3a49992e87b9bd6cea0b74c7b5dddca
MD5 d0bbaf017e5b581c21111dea765ed40b
BLAKE2b-256 25e60a94387ab39f8bb18dc8485234cd2e9758b60458158eea3da5ab7c419828

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.4.6-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.4.6-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.4.6-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1df71b16cb7d2178520f51fd61c555230ed7afd76279d728b24ebccd23456e74
MD5 3c7930aed03eaf425f548d1d17c0e364
BLAKE2b-256 bc1f380908dc43fbaa48543f3f1f5c4ffa40b560a772e1c6569671991e9e3a48

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.4.6-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 847f26bca5d05a30ff077e9b3ababe449fa3faf5b16f0b744355921d0a9baf88
MD5 d814091a1458ed06201b8562902a8212
BLAKE2b-256 e06224504a225fffcebd014bb0fad26231fe2291d994ebf91c490cddef4c8636

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.4.6-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.4.6-cp311-cp311-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.4.6-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1c8c5642e6f806df65131e2cae8aace326470bd984c3d869bbdffe599f5cb9c8
MD5 61561c87f74c6c2e50425f552b13d815
BLAKE2b-256 9c4f00002fa439c08c226633368ed86e8d0904cd0074beae648ceb3e15608cf6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.4.6-cp311-cp311-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 5a74e92e6478c873a97b793c47063316464a66bc52f9105ecab521b0d7844aed
MD5 1af80df58cd54a76ca660e1392767397
BLAKE2b-256 567c573ff6dae8df92acc56164cdf4b9173dfb4d89468cedff35c84f5db3960d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.4.6-cp311-cp311-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 97cf3c16fd337bb78e5b5d50131185a6029e8baee271d6bf05dd27ffb0627ef2
MD5 3887815cee03d9f60c48458c8df12562
BLAKE2b-256 3ef838d6658970781c67813ddeb902d1021dd3a46473897412013e763347ae26

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.4.6-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 285ab48ef4eddbd2358e7893c9abe2d785d9c71bd48ef8cae60ca659d73ec25f
MD5 f538e3de660e0eae97c3293c9cc01abd
BLAKE2b-256 4869fb127ca8cedea2b5d610a2eea3ad6ad0ab8b132b95f2f422a86074f35331

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.4.6-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 72a78fb4ca72f4a2d9ce05074fbcb5fb07d4000156e1d363ea7302bb4943b70b
MD5 df01f4415947fdd80f0ca816dd3d572c
BLAKE2b-256 559441ec39ef0e7ec2c587e615baf55418fc17ba1dfb286c66ec0728131d3e59

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.4.6-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.4.6-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.4.6-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e49e2e5cf7cd0255624a7b9016bf922e546ce9c5d23ee47b21fe360752da5e85
MD5 c5bf773b352748694da0e3030398d355
BLAKE2b-256 da17badeb9239ec347a4d468d875c3c18aa149221ee3d2b1ac0126b58a0d83f4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.4.6-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0a2241de129739ba33ae6188cba5fab044600f3ea0aca5291116329988d6efff
MD5 ea3f68a0ebbfde33a4ab0be0f981c8a1
BLAKE2b-256 99010da380cdd3b93facd74a5e5d463ceeb3f1b81b7db3bc1cbfaf042877db31

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.4.6-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.4.6-cp310-cp310-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.4.6-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5ea6c5e5898f1909f2afc9f39ce96044dd4a5a0359793b6a6f4dd966528a0a2e
MD5 eefeb9d755d56119c797a66f102b8280
BLAKE2b-256 427df8caee155da9c5e5793f4a1c36052beaf684aa62d24a176f58b915a1c74c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.4.6-cp310-cp310-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 65386b4445ccebd5492cf0537307b10c213101b66dbc8bd1e416446f438d19ff
MD5 fbd13866dc031637ab485607409206e8
BLAKE2b-256 87de878d5ef1c12da49a1d2f10e56bc6303960c45a84443d33d6b13f69023378

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.4.6-cp310-cp310-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 60f8be32b297f65f3a6b0197d44b31857390de531eb3d3da161dbb8a7800856f
MD5 8c2895ae9eed061acc582ae6688bcd08
BLAKE2b-256 8e88c0476888a2d939cd5a042d0c68b9952cdc68b2e335873866118d74567e2d

See more details on using hashes here.

Provenance

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