Skip to main content

Python interface for Leapfrog Goals model

Project description

goals

Installation

pip install leapfrog-goals

Usage

Get parameters

In the following example you will need parameters - inputs to the model. We have provided utilities to easily get test parameters (we use hdf5 file format to store these). If you already have different parameters in the correct shape you can skip this section.

from leapfrog_goals import read_h5_file

parameters_child = read_h5_file("../leapfrogr/tests/testthat/testdata/child_parms_full.h5")

We need to add a good way to import the goals parameters, for now add manually.

import numpy as np
parameters_child["ex_input"] = np.full((81, 2), 1)

Run model

Here are a couple of ways to run the model

from leapfrog_goals import run_goals

# Run the model
run_goals(parameters_child)

# Can specify which years to output from the model
run_goals(parameters_child, [1970, 1971, 2000])

Run model from initial state (TODO)

You can also run the model from an initial state. For example, to run the model in two parts

from leapfrog_goals import run_goals, run_goals_from_state, get_time_slice

# Run model until year 2000
ret = run_goals(parameters_child, range(1970, 2001))

run_goals_from_state(
    # parameters
    parameters_child,

    # get the last time slice of the state returned by run model so we
    # can continue from where the model left off
    get_time_slice(ret, 30),

    # simulation start year, this should be the year the previous
    # argument represents
    2000,

    # years you want the model to output
    range(2001, 2031)
)

Run model for a single year

The previous two functions will return a dictionary with values that are have one more dimension (time dimension) than the state specified in the model config. This means if you want to carry on from that initial single year state you would have to use the get_time_slice utility at index 1. Example:

from leapfrog_goals import run_goals, run_goals_from_state, get_time_slice

ret_single_year = run_goals(parameters_child, [1970])

for year in range(1970, 2030):
    ret_single_year = run_goals_from_state(
        parameters_child,
        get_time_slice(ret_single_year, 0),
        year,
        [year + 1]
    )

