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

Uploaded Source

Built Distributions

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

opengris_scaler-2.3.1-cp314-cp314t-win_amd64.whl (1.0 MB view details)

Uploaded CPython 3.14tWindows x86-64

opengris_scaler-2.3.1-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.3.1-cp314-cp314t-manylinux_2_28_x86_64.whl (3.6 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ x86-64

opengris_scaler-2.3.1-cp314-cp314t-macosx_15_0_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.14tmacOS 15.0+ x86-64

opengris_scaler-2.3.1-cp314-cp314t-macosx_15_0_arm64.whl (3.1 MB view details)

Uploaded CPython 3.14tmacOS 15.0+ ARM64

opengris_scaler-2.3.1-cp314-cp314-win_amd64.whl (1.0 MB view details)

Uploaded CPython 3.14Windows x86-64

opengris_scaler-2.3.1-cp314-cp314-musllinux_1_2_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

opengris_scaler-2.3.1-cp314-cp314-manylinux_2_28_x86_64.whl (3.6 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

opengris_scaler-2.3.1-cp314-cp314-macosx_15_0_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.14macOS 15.0+ x86-64

opengris_scaler-2.3.1-cp314-cp314-macosx_15_0_arm64.whl (3.1 MB view details)

Uploaded CPython 3.14macOS 15.0+ ARM64

opengris_scaler-2.3.1-cp313-cp313-win_amd64.whl (987.3 kB view details)

Uploaded CPython 3.13Windows x86-64

opengris_scaler-2.3.1-cp313-cp313-musllinux_1_2_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

opengris_scaler-2.3.1-cp313-cp313-manylinux_2_28_x86_64.whl (3.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

opengris_scaler-2.3.1-cp313-cp313-macosx_15_0_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.13macOS 15.0+ x86-64

opengris_scaler-2.3.1-cp313-cp313-macosx_15_0_arm64.whl (3.1 MB view details)

Uploaded CPython 3.13macOS 15.0+ ARM64

opengris_scaler-2.3.1-cp312-cp312-win_amd64.whl (987.3 kB view details)

Uploaded CPython 3.12Windows x86-64

opengris_scaler-2.3.1-cp312-cp312-musllinux_1_2_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

opengris_scaler-2.3.1-cp312-cp312-manylinux_2_28_x86_64.whl (3.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

opengris_scaler-2.3.1-cp312-cp312-macosx_15_0_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.12macOS 15.0+ x86-64

opengris_scaler-2.3.1-cp312-cp312-macosx_15_0_arm64.whl (3.1 MB view details)

Uploaded CPython 3.12macOS 15.0+ ARM64

opengris_scaler-2.3.1-cp311-cp311-win_amd64.whl (987.3 kB view details)

Uploaded CPython 3.11Windows x86-64

opengris_scaler-2.3.1-cp311-cp311-musllinux_1_2_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

opengris_scaler-2.3.1-cp311-cp311-manylinux_2_28_x86_64.whl (3.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

opengris_scaler-2.3.1-cp311-cp311-macosx_15_0_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.11macOS 15.0+ x86-64

opengris_scaler-2.3.1-cp311-cp311-macosx_15_0_arm64.whl (3.1 MB view details)

Uploaded CPython 3.11macOS 15.0+ ARM64

opengris_scaler-2.3.1-cp310-cp310-win_amd64.whl (987.6 kB view details)

Uploaded CPython 3.10Windows x86-64

opengris_scaler-2.3.1-cp310-cp310-musllinux_1_2_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

opengris_scaler-2.3.1-cp310-cp310-manylinux_2_28_x86_64.whl (3.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

opengris_scaler-2.3.1-cp310-cp310-macosx_15_0_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.10macOS 15.0+ x86-64

opengris_scaler-2.3.1-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.3.1.tar.gz.

File metadata

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

File hashes

Hashes for opengris_scaler-2.3.1.tar.gz
Algorithm Hash digest
SHA256 ebf1108cc6ebf341de35efeb4ec65c480092cd50c66306e1a3b6517f57965b79
MD5 a374c7fb90b363b13326c072d4aad23f
BLAKE2b-256 9454e70d1c6be7da7b9d164152adfb6fe12b6b5e6bc14f6bae776650b5675447

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.3.1-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 6a691e9c49a7a4b019e2ac20caae46d87a9248d077a0c42aeddbe4152670db46
MD5 9846fcf65762ba2107826e9957273029
BLAKE2b-256 75ba666a729e0a87d80f46f0f9b05e99d3d3e085a4c1a9268a0134fa2374c58e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.3.1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 eee5fa955f9d955600dc33c21aad72f97304a9cbc8fefb1e5d76f79d957f757b
MD5 eff4d790bf66bde3c0b0624a890c6eed
BLAKE2b-256 cbc7aca3925df35aeb704a15b488ca78f8dd12f8bd77c4b1915c972cd45b41c5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.3.1-cp314-cp314t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 89ef1d168bcc8086b1783b2b50755b261d4076d1e664fe80f764f61a84974609
MD5 1eefc9db5161fa88a702266e33d738b8
BLAKE2b-256 f402d8922dcaaeb8bd2b20300721d58eba68f57fd90e5158ed1fefaf3a3bebe2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.3.1-cp314-cp314t-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 464bde603433db5be182d354f18b5fc71dfc0c00dcf3b52d3a1370d66f1f4341
MD5 598519d4263ca182ff6f7adfa59eb2e9
BLAKE2b-256 b7229c5db18d804dc165e70504620f181cb8d6c9e1439ab23161d1161bbc9a85

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.3.1-cp314-cp314t-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 0af2c8c08b15915295678d097b8f97a121bfd295cad4c4bfc889752ef54b4705
MD5 80e6970fd2c5e511b3951660086c4263
BLAKE2b-256 d3c16128a68eb2bc3843c1e81acd7f63c898b88f8b43c2d6dac09d83a48e1ffa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.3.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 d6491c2755e787c07a39117e0af48611f65c9c88918725583393aeb6dfc49fd0
MD5 e7c2b05591612da5b47948b7a423d85d
BLAKE2b-256 9828b2651f8759284fef5be02f4d29549ab00ba7f646912fbdd16b6c340b2a36

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.3.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f27e717bad7bab8b5b839f83478d67ff1b6e69e9d64de05dbd2a667be95709c1
MD5 798288f61ce984e18d79b1033cb7de89
BLAKE2b-256 63b4ce60fc8836333afdafbe6210c8fb125dce73d45451f5376e53349d3ca28d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.3.1-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1ea3b7b428b6a813c71ffeb24c7cc0592d0296cc30533500d369cf22c58646f1
MD5 0592e072947e4b340c40e7fedb6d870e
BLAKE2b-256 f688307e142bfdfca267a11b8326c70ba9b984fa3be1edb259c4dd3397e5731e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.3.1-cp314-cp314-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 77327f1a92329aa05d0bbf72a752ab635072fae82fbbf0ee56550dd5bc50553e
MD5 415f61c6b2367171d0615e3d42ff8bc6
BLAKE2b-256 270009265d9c5a8f80a8341a77db001d98ed5f92abacc71d6a313b243eef42c0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.3.1-cp314-cp314-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 d1b3402001b0daccfd1945d21d573eeaeac236468db014f10cad84f1ea815513
MD5 704af756f59e6b648002dfe8b350d9e3
BLAKE2b-256 f24cc14ea24cf77474ad9b2cddd09fb485498cb4bf3eccc43a4d119d7d83cdd1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.3.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 00b1e590201e9e1517486f4cdacb86e5e3eccbf99aa689aa767a257fffccb41e
MD5 868e9529e84ae038e684a25203ee7e2d
BLAKE2b-256 06d29450d621931e811c2033e4041e59eefdd5ae9bd2c356aac5681df31e07e6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.3.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6f67ab58d41ab23c9a41b0b37f7f0feaf643353a569aca8bb69c4b564ec631b9
MD5 e730b3f4643020a67c7fac821f071bc6
BLAKE2b-256 a2b1daa37d0d6eda653d09fe928787642065c8fbeca3fe1e336aa8b894effa8a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.3.1-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e26ce213c215b15e83a7840a8e5fddb1a2d378f72eef96c499850b7b6e97f9fc
MD5 feacd19628e720c7de3fa3ebf99a56b8
BLAKE2b-256 54161679efd94226fbd989489cced64ecc6844f2b767422456d03e870c7229c5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.3.1-cp313-cp313-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 ba69e63c04e7af3608cf3181df65d9be4305335ab269e9cdc11bccd450a618a6
MD5 8f5bdebfce35db3473003c5ec2cc9492
BLAKE2b-256 d4fe7029327732ca99c6df2244a58a09b207d2c6f814680b88bac6afa8655106

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.3.1-cp313-cp313-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 014bdc002001d36450e8b2b7cc4e58dec6c9044b503fc2153945852dc5517fed
MD5 b57b85d6723aa52ae60345dfef47c0b1
BLAKE2b-256 e2fb6e1290d7d98aeef15437a68e53f509d158e2f7f01db1cf4a5a560c4242ea

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.3.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 1a0027d16f97f206bd202095c45faad31fbf4e18193ab6e3c75688e31c828a57
MD5 80ad658f5ff2c3f656ea840636fdaa31
BLAKE2b-256 e9df00f6dedaa58d1584d32e62593116d928248912311af7122814a6c90421b0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.3.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7066bfaa138084c9291a6d81635f8152f00ba76033bdc958e9bff8a40d73bb83
MD5 37d7f46ef70152893f880ace63a583b6
BLAKE2b-256 47871e004d2439b40f703519798747dbb5ece492a12122861d15739aa301acef

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.3.1-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c67612b54834fec702dd4ef76e8503fa74f5423a431d6172936f2a4d4a945cc8
MD5 997bece100e11965f1c01b46c814c6f6
BLAKE2b-256 a025996bb8f49c29f063f57e413f22ca8eb5577167ff737d43fbcb0f7d4d1a1d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.3.1-cp312-cp312-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 a8fbbf25b7869791bac2a554a8145cd84f50eb0f875a9a68cfaf53c76881ff45
MD5 777f375e33a2be7782d8b4ccc41ba3bd
BLAKE2b-256 c13589d7bbcd87c563df163dfbe76f838b2d2ac8b7b541b0a6ca0dd5abcdb059

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.3.1-cp312-cp312-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 7269c33bf7fba87cfc0fe847b10d8c5048b7307784a3e7c8f49b14875787601c
MD5 9b213c93ffb151ecb53a84e06d26e8ae
BLAKE2b-256 45d0510913a8a0d3714fcc948723a163b2565465fa70f38800af8022efb0b491

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.3.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 bdc3150b41ee62f9aae2e0c698c50ddce24960ca13ec341e1e323a8147946027
MD5 1e3768405ac52be41eddab5133bf3d02
BLAKE2b-256 499ecf98cb8f6f86455a02fa37e444bae2839e7dfea19c6951b47166c15c11a2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.3.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2fdd8cfc9e3d4dd451f964d0e26c935375da67505ca5cee2138ea110bedd70ae
MD5 37d3c0cdd4c67426ab93b7c074edb395
BLAKE2b-256 6572dbbff06a712b57f32dc254b397c76e034521fd1b15a38fd7dac2528b54d2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.3.1-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b76fbb3de2925b39d68caf85f8437aa0e1142e10ad14a852f09dc6ce39846832
MD5 867176611e8f91c25314d54f92a2f344
BLAKE2b-256 a8935f19d86ade9b4e17c8444442c63839390a8920ef3903027f6fe1375edd9a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.3.1-cp311-cp311-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 aec5da2fa307ffa76c0fd7f42db0d5f03c893cd976bb262c9b64448673103875
MD5 bf593a9b6949a1b956a1b7e7c45de77d
BLAKE2b-256 d642f1438a6d928a66bca434be97269b662034f04c718b68da5c88a303b2df78

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.3.1-cp311-cp311-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 b5a47a9f879d7e4dfcbf2f99d159315df0b77f3d31fd10230403cb4f0527ed99
MD5 ee9aefc8f4649c9b03b07c888532d21b
BLAKE2b-256 8801894eefa9b910080e63fc7d8dbcf1b001229fa1644a6103ea72676bdd2d30

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.3.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 6fbe27e653eaaa880af75d6a89eb5344dba23ce4701707f434afe90b2fc6ca8a
MD5 13a2db3c784b49fa36e54f53a4f72eba
BLAKE2b-256 c314478bced0a98e92371726c4dfe3484164b4160b441ad1b9aed8feae4d95c7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.3.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d59b400d6735b69ae003dfb86b40e2cc7826e0284a070c3b19418583ffabc1f7
MD5 b0642ed9328a72e9e6e6bf514a1f0df8
BLAKE2b-256 9ee34c6431678cd6a4e06140cd9b98612e8cd871969b3cec4c67e6d7be160f3a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.3.1-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 dd482ef99c5915b9d8ac5d81194c1e7ea567c84a5fa32ea9309d8784bc6f21da
MD5 ab2a6a9347e14ad051d87b716bb36c62
BLAKE2b-256 d9f16869cf25e9eda9e7e2d55c5b375d75f9e6dbad203bcf6f5962d494befab3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.3.1-cp310-cp310-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 45bf0249228a7c9ed829c66a3e724a4d24b7ed3740775ee3b420a076c2f8b276
MD5 005cf15e863ded610d0e71259c2d8abe
BLAKE2b-256 8a8b5e0336392536dd130d0c5b0cd5ee7aef0d82780f6b37016cd130b8badf26

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.3.1-cp310-cp310-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 defd88581f2d48573e776fb038ca7316a82977602277aaedb32aa689696db234
MD5 b3080150bf8caa7ca6d1f2dc20eee2c0
BLAKE2b-256 9bdad1d8cfde04501a3f75ce1e52638e9ed3c5116fe280db61c912de5d0366df

See more details on using hashes here.

Provenance

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