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

Uploaded CPython 3.14tWindows x86-64

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

Uploaded CPython 3.14tmacOS 15.0+ ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14macOS 15.0+ ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13macOS 15.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12macOS 15.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11macOS 15.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10macOS 15.0+ ARM64

opengris_scaler-2.1.5-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.5-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.5-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.5-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.5.tar.gz.

File metadata

  • Download URL: opengris_scaler-2.1.5.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.5.tar.gz
Algorithm Hash digest
SHA256 3a545a54bf7871927cdc30c43e6759e0e2affe2a64288a17a95f853a80b1b134
MD5 70573b262f51ae59750fd7c5f7505023
BLAKE2b-256 b94e5c413f9ae545d358642f9b6394d09c14a117af0934d072775517c475af50

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.5-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 8f2a8618cce7cc2ff63fc6e69352cbb2ce0885469952b6b82e33c8e31c46d1d8
MD5 a1d4fed88669577caf2f0b10df8c83c9
BLAKE2b-256 b805758184b9c061a5886e41c93b4653b7b00b20caf92e37b556eb92add4476f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.5-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 09e4b9fe13cc2521bb48d929cc27abbc219bcc1cd73e1f702896d8a5243fc4da
MD5 e5c3c51721e772c78cc8af87e4ea020c
BLAKE2b-256 bd57e853b7e77e851f5b5548b804eb69194a0e993aaef3b0986ca5297737fe19

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.5-cp314-cp314t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e8e29a7fb331f07aa10f29e29d77c38dd623d08b1b0e5003e3bcda1e504e600c
MD5 d8f6fd1bfdc5a9033c5c7a5251c91f51
BLAKE2b-256 c072e052ba15ae2461148e22d4e29ab97ce8923e33d32b88c06805af27ced841

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.5-cp314-cp314t-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 2fae8a721a4c011379668e1b891121f1328dc04d655d08541d7f2e62a0fd5637
MD5 afc69e4b0f882f83d22279b6650c1def
BLAKE2b-256 3bfd499a375524b17cd0bb911e90d868c73caa20548b7da1c074927825d83ea1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.5-cp314-cp314t-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 9306d1ff1614068460510ee7f8d4b6fc445f6a14ee92f5a4a0fa0a107be8d9ed
MD5 e19ecde21b12c26bf3334557ae860ba7
BLAKE2b-256 fc08e64d76d12c975d050514b15b0e4e840344b870db98af9efd699feb42f0ee

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.5-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 763edb30b3d819707bdbc8752f90a2bd280b5d3f78779b40825438cb02a7d548
MD5 cba9f1f8a538d62319be6d271bcb5aac
BLAKE2b-256 341e88ded99a213aeb1a612be0c8ec28d3414b8f17ba61046876d1c576c90bf3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.5-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b5528883d874588f83c0ae9425e53a2240f9e04ca86e96fcb612ceb4465154de
MD5 6023d75eee2d36d9563534af54f07543
BLAKE2b-256 fe9a6b322d828a4296afc57e39283a0dc260d30ed71d2fe5bf820c84ba6831a5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.5-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 506aabdca07b7ee8259ab65a57a9a62c6c932db12237a45b43fe96549ff3693f
MD5 14a691d2e00c05cb7c74f28b09fd168c
BLAKE2b-256 7bfd089257d206e3a8b98a72441165beb1cca97745ae2ab2c756d1e4f955a35c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.5-cp314-cp314-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 1aa39b2ba7ad0e05bed00873e26c6b7f1eb5dd5ad7372170b1e9c01f500e33be
MD5 3fc7ce44f4617849218d4214e75bc0b1
BLAKE2b-256 2303b442076088e55067b5fbdf619e6020368f9b48ada6d3b37eed878f64e8d1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.5-cp314-cp314-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 3ea1461fdfaf6fb969963e30e2a8ea358fbff0174989c09482e7003faa56254e
MD5 642c95a921bcec9b31dafe01bc86e2fb
BLAKE2b-256 10ff2ceb7dc2a71503ae855a352b45d3a13b16b179c3de0bb2df8dbbbbb8f739

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.5-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 2ab34a2fdbdb492dd084a923a57e8ada61ef5db9a01fe5411aa84cc17b271bbe
MD5 a5e45ac6da05163b86db1957f374a253
BLAKE2b-256 58184cce5a0bc5261bf54e451361b18bd4a661dad8634a8a0fd59eefca6fba27

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.5-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f70aad23d5b17314fb322b5538ddd54f86b6e82d9e1bb7209076c856331b648a
MD5 02a6db1c57c8ddb37edb0be9c766a3d2
BLAKE2b-256 8bb49dd8a45c398aa07220c310ea08d6cf3bead2938e7329396ba587c4f4e4e4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.5-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b4f10f5c237813b7b5abb68b7ffb5d79841bf044ddd1515e4fa45ed075e08918
MD5 18b83313292f4616b348b83168f59ccd
BLAKE2b-256 0cc89fda35cebb76c54aaf09edfc7b8a2a9bb8b8714f6c381fd95f5ead7d10c7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.5-cp313-cp313-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 dc3a258381ddf10941a1ad6589d788322f26efba8a4a7ff9a694ceecd54b540b
MD5 4c7b0db98a09d3c6d75b2f50f6e69d53
BLAKE2b-256 099a38bee4998a24d98131be2953a70ed580cfdc7b69e7069e8b13b3b64eec59

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.5-cp313-cp313-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 38422d294ede0e1ba7664d895d4ef4963411cd22209df031aa58255cd4fe7624
MD5 05d5f44869b200d58eee8f479dd2bc2e
BLAKE2b-256 66eea0d16bb2a2829796da481e3fd8c7184663ab81e64e82a66f8ced05d77aa0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.5-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 365429b25f42486c97b4620ec3b086ffb3c130fe087b561630ab096069ae9947
MD5 ea9de24bd71390045a46f5fc5af80628
BLAKE2b-256 ba2fdc2eddec20b3a67e14ff716af5a46fce189c6c65508c24d1dfaa3c3c5495

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.5-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e9f8f9b21dd528334ec5a163c34c77669c596491504a058d3e31199f39a75289
MD5 7261534471e14aafbb2efe3a3c32a7d2
BLAKE2b-256 0473ef7e8cc60808ed3bb69340eae2b39e80103fb980d597e17f07570ea76f6a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.5-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8b06809a9cdd08c4623f92aeead324702e6be9773ef01fc629bfdaa85788017e
MD5 5c5f012701a85b34b798abb7b70a7523
BLAKE2b-256 4e74d2cefca26a509721bbc69858741e629867173dc685611916cc6b8fdaa6ad

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.5-cp312-cp312-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 0b83b4e57f42a3e3f12002a536ec97d1c9701361fef0055b85da2f91799ccbf5
MD5 b4bb19b32e1dcbca1a7f14804394c160
BLAKE2b-256 51d5b9335ab4ed6c06973a957ef1c1a790001f7c718f8903d3af4072f58e9234

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.5-cp312-cp312-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 14e97a405576eb21671515534dd1adbdecb311eacf14e8e55cd91f7ca9fcc4a9
MD5 d6030d3b8520f33b62bb7a125eb59c56
BLAKE2b-256 1f05cf822cdef366783cdb701fd026f264b7752a21e677462e25867988e05821

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.5-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 84e242e3ee5e2ad1f7186a8e5930e2868df73d41ea873456441ef9926f6a2f0e
MD5 e460a3e944eaf8e41be61ee579365b8a
BLAKE2b-256 efb509b8f47ad10c6c813366b7f48c322ed033d60a6c89f7ce9e235dd51211db

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.5-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6d6b07ed7a5368c76262e4b69f060946facc08e96a2623f90128577408d22b42
MD5 756a7e68c28c40eff347e8c5983d993e
BLAKE2b-256 25b3fe92a960befdfc31ba984db766091998666672218eec7e9213c66d77995a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.5-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1623fc7a5a282c3427f636fad2a0291a134abd29b1749e43719bc80511192c01
MD5 39b35c0c04940582342527ae23b56663
BLAKE2b-256 cc12366f8fd0317db673fefe171d21c9d409991083867b97b9615c39ad831d7b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.5-cp311-cp311-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 ae5d89d0e02b8b321b98a9047e835793d996932aed4ef0beae5d88a47e13474d
MD5 6bfbfae1accbf87ea9cb716cb55491f2
BLAKE2b-256 45b73fd2456a9ffb55a862081d6453c2338cc5b635835a60111ccb179db3f2bd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.5-cp311-cp311-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 d35658bf558f5204e1f8878273d1900a2c6efc26a8b706953e6b65b28695608b
MD5 d157cbc879e442bd22fbce9ab71e94c6
BLAKE2b-256 6ad55ed687c123cbf84d9812fadcef7373fc7bd468a1f6cf1db01493f8b89105

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.5-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 dad50b5805cb903de06bd8efa330b2914b44af489a4f332c1c277d71d958cebe
MD5 a28f7118418128f4f9515d874416d955
BLAKE2b-256 1beb8aba9254251259178b0bdceb18513bf4e3129bb61dcbfe0479468dddd7eb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.5-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9c7b0071cad89f5dacbadc7b1f341d07274a526cf46bb2888cbd1b861c12dbdc
MD5 c9ce1f536ec9f2e10ec1353cd55d58f7
BLAKE2b-256 83a7036ffbefc5266e21e31b200574b8b4d8f9b3ae5d74c407bb295c280be4af

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.5-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 53fe2719b8bd12ef2d7d0697bdb6f48799480a89c1e91098b5af49207030a6e5
MD5 f597fdd29036135fa5704a319900b8c8
BLAKE2b-256 29df05e1f583f7f5e465bffff8f3ea2dcc781412e0f221a5391f31e265f1ec1c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.5-cp310-cp310-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 46c795c739129b7204d1670e4076b2737c2df62dbfed7442f322726459cce9cb
MD5 267f68de961b5d821fdb87bcec5eb788
BLAKE2b-256 58cfdaa755cb26a15749e18b6f23e4fe12729dc39b00dc0b9f403cc1984db795

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.5-cp310-cp310-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 9576eef7de16a3c473dac1041899fe1a714422045bfa3edd1d4127fe3b8796b4
MD5 c898ef7811c78ab85e7ef97a2e588237
BLAKE2b-256 98285ac6e22273492f79b1dbcb9d48f3688627a7626727bf183e5832c20cbc74

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.5-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f8bfda62daea0d464fa0f223c96c1afb9761454edf17dc3cbd23638a894714e7
MD5 86a77a2c776d667ac6cb44715c19cc15
BLAKE2b-256 697ff85cc92f1fbe3f3c511fc952c1557de802e111ef7adf85fbc749e2b45e4c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.5-cp38-cp38-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d312f412d7b9f2b8f0c5b2e17595e2527d601a0f5bb483cdc83e178196f25e11
MD5 cc5cb495cc3120b8ca98d177b3201264
BLAKE2b-256 3c8d0fd99e8728bf340410d7c19d15bb24791275f840b6354a690847569ed765

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.5-cp38-cp38-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 81d7a803140056997ec469b1104c23eb83b3a6b9b61530b2958abe96384381a1
MD5 7c29c0fdc649fe4c592815ae23341b1f
BLAKE2b-256 6283f6bd95160814468d73ebe8ba2edd380be1e6a996241ac34d17873a4db5cd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.1.5-cp38-cp38-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 1c81e9065f740c59c10c9cdbebc1478a3d67f4a6832695e05b19cbf78d2c1faf
MD5 37f5f9eb1e8cc458ca3ae08b2eb0dddc
BLAKE2b-256 1cc87ea1c74f8fe3c3ac22f2fb6d213850a12b11c261f4b69ad4382b318ef2aa

See more details on using hashes here.

Provenance

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