This is tedious for two reasons:

  1. Repeatedly getting the time slice for one time dimension (initial one is unavoidable since we use run model and don't have any initial state)
  2. Specifying output year as year + 1

So to make projecting for a single year more ergonomic we decided to create a separate function that returns the time slice for a single year:

from leapfrog_goals import run_goals, run_goals_single_year, get_time_slice

ret_single_year = get_time_slice(run_goals(parameters_child, [1970]), 0)

for year in range(1970, 2030):
    ret_single_year = run_goals_single_year(
        parameters_child,
        ret_single_year,
        year
    )

Development

This project uses scikit-build-core with nanobind to build the C++ project. You'll need a recent version of CMake (>3.15) and Python (>3.7).

We use uv to manage the project:

  • Sync the virtual env uv sync
  • Run tests uv run pytest
  • Lint uvx ruff check .
  • Format uvx ruff format
  • Format imports uvx ruff check --select I --fix

uv will rebuild automatically if you make a change to the C++ code however if you need to force recompilation use --reinstall-package leapfrog-goals.

For local installation run pip install .

License

leapfrog-goals is distributed under the terms of MIT license.

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

leapfrog_goals-0.0.10.tar.gz (1.7 MB view details)

Uploaded Source

Built Distributions

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

leapfrog_goals-0.0.10-cp314-cp314t-win_amd64.whl (176.4 kB view details)

Uploaded CPython 3.14tWindows x86-64

leapfrog_goals-0.0.10-cp314-cp314t-win32.whl (158.4 kB view details)

Uploaded CPython 3.14tWindows x86

leapfrog_goals-0.0.10-cp314-cp314t-musllinux_1_2_x86_64.whl (676.8 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

leapfrog_goals-0.0.10-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (199.7 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

leapfrog_goals-0.0.10-cp314-cp314t-macosx_11_0_arm64.whl (171.2 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

leapfrog_goals-0.0.10-cp314-cp314t-macosx_10_15_x86_64.whl (173.4 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

leapfrog_goals-0.0.10-cp314-cp314-win_amd64.whl (173.2 kB view details)

Uploaded CPython 3.14Windows x86-64

leapfrog_goals-0.0.10-cp314-cp314-win32.whl (156.9 kB view details)

Uploaded CPython 3.14Windows x86

leapfrog_goals-0.0.10-cp314-cp314-musllinux_1_2_x86_64.whl (674.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

leapfrog_goals-0.0.10-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (197.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

leapfrog_goals-0.0.10-cp314-cp314-macosx_11_0_arm64.whl (169.5 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

leapfrog_goals-0.0.10-cp314-cp314-macosx_10_15_x86_64.whl (171.8 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

leapfrog_goals-0.0.10-cp313-cp313-win_amd64.whl (167.6 kB view details)

Uploaded CPython 3.13Windows x86-64

leapfrog_goals-0.0.10-cp313-cp313-win32.whl (152.1 kB view details)

Uploaded CPython 3.13Windows x86

leapfrog_goals-0.0.10-cp313-cp313-musllinux_1_2_x86_64.whl (674.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

leapfrog_goals-0.0.10-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (197.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

leapfrog_goals-0.0.10-cp313-cp313-macosx_11_0_arm64.whl (169.4 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

leapfrog_goals-0.0.10-cp313-cp313-macosx_10_14_x86_64.whl (171.7 kB view details)

Uploaded CPython 3.13macOS 10.14+ x86-64

leapfrog_goals-0.0.10-cp312-cp312-win_amd64.whl (167.6 kB view details)

Uploaded CPython 3.12Windows x86-64

leapfrog_goals-0.0.10-cp312-cp312-win32.whl (152.1 kB view details)

Uploaded CPython 3.12Windows x86

leapfrog_goals-0.0.10-cp312-cp312-musllinux_1_2_x86_64.whl (674.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

leapfrog_goals-0.0.10-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (197.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

leapfrog_goals-0.0.10-cp312-cp312-macosx_11_0_arm64.whl (169.4 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

leapfrog_goals-0.0.10-cp312-cp312-macosx_10_14_x86_64.whl (171.7 kB view details)

Uploaded CPython 3.12macOS 10.14+ x86-64

leapfrog_goals-0.0.10-cp311-cp311-win_amd64.whl (168.3 kB view details)

Uploaded CPython 3.11Windows x86-64

leapfrog_goals-0.0.10-cp311-cp311-win32.whl (152.8 kB view details)

Uploaded CPython 3.11Windows x86

leapfrog_goals-0.0.10-cp311-cp311-musllinux_1_2_x86_64.whl (675.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

leapfrog_goals-0.0.10-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (198.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

leapfrog_goals-0.0.10-cp311-cp311-macosx_11_0_arm64.whl (170.5 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

leapfrog_goals-0.0.10-cp311-cp311-macosx_10_14_x86_64.whl (172.6 kB view details)

Uploaded CPython 3.11macOS 10.14+ x86-64

File details

Details for the file leapfrog_goals-0.0.10.tar.gz.

File metadata

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

File hashes

Hashes for leapfrog_goals-0.0.10.tar.gz
Algorithm Hash digest
SHA256 e8dfddb0180a456d8bee37fb2d1d4a1caafcf7ee0fea4a7ee71dd9ac49b5648e
MD5 9954b4c0ef05d1e927d47a86d2faa455
BLAKE2b-256 a5b5214a7bd7e5e846b045ab3ffff72367a179d45010ad4fd7305a9a70ee8f35

See more details on using hashes here.

Provenance

The following attestation bundles were made for leapfrog_goals-0.0.10.tar.gz:

Publisher: goals-deploy.yaml on hivtools/leapfrog

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file leapfrog_goals-0.0.10-cp314-cp314t-win_amd64.whl.

File metadata

File hashes

Hashes for leapfrog_goals-0.0.10-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 2280ec971fcd38a788982a6ac97903e072cb3576812f5db0aaea8324d2dc6acd
MD5 9f961f883728424cfeb672795ee9103f
BLAKE2b-256 8b6d3e83fa0ef49a6d6bc051228fb4278a8be3482517674adf13dcf0e4b4dd7e

See more details on using hashes here.

Provenance

The following attestation bundles were made for leapfrog_goals-0.0.10-cp314-cp314t-win_amd64.whl:

Publisher: goals-deploy.yaml on hivtools/leapfrog

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file leapfrog_goals-0.0.10-cp314-cp314t-win32.whl.

File metadata

File hashes

Hashes for leapfrog_goals-0.0.10-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 9b6392b5398438b7d3f2580dad16ca9e15e9f897e92eab609483ec9597b2e91b
MD5 35ce57beae54bfb287eec715aa5007ab
BLAKE2b-256 cbb70604e3373d8039a8ae46b99c5a4f08f5bf86d4ab5591bfc3226a55d556de

See more details on using hashes here.

Provenance

The following attestation bundles were made for leapfrog_goals-0.0.10-cp314-cp314t-win32.whl:

Publisher: goals-deploy.yaml on hivtools/leapfrog

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file leapfrog_goals-0.0.10-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for leapfrog_goals-0.0.10-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 30dbfeeec0f00ad004e81fb46c6513c3749b7d71d4528a9b4d9dcb249a167c74
MD5 4eda31f8731b0fd90f05b07e1fc7369f
BLAKE2b-256 861a9372412d1747b271a07999f25cebe3d53e36728d520991d08c62916a3fd2

See more details on using hashes here.

Provenance

The following attestation bundles were made for leapfrog_goals-0.0.10-cp314-cp314t-musllinux_1_2_x86_64.whl:

Publisher: goals-deploy.yaml on hivtools/leapfrog

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file leapfrog_goals-0.0.10-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for leapfrog_goals-0.0.10-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 07c7b56855d67d38bbc85266600705e112c01c964b032f702260bfd60cb0f993
MD5 13f5c1221a5660be1d24a93dfd946d00
BLAKE2b-256 02ffb9857a374b620d9923ea129b4839e59acf780e9b988dd3125882186a2f7e

See more details on using hashes here.

Provenance

The following attestation bundles were made for leapfrog_goals-0.0.10-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: goals-deploy.yaml on hivtools/leapfrog

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file leapfrog_goals-0.0.10-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for leapfrog_goals-0.0.10-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ef82c3fc14a553a43f48ecf948bd7b085449fc31ba05f95e812230e27681d958
MD5 e2904907d572e03f768cb45b50a908e6
BLAKE2b-256 9e973ed9affa7af482e123ff1d71d2e3f1d65c853d7c16662ec50949dadad287

See more details on using hashes here.

Provenance

The following attestation bundles were made for leapfrog_goals-0.0.10-cp314-cp314t-macosx_11_0_arm64.whl:

Publisher: goals-deploy.yaml on hivtools/leapfrog

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file leapfrog_goals-0.0.10-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for leapfrog_goals-0.0.10-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 a5559a7ead2a823f1a8068687e14e1ec0b14954de4b6f45d23aef43531bad58d
MD5 2cddfc9d0b2b0190c7873a5ad1370862
BLAKE2b-256 721f3055e1c16d85ea279645735fb8c3285aeac0568cf6fc86f85706d3f05bcc

See more details on using hashes here.

Provenance

The following attestation bundles were made for leapfrog_goals-0.0.10-cp314-cp314t-macosx_10_15_x86_64.whl:

Publisher: goals-deploy.yaml on hivtools/leapfrog

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file leapfrog_goals-0.0.10-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for leapfrog_goals-0.0.10-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 586629ed37cf4bd7ebf9446d93dac01db4caa9a109542ff6aba23401361c984a
MD5 8d51a6e956c83a319d67ebbb661f8a66
BLAKE2b-256 8b9f0b72b45e6e52500fb87400559ce5c4ae52bec453ff526bd43965949b2e98

See more details on using hashes here.

Provenance

The following attestation bundles were made for leapfrog_goals-0.0.10-cp314-cp314-win_amd64.whl:

Publisher: goals-deploy.yaml on hivtools/leapfrog

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file leapfrog_goals-0.0.10-cp314-cp314-win32.whl.

File metadata

File hashes

Hashes for leapfrog_goals-0.0.10-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 d57393ec711daa0d16208c321d0cc4d412afcdd4a133e0233b72c1e22a6fcb82
MD5 1ce6604350ff29d86396d5ae97d82c1a
BLAKE2b-256 6d6ed73f3c1bd6f7661a6b68b9874ed0bb765d7b6f62fec045f5cbb103146d17

See more details on using hashes here.

Provenance

The following attestation bundles were made for leapfrog_goals-0.0.10-cp314-cp314-win32.whl:

Publisher: goals-deploy.yaml on hivtools/leapfrog

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file leapfrog_goals-0.0.10-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for leapfrog_goals-0.0.10-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 83a5b1ee6b39dfec2964b7dcc82fb5da3d3844a0b976276df4dfa354dfbad62e
MD5 0bffc51997a51a09a4c2252412ab8f55
BLAKE2b-256 92366a777a817feb2393cbedd09084625b8531bcbbc9514cacd22c3e90bef4df

See more details on using hashes here.

Provenance

The following attestation bundles were made for leapfrog_goals-0.0.10-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: goals-deploy.yaml on hivtools/leapfrog

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file leapfrog_goals-0.0.10-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for leapfrog_goals-0.0.10-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6dc8ed36a63e30c8ac08f8de544b6ae577aa538f2b20e4013f5c3190df8df4ad
MD5 44e4ae17d7b3185e2e60f11c6ab04a77
BLAKE2b-256 b2c0870c2322a055d2f9b9c42cc9853bf7230c45fcb45f903bffd5209fbadb42

See more details on using hashes here.

Provenance

The following attestation bundles were made for leapfrog_goals-0.0.10-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: goals-deploy.yaml on hivtools/leapfrog

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file leapfrog_goals-0.0.10-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for leapfrog_goals-0.0.10-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 76bc19d8b75d36e65f5eeb7f6ec2cd43d11275809a984f6401dda50913992157
MD5 30972b7d0e823c75276f6d19bdb56406
BLAKE2b-256 248b0eaedf6c8d06a353ab29fdeeaf2b144b1a8db500aa32af5c97506f162a13

See more details on using hashes here.

Provenance

The following attestation bundles were made for leapfrog_goals-0.0.10-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: goals-deploy.yaml on hivtools/leapfrog

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file leapfrog_goals-0.0.10-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for leapfrog_goals-0.0.10-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 322e12955096b1048a5938ca070aac740c982d06ed28b759ee252e7850108c0c
MD5 0facc90cf6930813894ec62ed95f7da5
BLAKE2b-256 2785c879e1417a7f14e7df8491837f226d243304742c2b6a7fb8c6114c6556ff

See more details on using hashes here.

Provenance

The following attestation bundles were made for leapfrog_goals-0.0.10-cp314-cp314-macosx_10_15_x86_64.whl:

Publisher: goals-deploy.yaml on hivtools/leapfrog

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file leapfrog_goals-0.0.10-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for leapfrog_goals-0.0.10-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 798e43b4b01f4d7698045b7049070be7492198a7aa5da321082838265635cb08
MD5 d7dc1d3c0c06fda700f600b853af396e
BLAKE2b-256 f5d5e92da75757f6cc70024e2f5af5628376fc8da39a54cb0331d5d789fb1601

See more details on using hashes here.

Provenance

The following attestation bundles were made for leapfrog_goals-0.0.10-cp313-cp313-win_amd64.whl:

Publisher: goals-deploy.yaml on hivtools/leapfrog

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file leapfrog_goals-0.0.10-cp313-cp313-win32.whl.

File metadata

File hashes

Hashes for leapfrog_goals-0.0.10-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 5cf4e8cd519f1c08263f337d2d3dad3c92795bcd03f83fa102883a0772937738
MD5 19e0ae6df851710e61593edf8cc0112e
BLAKE2b-256 fa394f1cab9b8f55231c62151ec58b3e1bd7b52a0542cd0b2c33197a33d77396

See more details on using hashes here.

Provenance

The following attestation bundles were made for leapfrog_goals-0.0.10-cp313-cp313-win32.whl:

Publisher: goals-deploy.yaml on hivtools/leapfrog

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file leapfrog_goals-0.0.10-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for leapfrog_goals-0.0.10-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2c448960b64d4deb545b0558b457625fa463883c2e9613eece0c47a502eb8688
MD5 f91204652360b6007d105ee08be7eba3
BLAKE2b-256 a6c6b0585f842b833618300b2b2c29bd9c5911d7287e5c0d00a73819a28f29fb

See more details on using hashes here.

Provenance

The following attestation bundles were made for leapfrog_goals-0.0.10-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: goals-deploy.yaml on hivtools/leapfrog

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file leapfrog_goals-0.0.10-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for leapfrog_goals-0.0.10-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ff3ead1e1e34423d483306f66a1869402d0291c0f0dbe8ba6f426afdc6b02905
MD5 8a63aa3ba3ec78282a39ff403f05edc5
BLAKE2b-256 9938c1b10bbc5befd55f1baf4affa6500b085d660b1377dd0732ac778eb7d040

See more details on using hashes here.

Provenance

The following attestation bundles were made for leapfrog_goals-0.0.10-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: goals-deploy.yaml on hivtools/leapfrog

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file leapfrog_goals-0.0.10-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for leapfrog_goals-0.0.10-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 eecb1765fdd07bf10d7e1ce128c96fd549e64c0f261c2eb72d3e705b2c8d4a1f
MD5 3e734757581a5c3c974f5b2e20d8b241
BLAKE2b-256 51c12b9dea68eb08f1d5d0c6636ede5c5a2ce8bc7f3250c2c40d2cb18734b222

See more details on using hashes here.

Provenance

The following attestation bundles were made for leapfrog_goals-0.0.10-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: goals-deploy.yaml on hivtools/leapfrog

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file leapfrog_goals-0.0.10-cp313-cp313-macosx_10_14_x86_64.whl.

File metadata

File hashes

Hashes for leapfrog_goals-0.0.10-cp313-cp313-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 aebbfe34c4cd9ea82157793e538bdbbf5b07459f3514f11e2b4f373115e22072
MD5 283cf1e3adc9b8f4056a23c907258667
BLAKE2b-256 89762df569f82472a7bdbddd0f2effcf55bc7550476c41b1fa6ee977ba6db837

See more details on using hashes here.

Provenance

The following attestation bundles were made for leapfrog_goals-0.0.10-cp313-cp313-macosx_10_14_x86_64.whl:

Publisher: goals-deploy.yaml on hivtools/leapfrog

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file leapfrog_goals-0.0.10-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for leapfrog_goals-0.0.10-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 c89f651a894725aa95fe2cbc1b93f45a9ac6c2a4f1f73939d35a1a645c706440
MD5 a39056544eddf49406ab56b468a7d82f
BLAKE2b-256 3ed94faf30b4eea251c41a15a9dc0499daa6d72918b015fd7c2b4fc67f26f550

See more details on using hashes here.

Provenance

The following attestation bundles were made for leapfrog_goals-0.0.10-cp312-cp312-win_amd64.whl:

Publisher: goals-deploy.yaml on hivtools/leapfrog

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file leapfrog_goals-0.0.10-cp312-cp312-win32.whl.

File metadata

File hashes

Hashes for leapfrog_goals-0.0.10-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 e37872eae46bcfd78c24de765b380ead5e95eb647d7e46390265c0a350ab5d5e
MD5 58eb018bd657dd7556d60abe477366a4
BLAKE2b-256 be2308e005be8d0d6dc69821a6534a19661eb5af39f20295ee48a88194062efa

See more details on using hashes here.

Provenance

The following attestation bundles were made for leapfrog_goals-0.0.10-cp312-cp312-win32.whl:

Publisher: goals-deploy.yaml on hivtools/leapfrog

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file leapfrog_goals-0.0.10-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for leapfrog_goals-0.0.10-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bc37c6411f395a8b1e9b8725193b5e81062b25f215de6cff143dced719c16970
MD5 a2ad480ef80e5c0ffb2ed05e4f2bb508
BLAKE2b-256 3693215460eda64b582090102afcddf8717043484c08159ce6797f0145946a06

See more details on using hashes here.

Provenance

The following attestation bundles were made for leapfrog_goals-0.0.10-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: goals-deploy.yaml on hivtools/leapfrog

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file leapfrog_goals-0.0.10-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for leapfrog_goals-0.0.10-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 77a6ab637edc3564f0b04d4f6575293daaf08dc2992d3fb09611654c13b0d8c2
MD5 cfc40936244ac6b024e652d833f5ff74
BLAKE2b-256 57f3cbfca3dc1be939cdb9daaff5a3772c738c873396a72709cebb4bde441e9f

See more details on using hashes here.

Provenance

The following attestation bundles were made for leapfrog_goals-0.0.10-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: goals-deploy.yaml on hivtools/leapfrog

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file leapfrog_goals-0.0.10-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for leapfrog_goals-0.0.10-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6582c9d37afecce66183e4767c7f12ea80b7aedcf3276be833dd96a99429bfd0
MD5 7e7d7b3c99937095d93fff5b9917ca7b
BLAKE2b-256 0c239a17ef12b24c0825efa2cda19f15395904c3ee0e3c3928031e0e9ff23cc4

See more details on using hashes here.

Provenance

The following attestation bundles were made for leapfrog_goals-0.0.10-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: goals-deploy.yaml on hivtools/leapfrog

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file leapfrog_goals-0.0.10-cp312-cp312-macosx_10_14_x86_64.whl.

File metadata

File hashes

Hashes for leapfrog_goals-0.0.10-cp312-cp312-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 4093b87afb1f771099cd6c0ec76eb6e5d061e7c6ec1825592a28d89a0265b6e2
MD5 05fa3a5dd926fe04b54a8fc9efa2a390
BLAKE2b-256 06b7e9ed437b64cff3e04f56cf3552df895cf7f817cbc80beb0841221c8182ec

See more details on using hashes here.

Provenance

The following attestation bundles were made for leapfrog_goals-0.0.10-cp312-cp312-macosx_10_14_x86_64.whl:

Publisher: goals-deploy.yaml on hivtools/leapfrog

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file leapfrog_goals-0.0.10-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for leapfrog_goals-0.0.10-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 7a306cbdcf0b5b6fcaa092136192c9ba3de78b8c09e0fa5103ecb99e25b379c4
MD5 10aa318938701d0e94cfd9bdd41452de
BLAKE2b-256 841bff7e26f18d189cf8f7acdbccf01114d721e90f6665f8b4f6d91ff6035222

See more details on using hashes here.

Provenance

The following attestation bundles were made for leapfrog_goals-0.0.10-cp311-cp311-win_amd64.whl:

Publisher: goals-deploy.yaml on hivtools/leapfrog

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file leapfrog_goals-0.0.10-cp311-cp311-win32.whl.

File metadata

File hashes

Hashes for leapfrog_goals-0.0.10-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 10f86956bdd42115fd5f4f011381e41d18458cee4aedf8818203539cf4e9fe85
MD5 4824df3f0b83c74a63b03d0f939cf8bb
BLAKE2b-256 25684158e33e605bb5c6d00f5f2eab5ed97b6a695e7e318cb4615dbb661dfa96

See more details on using hashes here.

Provenance

The following attestation bundles were made for leapfrog_goals-0.0.10-cp311-cp311-win32.whl:

Publisher: goals-deploy.yaml on hivtools/leapfrog

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file leapfrog_goals-0.0.10-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for leapfrog_goals-0.0.10-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e6178f3788fb0669f6bb55dd81a537d3b3e3db51cf0d28bda92e9daf9d9fa823
MD5 eae8492e85be338b67b9aa3ff181a404
BLAKE2b-256 4371b347ce559f9a4b4bbf85f379a9243e6662db5e40bcf48932f7e76c3c003b

See more details on using hashes here.

Provenance

The following attestation bundles were made for leapfrog_goals-0.0.10-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: goals-deploy.yaml on hivtools/leapfrog

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file leapfrog_goals-0.0.10-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for leapfrog_goals-0.0.10-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1ab52a5e2930fc6ac07f1b4fd7b1b020a632ecd45bbe49911e5aae5630296fa2
MD5 c24b7cefcdccd7ae740244c2d7d2dc99
BLAKE2b-256 9403a5fc0f785573f88e5b8705edea6816389964b157dd754bda2d89f122f7ee

See more details on using hashes here.

Provenance

The following attestation bundles were made for leapfrog_goals-0.0.10-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: goals-deploy.yaml on hivtools/leapfrog

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file leapfrog_goals-0.0.10-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for leapfrog_goals-0.0.10-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1fc50902f57928fbba84d87b40c9ded17dc8723e6c9210580260725a0bc24981
MD5 9953b062d4b0055e150829f839929a77
BLAKE2b-256 cbf98976889a66bcb62525c2339593414402356da7d7bd5267afd8793bb17f62

See more details on using hashes here.

Provenance

The following attestation bundles were made for leapfrog_goals-0.0.10-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: goals-deploy.yaml on hivtools/leapfrog

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file leapfrog_goals-0.0.10-cp311-cp311-macosx_10_14_x86_64.whl.

File metadata

File hashes

Hashes for leapfrog_goals-0.0.10-cp311-cp311-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 b28f23606a8f9efa5155252b784f59cd92d06d9bf689cd5cf8fce92384f06d01
MD5 90ebc949b96a79f73c621df2532b0877
BLAKE2b-256 a788bad42b0eaef332ce788dc092b8208aa4ab7546770e7b3916b764e54fbaab

See more details on using hashes here.

Provenance

The following attestation bundles were made for leapfrog_goals-0.0.10-cp311-cp311-macosx_10_14_x86_64.whl:

Publisher: goals-deploy.yaml on hivtools/leapfrog

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