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.2.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.2-cp314-cp314t-musllinux_1_2_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14tmacOS 15.0+ ARM64

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

Uploaded CPython 3.14macOS 15.0+ ARM64

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

Uploaded CPython 3.13macOS 15.0+ ARM64

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

Uploaded CPython 3.12macOS 15.0+ ARM64

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

Uploaded CPython 3.11macOS 15.0+ ARM64

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

Uploaded CPython 3.10macOS 15.0+ ARM64

opengris_scaler-2.1.2-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.2-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.2-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.2-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.2.tar.gz.

File metadata

  • Download URL: opengris_scaler-2.1.2.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.2.tar.gz
Algorithm Hash digest
SHA256 6b33fe192b347ef04352e877c1589fb7d588dd1d9d87b2018f662af2414fc7aa
MD5 d7c779e07bdaa6cd0b90ab204d8c5f88
BLAKE2b-256 e7599204aa154caa6646dc010cebefbf7d045f1db1d6cf19d32c2569026a1081

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.2-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3bd3138f39fdd73597cca79b9bf1f63d102898dc8349d699aca958c1467e563f
MD5 3d3061e6e6fe8072056f2cb4e1f2c47e
BLAKE2b-256 1eb7459d189aff1f443335d27d864f77b3dd631c931e34bcebdeb957341afaf9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.2-cp314-cp314t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 66929d12fd731c268b508e635c1dddb66f3ef9430d26822467a4a6f0207ea204
MD5 258ce5b674e28f4bd12fa640d7339ed6
BLAKE2b-256 938e2e378833a6d84e15eae7a4854f0258ce49a76e65cf33869a8ffe5cd634fd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.2-cp314-cp314t-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 7e41a07f37c3b73e265de8500c11c4975fddd7f7c590c0a398dc92012f432f44
MD5 90c776c3b0cb3d333c5ef8433e7cb020
BLAKE2b-256 c4f31c628b2d099fea1efb7783a15aa93a890c5db96e897073710cca2ecbc005

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.2-cp314-cp314t-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 44f3c5c15285eeae72655777e3ad8fc9bf3cf6d36dd9d8f78eacd8321e2d3bee
MD5 0af00620c26369391547b0c6a95ca362
BLAKE2b-256 09b8bae2a6c05385ced75618094559b9d6b76b8d571e16eab28c01695b7bf06c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.2-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a35de3aeef9e2a3c8b146f2eccf6558e0fd14338abcc42ec215fe45de4bbf390
MD5 41ceb8f1cc10697798fac3d17a6b12fd
BLAKE2b-256 37fe998b1819df256443fb700a85b38007611bb1a053bdc80b4e2b35a5f5d4ca

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.2-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 251632d246cc2288c0f15c58abafd94c21a40b977d7706ff1df5970e4ee7de36
MD5 110aa84aa3c99fa81266fc45f7b092ea
BLAKE2b-256 b46a9dba0fea1c8b6e3841aa7afbc10f3c8c90c5b0ca0caf93ec2ae098ca5ec0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.2-cp314-cp314-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 052da4cd12e1c0244eed5398e5bfbfb1c498eccc89de6079e6b0b6dcb70a0f35
MD5 54bec2c5102ab74b22d5a40b4d17f553
BLAKE2b-256 85a4d7e5399d4ea2adab20c3c0cccebb5708d70d4c70f71904382d408f0b437b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.2-cp314-cp314-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 d0420d4237ed9d7194cff6efb5df30eab1e756826477329a483064791fb91577
MD5 669f1746a875965a4e93093dc927ae3f
BLAKE2b-256 9fcf3679035f38afb199765f34d31b15569a518770171ad8006a624daed6f367

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 101eca97e00dccb727d476fad67900e05fbc40fe4327ca89e2dfe2750c59ce2c
MD5 6a176019d5cb63405127461b5bbbacb3
BLAKE2b-256 567ee08ced5236afe05f28b249e13c378af7fb8e5fd2abb5367ec6c8c22e35fe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.2-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d8a6bd662527f5ab241bbc3412fc1b0e69fe9abbe4bbf216b0ab8fd02e82a865
MD5 371f942af980d7e0daa4373a08ac1cbf
BLAKE2b-256 a326c99eff58dc7e71ba9ce68eddb10e94552f852d3eae4c772cf1966b1aaed4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.2-cp313-cp313-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 02c7cff1a96b99564250dbae7c3c236fd5aa5ee764689a822332ef7b35fc5ed2
MD5 67ccc2c1646b2218c04e088ada7421b8
BLAKE2b-256 e52865878e4d8379766eac399f1afb4f43a8ef3f779d5ed96f98caebba266ed7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.2-cp313-cp313-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 607f642f02f64ba235418ae49d90ede4b753fbf6e956af00b3c8f8882a1ab807
MD5 5601df5cae70020689d9e6bca9f259b1
BLAKE2b-256 2a4dd0ebcb0c1c6f2959d348329c92bcc1fa0b2ae30dbc594bc3149333cd00b4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d628156517c351a51ccd87e241ac558b18c10787a8b454882355a3deedfa5789
MD5 5d5ffe5abbc4e7b4074bd8189a9805da
BLAKE2b-256 df58925008f8c98d10e37d7dcbc445e41a875d328c2bdf5cc60685000766b56a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.2-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b961f7d90013f8e7f60cd11cad26c6e080eb6d040f22317bf3b3a66bb9417f7b
MD5 e115401a2b7c516c03142e34f5c1a756
BLAKE2b-256 c6ccaa19b5ff9f9714a0c7d39c01fa293d630d7bde2e1990b2cdb4fa9d2ba9de

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.2-cp312-cp312-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 554e03cdf5afcc5051d68d6555cd73680bc1c4fec94a51e1627b9cceda5564f0
MD5 668107957c449ff0a20e0b74243a6691
BLAKE2b-256 725063dc956e922fdb911e1e401e06c09bedea516b40b93d1c6e3d99b7debfd7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.2-cp312-cp312-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 bc2b0f3ca77429436023c64097574be90f3ccc858a0f692aa13aea47060dc336
MD5 c77cb35e5a52ebb0d7232d50dba903b2
BLAKE2b-256 16e5925f4349d7fd79d84cd775efe6781736ce3248005d15ba501a5134578fe4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ef369015516788a7cd14c21117fdb75dc56ebd39e5e8fb32f39113319ec4d073
MD5 85feb1ffbf342e179c04e548429e6c60
BLAKE2b-256 26b59e88178efe0f1fe17d9a43d1b852ff3289e800130f5ae4499cc04d48c0cb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.2-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c760ba361de6d4abfd6a900e4c359365a0e71179fdc1b555028675bde0d57411
MD5 de647bef01e68281a242b043253b05d5
BLAKE2b-256 802b39238b0a856b89bbe93a8b4a52792074a4fbc0be54c08f02bb31a60d84f1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.2-cp311-cp311-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 2d9e97ee7d4add973c1d623008a05de2d5afbf37e6249c24db6bbdc500d24b37
MD5 073cc447460cf57167e9d7d15f8bcbfc
BLAKE2b-256 9a6039df59eabee88da89e4123852ae7b24003e47611d77ea152259b645f27db

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.2-cp311-cp311-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 792e01beaf3fed6c3a610b5d4068c9e9029e1cc82601fa9a672fae52148db6e5
MD5 b0a83f06d20e6c62223dd32dc6efb71a
BLAKE2b-256 7cef65886378e44ddab09e755e5c113c24123dd3712e986e4476c5b5637d101b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a3797974978c248e2c795480556a17e4fd7992486e9ccd49addbb715757eaa11
MD5 aedfdf3396dbca0f7bb279c6a41040a4
BLAKE2b-256 e7d2af12c8ccaee0c2b1f200e5f1985be5876bd9c82cb85446636a49ad85fbca

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.2-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d74d71cc4ae2c69ba4cc6bf0b5b016278e3a8e5089162729cd0068df0dc3fec7
MD5 6df8115cc3a0597eeee478f9784158a2
BLAKE2b-256 5cf71df73aa298bf083829e380a6d9947df4563fa718c426d9b2e8c70411c49b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.2-cp310-cp310-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 83ae04343d0f0774a0845fa735a4fbf34e5b8baa024a347e73ab1a0198daef11
MD5 8891fcf4ca921e44aa111484c804a161
BLAKE2b-256 ae1966bd983fc53d3e202f435506f5f3bda3d4f8e8e42c0698fc5126df9565ec

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.2-cp310-cp310-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 91ff32e9ab757733145e2099af79479d89ae83c20d3c24db5fdbc3ad2a5ae87a
MD5 8eaad4eac574ea7df2acd3ec09490b13
BLAKE2b-256 08574f7d32cdf81ac119ee97d52b39e53523306fbca4b8c100419c2e406f8a27

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.2-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 dd4713e17ec78f68bcf47f3341c4890017caf1320183ca4ecf0c17c4dc39d831
MD5 09858b6a84ae1ff417c3702670921a00
BLAKE2b-256 68b16e39399385be8e24de4adaae9b5c8e7772156620825e25cbd6c3c605cdf8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.2-cp38-cp38-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5466d8b4f13f20850a530343dfd8b78ed8c83f380e20db124ed3c5f927022b6f
MD5 ecdc0118c7c2fb5e952741cced30476b
BLAKE2b-256 76c3f036462629f5fa49fe7a7457afbd7eb450cfce8a5f6b83d7513260dc385f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.2-cp38-cp38-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 9bea15237f63c2f19bb5ea9d3fd56e63953729bf4238e547f61565270f4c997e
MD5 1735b7232ce1735e68a4cffc66a514cd
BLAKE2b-256 b9dde60a4bf85c9ad36a19e6239419e7f76fb19d4769afef7c79ddff80dee1f4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.2-cp38-cp38-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 24320801518cb431a9a0cf36f6643e3bc1bd25e48d5c791fb901630ed65e20bb
MD5 9a04dd51a0120d71d533c2de40b012a6
BLAKE2b-256 e72be67071a169b2da53bf977d7045c2e11123ace7d508d6be7a462f06284f37

See more details on using hashes here.

Provenance

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