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.0.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.0-cp314-cp314t-win_amd64.whl (1.0 MB view details)

Uploaded CPython 3.14tWindows x86-64

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

Uploaded CPython 3.14tmacOS 15.0+ ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14macOS 15.0+ ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13macOS 15.0+ ARM64

opengris_scaler-2.3.0-cp312-cp312-win_amd64.whl (987.4 kB view details)

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12macOS 15.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11macOS 15.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

opengris_scaler-2.3.0-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.0-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.0-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.0-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.0.tar.gz.

File metadata

  • Download URL: opengris_scaler-2.3.0.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.0.tar.gz
Algorithm Hash digest
SHA256 b19bb63e3155c1685277759cd67e1ff3c15c3fae12de2d2005ffef8cf545bf3a
MD5 55663fd58e451c16b3d2c6b3c9f5f407
BLAKE2b-256 17b6bb6fcca39b08b331f66b987faf477f1f4d611cf176fbc7ebb01d92bf918c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.3.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 42ffeeabaac1750d85e29ec3dc25aacce2dea2e4861bde5e77fd7225775095bc
MD5 4b69aade1df5e0178301a48a0f6935ae
BLAKE2b-256 99f78782f3b266e98c0469436ffdafd414e9280a92cbd106a10dcf7e3ab96396

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.3.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bb39b4b0f18c6276a4cbdea7081b3ef0aabb4ad6ac9e3ce5ec6bcefdcc6585ae
MD5 c4abfc8569b9fef08c4b7587019f27ad
BLAKE2b-256 2a002ba4e92c461154f101ee0cb0c8e78a9448a8702fd7cdf2c393bba513350a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.3.0-cp314-cp314t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 fa8d2ed9b6eee719dfaeb11e7407f5cf1d5aa57cdbf53a6751fd271859ffde59
MD5 017af394ed10ba5e0d64f7b0eae4c084
BLAKE2b-256 5b1623669ab3fe8acce30cfd8029c770b173ff9fcd2abd209f732de8b3241193

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.3.0-cp314-cp314t-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 37672ce9641e0eb0d0a82cd520a8b7e63b32d89b492b4ebd5f2156e387c224c7
MD5 d996a9fd38c0c99926f3d58fe41ef378
BLAKE2b-256 955df156da3f20b1315e11667c750dc3eca98ba1312a17f11262461614843a3a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.3.0-cp314-cp314t-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 289b89fca6a075e5ef65667057b864b858ce79c3c902a8257afa7192f0d3cf69
MD5 3df2df68cd60ba018ad9033ed36d1839
BLAKE2b-256 b297492ed035b22078a51a279adfe646178be5d9a0ef88e5238675b46259e07e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.3.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 31e17ee2762dc8ef88e68b9ff787d9d9dee440bfc01343db97e11ccc0e9e59c5
MD5 8b703d146c81f466d86805fc05f0f8a2
BLAKE2b-256 879b2933ff26b0353d405c234b95ab3811a3992eac8f6b7539a8a819dadeb930

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.3.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 34d5e0ccc40dcf7a1667c4f842b8bd64c04aa7042fb96b970a90282fad6f0352
MD5 0083cdb54a7c41a7d3041292327636ee
BLAKE2b-256 84364ca22129ba8565e1d8f5fd544c1eddc57066e35bc0a091f6f168b66b54b4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.3.0-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 94a7a38386760181d9182f999ea244150342a25fe94746f45d2224ea01337d50
MD5 6a145a277afd5028af79f7bd6e7932dd
BLAKE2b-256 135fb375b1c691ab0f8a9853fe88436b45e163e65f5869f9a7fa1849ba8b2471

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.3.0-cp314-cp314-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 ab4ec32a7f32b6c258e8506bdcc2d7560d8a91c2be7654b6165b99cbf0c9766f
MD5 ffd557a26de6f6f53e830c087073a78a
BLAKE2b-256 e6406214dd46a0fb454986d738cad6e9da711c480a5b23e9ec5eac313da07546

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.3.0-cp314-cp314-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 47abb3ac0a60310fb3e3020e749ace75bcada0c632276443e955167e563763c5
MD5 37bfafeccd2e7ec5181750e6e8a19b11
BLAKE2b-256 70628a3119d64dbe03b94fe2ec83623256f36152927b52277e5212f1d87c1f5d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.3.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 a01fff876c303459d48295802dae01cc7d2250707b4c358a2264c2eccc75dc11
MD5 d5d1ed5d7100bf112d96e6bf756bcbe7
BLAKE2b-256 68d4d8b67f8c64a68868408c64621a52f3ad1a061b486c3b062c0e14a15929c2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.3.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 40c67abab40cff133fa6c29b05bb2ac9ef32c40149f50345b7756f278e527c57
MD5 5126f6ef0834b3f646577863e9cbfe53
BLAKE2b-256 df02f6cd9d6de808589c40ff677e72589ec649abed0d611ab7d27af0a8549958

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.3.0-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 788614d832d51aad3aaa5106838f970a8fc24fbd94e3cb1a2a96e9e8cda96b8e
MD5 d44a8c111e0571cccd69ec104cf205af
BLAKE2b-256 cc546b64424b337989a893509ac2d190a36400d00ac0a3dae3deca4730572cd0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.3.0-cp313-cp313-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 aa71463a61d5988af549158e3c881d576c2e7c9717855d79ab6241d0f034d03f
MD5 9437afd9767167d92e84037b33220c7f
BLAKE2b-256 44b0d5b476b2b6c5206045a1d7fcf8bd46efcbd88141656b89303fc310da4e98

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.3.0-cp313-cp313-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 1573e4372db3fd3792279da163ce7e136742737f38e7646bc482c06453b8884a
MD5 122ce70bc027e444d69978a7608817fa
BLAKE2b-256 c6b4b82e6362cfc0862a2c0c1439f5bff47bf4cc5753a1c1cf3b2e2706fb14a9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.3.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 91ff24944ca6c98a5ff617c2e21c9e7b09a83ac63de2bbe1b33d3786e5392f36
MD5 72364a71dc3be0fb75157ee127f06b5b
BLAKE2b-256 88bd6fe07a0f549cdaa12d5a221e3dc08cc64daf1aa7c76aa36c82dbb6046476

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.3.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 28e61edae2b161e3d8016e3f817d1ce73e41112e97d177ab823842380bc19116
MD5 f6b3ee2ccce28ea4822982e1ad8ae904
BLAKE2b-256 5304b0853fb812f9d32899b019c2f1ea2baeb454b608fa4a459cccf8368b6ced

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.3.0-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1891ef79bb685158e369727a6c857782d368efe3489d3d051ee03cf58341daee
MD5 44369a6ae8fd9b2f974e0b8110f295c2
BLAKE2b-256 ce63239ac36261d0f00cfecba8ec105e777d3489afc6fb381867c4055a0136fe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.3.0-cp312-cp312-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 df3357ee442be1fb1d22fa97af593c88296897a21c666b344a09d4d30bc374c2
MD5 983adf9b4f7dab65bb7049a1aaeb54a7
BLAKE2b-256 d14eadfda3e62b130ef2383a1999586b5f69cd7e1d133d9f198e99239318a90b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.3.0-cp312-cp312-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 13e6f0fabb8f9478c35d28ff3164d889d46b2c7eabe9d08d6554c659b7c3d1ad
MD5 d7565e706bae851dcc74e86bd631b75e
BLAKE2b-256 75abff2b4cd21a2ec430ed1ca8e3abbfbe939ca4231f6b1e3d5e74549210698d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.3.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 56cb8515783710e521bb98024a3d0831e0f932a4fc7676d09163b877bba17d20
MD5 5f3cad98e2461ea3dcf3719afcfcd7de
BLAKE2b-256 0b3f5ccea4037cc144e319cd4d7e911e773387e309ca9d060f574f4289a6dc9e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.3.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1a2e7cb94b110491281002d7ad63c1a6ab108ccfe7e482146ece8cc7d2704db8
MD5 207c5dced4449396ca17568ce492a098
BLAKE2b-256 d1330db86f134bdf46a33e4faf69e31288e1aac32b3043abdc80afb61c7f865d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.3.0-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 695ad6c068cfdbc31e8a9301a3895434d3fd2865b29ff2caa16a993092d5e93b
MD5 6944bbaecaef288ff1f6e36f1e9fd8f3
BLAKE2b-256 047380dbbe37dd304d26d2c8aca4f5e7b62149c5e8f35347976c3a0c5a85bee6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.3.0-cp311-cp311-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 6542daff20589b7d54c86e51330235de2c69eec6b72c519ebfe1ed637c8f21f8
MD5 089def090dd4badcad71c1f933d3bc85
BLAKE2b-256 72e843604281aa9e31120d0d29cf9ba5e436a9cbf5691607dee6bbdfd2115c81

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.3.0-cp311-cp311-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 118205b913c71774e9a6fb9b4b60d81310e56c4baf1ac40bec5f6ee0260a59be
MD5 9b973b96f62859414d4dfdce4a832297
BLAKE2b-256 6ddc4e364bc2c10a6e5ab6c27f5cff3e7300a9c76a92b7f9fe2372c994ac99db

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.3.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 567a0d4bf619168588059b4568a3a9a4405adb8bc07385eb07225efb765a2f94
MD5 1f382b692e2e0b57d1e1cd131982900f
BLAKE2b-256 a347fbbb54ba0d18b92ca29f6d615b6df5249fbe267fb1e32bcd02ca885efd7e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.3.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 dffe9b7410e2379b924c0c85dda8e884c45153ef4aab15225947dc501c5f2d1a
MD5 cf204b25e68922988b53fc2e8279467a
BLAKE2b-256 70f374f6758d68ff3620bf2b84dbb9087846970cce9431ee29a8c6eabdf6f620

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.3.0-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 dc8635e947c08e3544100e7ab780cda97f798b8ad040572d0960c7aa2978bddd
MD5 eee9838fc397e0728fa7787f111a6287
BLAKE2b-256 06f9f6ebf15fdba764fa8dbbaefff74dc5415e40a5853e1d39a3394ace60ffb2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.3.0-cp310-cp310-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 367129fed612b81d4a5f003106977deba3c8e4000da01cfcef3ce5786e9dac09
MD5 c4234141b633c954c17e88a5e524aa3c
BLAKE2b-256 f74b72ebe594b759260fc762c4f8f99faf9324c4c598f60842ef130b724fb076

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.3.0-cp310-cp310-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 3b1ecec0382f0dd42eaa3b5eb4c8721f2d3c9e91d058b0f0c8afc0b07daadaeb
MD5 13190302658616036a5fe453e1efdbc5
BLAKE2b-256 9fa7fe9d20e618e2246b0a452958ec04fa9a46e6d6c09e556eeaf8fcfe46fa40

See more details on using hashes here.

Provenance

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