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

Uploaded CPython 3.14tWindows x86-64

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

Uploaded CPython 3.14tmacOS 15.0+ ARM64

opengris_scaler-2.1.6-cp314-cp314-win_amd64.whl (960.8 kB view details)

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14macOS 15.0+ ARM64

opengris_scaler-2.1.6-cp313-cp313-win_amd64.whl (943.7 kB view details)

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13macOS 15.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12macOS 15.0+ ARM64

opengris_scaler-2.1.6-cp311-cp311-win_amd64.whl (943.5 kB view details)

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11macOS 15.0+ ARM64

opengris_scaler-2.1.6-cp310-cp310-win_amd64.whl (943.7 kB view details)

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10macOS 15.0+ ARM64

opengris_scaler-2.1.6-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.1.6-cp38-cp38-manylinux_2_28_x86_64.whl (3.5 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.28+ x86-64

opengris_scaler-2.1.6-cp38-cp38-macosx_15_0_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.8macOS 15.0+ x86-64

opengris_scaler-2.1.6-cp38-cp38-macosx_15_0_arm64.whl (3.1 MB view details)

Uploaded CPython 3.8macOS 15.0+ ARM64

File details

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

File metadata

  • Download URL: opengris_scaler-2.1.6.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.6.tar.gz
Algorithm Hash digest
SHA256 cc6a831fcf3b690b86e04babb670abdb9572ea6dc9efb6a1a9c01e12e898cdfd
MD5 630f6faa15146b4f6615bf11940f808c
BLAKE2b-256 3fe69e510ed0a7770febe171a2d033a3564747ef3ec7c758c7b361ae0328774c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.6-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 afbdf480b738be2b9757fc403b891d2d7eddcd9802d347ef849b554b8c9846ba
MD5 a86f937e59ee98df7ef51f873c5fe0fa
BLAKE2b-256 37f61e6da243d0a43b27ba100b72e8eab16897b7bf1638545537b9126d1b9290

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.6-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b5c6a27cf02cc341eb5819082cffb6b639f8682b337b3f4ca4bc58df74f6f9e7
MD5 4ed6cd3985ab02242ef782634a150625
BLAKE2b-256 116e9a32de05c6e43cea2a84e0c51433630b2678a5d202f0b29cebd1768a3b98

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.6-cp314-cp314t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5707c51ca4e4d37b4f90d226ffdfa8ba2b16ec47984b0563f1efbc4fe8357e22
MD5 c7f9aecfb53f549cffeebc79e293f055
BLAKE2b-256 8cdac9f9db83b994c6bc1b7248347c1339c3b02f57455b618dcb565228dce255

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.6-cp314-cp314t-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 f9fb92b382ee731e79e9f3dc0faae2b822c2b9f70ab101a94e30e28799fc90b1
MD5 601b518640daa36ea8ac5550b3a689db
BLAKE2b-256 562038da7bd9d62cc0af2cd6cb3595ec242a2ca173f3f026f3a029b14a3865be

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.6-cp314-cp314t-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 08afee89d59cd3432160320ea51aac62f8a1b32b06e0cd90e3ffeaf2719f3087
MD5 b9c4b6a07b26b620ebc645c523c45d54
BLAKE2b-256 ce77ebfc81c8eb4efd8a0eed611c8a1432ec1dcd6649b5d60f9df0f03da6084a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.6-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 f7f678ada66b88a7179fc2680837d1351f887c7b3e1374d87fa02df97d2ce00e
MD5 217c3ff4da2ab11f4c553fb8a234ba6f
BLAKE2b-256 b822b28ce2439c5c19c3e8eea4556c2fb36d7d478557a91d5f31278902ef58c4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.6-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1be20aa3f3fa2c60e4ec3ab3a707480d5a59e2be345c9ab4523d4de8619d2e03
MD5 0f33657414d15e2fab98b74acdb38624
BLAKE2b-256 6b98f32b7180871f3d0143a29036468ef1ee71c6723c873343a14eb4186c86ac

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.6-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7369f8bc4426a6456f14fb312a6e23886c929e52fe81edb361468e9d41167c7e
MD5 22bd36b3ff58590bf44fac3b8fd4cb7c
BLAKE2b-256 405f20e11e26ef9d286f46f387c44d99cdc70f349ab05bbe4fc7f3c7028d283b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.6-cp314-cp314-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 e640619e6ff9e0e936b168dd74a65383bf1e6f63dfe9f31d83cf7b1f7227eda4
MD5 53fa72b6798f9c8d64d61ddbc89197b7
BLAKE2b-256 d68c4f4f8d2d346d73352259478e095655f2c7471636d933a86346d9c40522c8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.6-cp314-cp314-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 191c23687585d852d50e0f768545c7ff0764fbced117b13514934e7623980e59
MD5 5812ff7690d885e9ebc6935e8285d7a5
BLAKE2b-256 2b607dab61632f4227e27d24a4debce52d5e8c3a951b0be66b7d9b99b0f20675

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.6-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 242adda5e66ce9de85f10f3d658c2e25634fb99c1dfe1f257998137aa3078e84
MD5 a411a6a969790b175eefcc3b48bcadd7
BLAKE2b-256 d1896c2546976d45f00d40eca14633fda1dcaba7ce43a5edd3f6cb2a36a9c4d4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.6-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3fdf9c8d4eac48fec727298afeebb1e6ff633cdf9da1816ae7ada677a948c4ae
MD5 3fb696e7fb96ba729e195033088e1eac
BLAKE2b-256 849640c70ba069c11931be6dfacfe31d03412abd39bb42e400b1abcf98454f8c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.6-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 897869d224f4766f8201939a817892d5beb16d23f1fe90cb8f5a38181e44e962
MD5 07c18ab5483715e1edf72878669f170f
BLAKE2b-256 3811185f019773ed3d3d422aeb8569d1c6c57cb8b78c07bea3fa4d5588d5c4cb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.6-cp313-cp313-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 76d0daf0340e75b305ac4701a1f046675755dcf6d576fc28ae4ce7ac9c20ca35
MD5 659bb5a7f17c9fb0382235f1a15eb684
BLAKE2b-256 a341112e35f0e14f8c5afb5a57c3d68254d50bc1f054c95d08f7845f01869ea3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.6-cp313-cp313-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 27fdb759277769a395ae7d50fafa38e03ac0fae81768b796a95b4994483cbd2c
MD5 4dfb2590e42a44c2e1144bfa42ebde1d
BLAKE2b-256 3eeaadd07cce6b5714a3c56fd97bc8da69518a62d13e91f2bad7282665bffacd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.6-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 857a5291da77ce539ac0896512a0b19a06c500a72590f8e9613573cbdf4f4c96
MD5 1db42e35ed24642447f5f7254c1f2fc7
BLAKE2b-256 a7a57cd8fab35ddafbef0da04cf4494220c7f87d2c0539b1a942ef7a7d2e9c93

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.6-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f04f291c92a9593185868091fdd077bc11c881dd087e7ceb442ba79ae4e2e4df
MD5 1d14e946526fbaf0b06a561d7c1d2c9c
BLAKE2b-256 a2e50a6b96024941f575e1e13f193aca7a3c9e394e55a1e78e5a127addd04d69

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.6-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ac6f7149534db030a63cdcb6ccb42001b18afa8746b5b204347c99272e2c0e85
MD5 e9dd4697ce8e69de03c331dca5268201
BLAKE2b-256 09ce94919b86bef02e0cb62f035b4747e77dd7a097565d210c9e59f088fdbb2f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.6-cp312-cp312-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 6a8d95f816bb5a02b6eefa47432d228177771b08ee8eb731ef13c68773f244c8
MD5 90f4f34044e39e22c06dd73d451f3523
BLAKE2b-256 d43cf3737df91ac0bbca9ae63bcd616ddc9b87b1dab77220f9f33343675a0e18

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.6-cp312-cp312-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 47045cffb02f3ac5acad940bf114d56dbc60e719cf55720447eaad687310177b
MD5 4d86f3036bc8aedf571f694839f46809
BLAKE2b-256 9d0fb4506c7fac9b14240a7b8059a2a56ae3fb19d437124339fe52e597de3cfa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.6-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 ab07aed7c482bbc5bfc935b21a1bfbbe2d1c9bb3332e0242e1b0f5f24dee1a1b
MD5 1c98e09b2b0407f996875d33b9d90b51
BLAKE2b-256 0abad98fb17c1950d7d93a4443f42cb8c44e463fde1cc3cfb08d51f504f655ab

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.6-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3e30623f70b6b0112bebaaf75a4f3d7beb0ce0574a766ce82babada825c88470
MD5 1c709b0f681e3e8feeebf5269e4b4621
BLAKE2b-256 a0aba7736afd164d71aa996dad9b2446f759f554ceb666d10a22a1965d605dd7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.6-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4b0bfa5ce19723719614d606d529583d14bf0f033c42418fc29cb730cac818af
MD5 ead37d10f42d284b8e9e07dff00b6cc2
BLAKE2b-256 b5377f02c524921b3561d8fb410a035f36da14600570e4423f2c2c954d701e8d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.6-cp311-cp311-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 3c4e66a5f8f3e6a2dac694d120c28b9f8810f807edf7f023fb835dde99eb24dd
MD5 2261715541d10b6f0f6a9285a3da277f
BLAKE2b-256 fe3b5ca49a5120466d00096070a822fde619a01bc609371f1e083baa822888e3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.6-cp311-cp311-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 6a574f71c0125d7c1f74ef79b04f8b0a1ccc19f12c3afb0d4ac9676d9e197d8d
MD5 214c21bcaa234e881a1926b3e4932962
BLAKE2b-256 02842582ec9c8b6918e80d8ff03fc296866556914680831a8eab49c3bb11e36f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.6-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 adbb6769710bdd5263c1eafe58f1e3b52a0c7ae52f99f302f443417e98a09044
MD5 adc3b08ff840fe9c5286a90181bd0f81
BLAKE2b-256 2207e3d390a5347d7ab3a873aea1afd9a193117f7e176c70e324c11dcf42a7ba

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.6-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e870d4887668604bcda007b50b6140e474fc0764916da639ace3fe105adb9ff7
MD5 dc222674662279adba6a847afd8d6200
BLAKE2b-256 a603d8810ece345d2ff8e4ac0dd6dcfeecf9f20cf820611efa45a0c9eb987a54

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.6-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 74751e52b4e1f91099030d3480eba72a672c7d7cc7605b24a229b899c07d5ed1
MD5 c3d6ffe4144c296b699e2ffb8b2b8a64
BLAKE2b-256 a602a7b89bc7838d8961175bb6473c4d39285532425c2df35e6052097b73f39d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.6-cp310-cp310-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 1a8ecf5a3926fb0da8f7fe9baba3fd17c754db003a0631c30b6b4cb4e3977ddc
MD5 4d9234d09113216b8bfad360f184b99b
BLAKE2b-256 540765c917ba320fe11de8e39e48beb70178c207aa84065922a925175b8524cb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.6-cp310-cp310-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 6ce7898287f9e0518295904f012eeb6d7c5995624d7de1404efd5d9d6d2ef2d3
MD5 4125f840f26a92bf7910abe63dd94433
BLAKE2b-256 3f93ddfa613762b31a2990fdd24b0e743b2201966ed1c2b59ca55631a8afa568

See more details on using hashes here.

Provenance

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

File details

Details for the file opengris_scaler-2.1.6-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.1.6-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 dff21ceb4e46a14f1ba4f52989184157b2d5def69af33cd448a818184d8c429c
MD5 f23b56cd3086e46dae6a38b7a0d71df2
BLAKE2b-256 2aaf790032b66a7e161b6c3d9a272ff8b783855e55bf90f69f0e887f79233e37

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.6-cp38-cp38-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f2484b32cf6c86681a5132931b7370dd85b6d344510982658450252b54874ff0
MD5 a8027779465cd7a11302a80f4f40c24b
BLAKE2b-256 97491a7027b88a74c35942c1f49da50ff9a1f2ea473421304d01c882e2f273b5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.6-cp38-cp38-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 61bf1caf48193676de49f3f4652edb26747d5f1b370496b3b26af1036967b64f
MD5 3f79c69ab1b27cfd3e2488a8dd4cdab8
BLAKE2b-256 acef6a21537355c70df157f9d6737157c23121b64d930250bdc8d3c5a2ec7f9c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.6-cp38-cp38-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 9c7f2ba78037fd78d63df5feb72aceb662808ee7bb30f7b68fd95f2b16bfcbae
MD5 8b5da5533d745a97fbbab199f931eb62
BLAKE2b-256 366ce1cbbad6a1b7609b65cddb787fd5b9560750b92a61800008ede705215ba7

See more details on using hashes here.

Provenance

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