Skip to main content

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.

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

Uploaded CPython 3.14tWindows x86-64

leapfrog_goals-0.0.12-cp314-cp314t-win32.whl (159.0 kB view details)

Uploaded CPython 3.14tWindows x86

leapfrog_goals-0.0.12-cp314-cp314t-musllinux_1_2_x86_64.whl (646.1 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

leapfrog_goals-0.0.12-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (200.3 kB view details)

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

leapfrog_goals-0.0.12-cp314-cp314t-macosx_11_0_arm64.whl (171.5 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

leapfrog_goals-0.0.12-cp314-cp314t-macosx_10_15_x86_64.whl (173.5 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

leapfrog_goals-0.0.12-cp314-cp314-win_amd64.whl (173.9 kB view details)

Uploaded CPython 3.14Windows x86-64

leapfrog_goals-0.0.12-cp314-cp314-win32.whl (157.5 kB view details)

Uploaded CPython 3.14Windows x86

leapfrog_goals-0.0.12-cp314-cp314-musllinux_1_2_x86_64.whl (644.1 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

leapfrog_goals-0.0.12-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (198.0 kB view details)

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

leapfrog_goals-0.0.12-cp314-cp314-macosx_11_0_arm64.whl (169.8 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

leapfrog_goals-0.0.12-cp314-cp314-macosx_10_15_x86_64.whl (171.9 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

leapfrog_goals-0.0.12-cp313-cp313-win_amd64.whl (168.3 kB view details)

Uploaded CPython 3.13Windows x86-64

leapfrog_goals-0.0.12-cp313-cp313-win32.whl (152.9 kB view details)

Uploaded CPython 3.13Windows x86

leapfrog_goals-0.0.12-cp313-cp313-musllinux_1_2_x86_64.whl (644.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

leapfrog_goals-0.0.12-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (198.0 kB view details)

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

leapfrog_goals-0.0.12-cp313-cp313-macosx_11_0_arm64.whl (169.8 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

leapfrog_goals-0.0.12-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.12-cp312-cp312-win_amd64.whl (168.3 kB view details)

Uploaded CPython 3.12Windows x86-64

leapfrog_goals-0.0.12-cp312-cp312-win32.whl (152.9 kB view details)

Uploaded CPython 3.12Windows x86

leapfrog_goals-0.0.12-cp312-cp312-musllinux_1_2_x86_64.whl (644.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

leapfrog_goals-0.0.12-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (198.0 kB view details)

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

leapfrog_goals-0.0.12-cp312-cp312-macosx_11_0_arm64.whl (169.8 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

leapfrog_goals-0.0.12-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.12-cp311-cp311-win_amd64.whl (168.9 kB view details)

Uploaded CPython 3.11Windows x86-64

leapfrog_goals-0.0.12-cp311-cp311-win32.whl (153.6 kB view details)

Uploaded CPython 3.11Windows x86

leapfrog_goals-0.0.12-cp311-cp311-musllinux_1_2_x86_64.whl (645.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

leapfrog_goals-0.0.12-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (199.4 kB view details)

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

leapfrog_goals-0.0.12-cp311-cp311-macosx_11_0_arm64.whl (170.9 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

leapfrog_goals-0.0.12-cp311-cp311-macosx_10_14_x86_64.whl (172.7 kB view details)

Uploaded CPython 3.11macOS 10.14+ x86-64

File details

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

File metadata

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

File hashes

Hashes for leapfrog_goals-0.0.12.tar.gz
Algorithm Hash digest
SHA256 399b75e06c8441188b3bcc1c40cea427fd6b052b4e3c5293872e50d263eeb180
MD5 a32408b9198048eea3c31b65808a863e
BLAKE2b-256 ca63522e10e1825cff4ecf86a8a099f30858409a287de1c772526cf7e63eb4a2

See more details on using hashes here.

Provenance

The following attestation bundles were made for leapfrog_goals-0.0.12.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.12-cp314-cp314t-win_amd64.whl.

File metadata

File hashes

Hashes for leapfrog_goals-0.0.12-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 bdac423366e140ef4d9ca46fb1e6b3470a4d3a1670b8e32bc8f647d02b501bfe
MD5 82a5468081bcbc395141760e996f1776
BLAKE2b-256 a6c4b0f281bd10e3f2e65adceba743977c168107d153199299073dec1acd72a6

See more details on using hashes here.

Provenance

The following attestation bundles were made for leapfrog_goals-0.0.12-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.12-cp314-cp314t-win32.whl.

File metadata

File hashes

Hashes for leapfrog_goals-0.0.12-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 9594d9760ea39f0163733c53df9ee5bfa4737981d3501815a9415e629c3f9219
MD5 881f4f7fc152cfca68ab17c4e2126b3e
BLAKE2b-256 a44f1fd07209e7608d2d18cee2401778bda0eaa63041f43f4a1d76f92e312dcc

See more details on using hashes here.

Provenance

The following attestation bundles were made for leapfrog_goals-0.0.12-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.12-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for leapfrog_goals-0.0.12-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c345b60785cdd7aadc27b3ed1752cc2bd9a10b4b1c94343a8cb12cf2f9b8c9b0
MD5 023e702da5604d370e98854b237aa042
BLAKE2b-256 22de253b1bf34fbed55ef1f5e69065af2b501b2ab9086d09e99c75a1f146529c

See more details on using hashes here.

Provenance

The following attestation bundles were made for leapfrog_goals-0.0.12-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.12-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for leapfrog_goals-0.0.12-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8f886780b3c84554b1977bf27bc94380cdedbfb1f05f55750f4931911681a4e4
MD5 af77ebe6c52408780f931112c9af28ab
BLAKE2b-256 dc9f8142ee8f52aaf7e7b6f15bc488c374b694877dbc19aecdaa0b73137b4538

See more details on using hashes here.

Provenance

The following attestation bundles were made for leapfrog_goals-0.0.12-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.12-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for leapfrog_goals-0.0.12-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 848569fa2e54e5ed06dc7ce68be6a78123026b62c491f1c69c5da2a3adf84b84
MD5 5baede27cb1fe5bed52019a88ae11e3e
BLAKE2b-256 9a565f49dece169a1f351c0499ee5544200512d073fbb8cdacaecbd3986aa0e2

See more details on using hashes here.

Provenance

The following attestation bundles were made for leapfrog_goals-0.0.12-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.12-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for leapfrog_goals-0.0.12-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 5e7ab0ce7067be5fbf844368c7668f10a7e2cc56fde6781029215b124bd1c005
MD5 b787295e951ec59df8a58f9e93dbdba1
BLAKE2b-256 15df385e2e989eb335e31ee3bb7ed5d586bc50e7e5871162816ad48055122277

See more details on using hashes here.

Provenance

The following attestation bundles were made for leapfrog_goals-0.0.12-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.12-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for leapfrog_goals-0.0.12-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 ac46ea448eb6a2353a8c1177099024867e363c36d737e18ccef4ad7b6725d9da
MD5 08fc0ef05cc6e16f958d3518338d09ac
BLAKE2b-256 11214b5f0aa3a24d6a2405bdf11dd27486b2d91b4e7976b667ec18d791b88fe3

See more details on using hashes here.

Provenance

The following attestation bundles were made for leapfrog_goals-0.0.12-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.12-cp314-cp314-win32.whl.

File metadata

File hashes

Hashes for leapfrog_goals-0.0.12-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 e7d4fb1aa0844e8773e6ad92356b055391b88e8a74bbf355ee3fe6248751d12e
MD5 78b1904db81bb895acf1b0c39aecf5a9
BLAKE2b-256 f33032bc110ad072af55239a5b18ec40aff987b637155a7314c420407cb61e58

See more details on using hashes here.

Provenance

The following attestation bundles were made for leapfrog_goals-0.0.12-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.12-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for leapfrog_goals-0.0.12-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b354557e55119260e1abf969e9d2a4264988c2f705a37b5d77096b85f724ab0b
MD5 a0dc77997d7894175b032c2958531c64
BLAKE2b-256 f4ee5b14a69b9a9db83748a34abaeeee91d0b7cb542f4e846e457d7212f2be08

See more details on using hashes here.

Provenance

The following attestation bundles were made for leapfrog_goals-0.0.12-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.12-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for leapfrog_goals-0.0.12-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4d497778910b7de2e3390e813e8edc6c51c074f2b7c0cb4cdf3cb243e372a702
MD5 bdcab67f6dbdbbae62d7954873165e28
BLAKE2b-256 f5f5f02a016010677220ffc6a593460735e93bc3dbb9cb56f1bdea98b0c5dae6

See more details on using hashes here.

Provenance

The following attestation bundles were made for leapfrog_goals-0.0.12-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.12-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for leapfrog_goals-0.0.12-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 df22aef247beea82d52cca6d43013b196f68c4fb3a4e301020a51d6bfb3bbeeb
MD5 618b7624bcfc68335e99d5301294240d
BLAKE2b-256 617f0f19423b38ae2fb1121b631f92585e724f23f1be2125183fab2a9732d344

See more details on using hashes here.

Provenance

The following attestation bundles were made for leapfrog_goals-0.0.12-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.12-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for leapfrog_goals-0.0.12-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 2084cae1914490c7d9b1787279d0c7018ff0603bb2454dec457e80a6d1b0527f
MD5 b3bd87657a3eec95b49f04ea76038192
BLAKE2b-256 e5520379052e330f45620be55f3493a80b860e015df0f1062c3890152b79f21a

See more details on using hashes here.

Provenance

The following attestation bundles were made for leapfrog_goals-0.0.12-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.12-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for leapfrog_goals-0.0.12-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 6ab33bf4a31d6ad7121023acc7f7511be16966906699624c9f0ceaf8bf38babb
MD5 766c5b546152b4bc7433fc2d6613cfac
BLAKE2b-256 3431413f298c81eb2d7b32a434b1c57a0dc448343e7b6b4c1ab951fc5411940b

See more details on using hashes here.

Provenance

The following attestation bundles were made for leapfrog_goals-0.0.12-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.12-cp313-cp313-win32.whl.

File metadata

File hashes

Hashes for leapfrog_goals-0.0.12-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 ec51158d0a04b67a26d7261e1e31b3aa28637d8b4f1e3f04ca1ecff50ce76ef5
MD5 a0fafa21b00599deedd55f11dafe8215
BLAKE2b-256 6b76519a9039195d6c61f575fa2e77052579ec65d7a18d7137e03b1850b9fce1

See more details on using hashes here.

Provenance

The following attestation bundles were made for leapfrog_goals-0.0.12-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.12-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for leapfrog_goals-0.0.12-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 efe8b5f0cd0a178d073477cf3aa734a741eeb8fde195ef6abd5115e8f2592ca5
MD5 853c48eb2f31feb7c0a2068eddc401bb
BLAKE2b-256 4d7b8469d41819e226b44169add553bc9388ec7e500ba62e95f582a6e91c5e7d

See more details on using hashes here.

Provenance

The following attestation bundles were made for leapfrog_goals-0.0.12-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.12-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for leapfrog_goals-0.0.12-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2c3e1bd470e0d83373a39d23b12aef085ef7a8554357707fae39ec25a2804531
MD5 4ba7292dbf78fce3f7d13b9f0b767ddc
BLAKE2b-256 c98b8d3c40b0b5a0a79864b0959b8f196b71c625f511c3dcdadc945071392b31

See more details on using hashes here.

Provenance

The following attestation bundles were made for leapfrog_goals-0.0.12-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.12-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for leapfrog_goals-0.0.12-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 67f363f8c42f2f2f4c46a969885c3c1d7feeb84ed5ab61180d24c2f00b7dd5fe
MD5 e92c66db6467e81dbdf6be2a2cf6a27f
BLAKE2b-256 fe8e0b79402c898ffbeeb23abf3a713994b1fc06b77da2ef05a6349afd0d2f3f

See more details on using hashes here.

Provenance

The following attestation bundles were made for leapfrog_goals-0.0.12-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.12-cp313-cp313-macosx_10_14_x86_64.whl.

File metadata

File hashes

Hashes for leapfrog_goals-0.0.12-cp313-cp313-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 46db50d019c62663f7ff59151f68b6e509216a02cb0045e4874a13fd0d1fc2a4
MD5 3f1d1a11667e9cd68c43cec5f16cfa09
BLAKE2b-256 f0df0402c0cd06577729158e796a30c50631265a31b6e71d2f6174b9fb2ca21f

See more details on using hashes here.

Provenance

The following attestation bundles were made for leapfrog_goals-0.0.12-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.12-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for leapfrog_goals-0.0.12-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 4e05910f8261cf60ca5bb534761e8876c4c81037ca524cdf62b6cc2ccc56e2ec
MD5 59451ea4dc75ae240b740a363d3e19f9
BLAKE2b-256 51f739056445c8f25712dfd5ac477043ec3b7e5c01d6693f7b589e2ec38dde08

See more details on using hashes here.

Provenance

The following attestation bundles were made for leapfrog_goals-0.0.12-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.12-cp312-cp312-win32.whl.

File metadata

File hashes

Hashes for leapfrog_goals-0.0.12-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 d5a9373f9cc6d8adfa396acaac5fd1c58a5a54a7ed657a94eea7bde7ebe157eb
MD5 5d3f1d4f5c1336509d83df369c99f99e
BLAKE2b-256 5687648788118fb9bd2664b7f2af37215058bb1f1fe0537050c0379006174dd7

See more details on using hashes here.

Provenance

The following attestation bundles were made for leapfrog_goals-0.0.12-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.12-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for leapfrog_goals-0.0.12-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 abedbdf78c921895d92dd0e63f7c4597678c2dbfa8a66229df060924e2904f11
MD5 fdc4a2c02ac1cb561d4b164a2d1673b4
BLAKE2b-256 8882a94b9acca1bbabfa079345fc311e5a6f8853dbd003de74dd9b635491c0ea

See more details on using hashes here.

Provenance

The following attestation bundles were made for leapfrog_goals-0.0.12-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.12-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for leapfrog_goals-0.0.12-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 cb6a90eb221e7f6e6dbf56f6dfbe4c221daf85cf77a6f9fb3c0769886c66d110
MD5 5933c443aa44192e426cf91d6ff3a066
BLAKE2b-256 dedcfd5271ffca4f66225e4a708a2a1d39198792f32a474ac96137708f293c7a

See more details on using hashes here.

Provenance

The following attestation bundles were made for leapfrog_goals-0.0.12-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.12-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for leapfrog_goals-0.0.12-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 85d4f625fc37e3a51eca13dea0a30928cb836f3479f60358e70f70cfe1927c40
MD5 49003c8e7889aa306ccac825c34f68a7
BLAKE2b-256 cfe21a553fc86745bd1761b1d98581b726f2c84d8289743b2b11876465b04a9b

See more details on using hashes here.

Provenance

The following attestation bundles were made for leapfrog_goals-0.0.12-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.12-cp312-cp312-macosx_10_14_x86_64.whl.

File metadata

File hashes

Hashes for leapfrog_goals-0.0.12-cp312-cp312-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 b41fe75e3c1d1696a615984c2e28bebfe2e887ba947457a137cad4e324494b60
MD5 081ecfb85f3ca4234b9aa6f22dfe3a2f
BLAKE2b-256 6a146a1ab2e15abb00029e7a62230e285f56a40a276682fc0662de101182e317

See more details on using hashes here.

Provenance

The following attestation bundles were made for leapfrog_goals-0.0.12-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.12-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for leapfrog_goals-0.0.12-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 f0b64081ca1d16515ebdce675900c251f668ff4a11e327607681ada61269f000
MD5 6ff8bcd5a1b73c1d8fb626a33aba94c4
BLAKE2b-256 b2ee10d9644e4a67a411c3def6b213987bea9f2141c942c501dffa25e9993a47

See more details on using hashes here.

Provenance

The following attestation bundles were made for leapfrog_goals-0.0.12-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.12-cp311-cp311-win32.whl.

File metadata

File hashes

Hashes for leapfrog_goals-0.0.12-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 d9d77dcdf0cc26cc63a6aca2ff25977323686baa89e2695dd256b8a7e82422c5
MD5 1ecd4c8e82d39f194f04ff7d141dbbc2
BLAKE2b-256 559912b303cb66f960b07e1c38e5d0f7f5c5e2a9dec81c16a51a18f60ee8ecb6

See more details on using hashes here.

Provenance

The following attestation bundles were made for leapfrog_goals-0.0.12-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.12-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for leapfrog_goals-0.0.12-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d1edc7ab96509eb02feb94785279715f136c8aafcb9f6a83121409fa06bbbacb
MD5 60c350c827a20f9bdd107ccbcb09378f
BLAKE2b-256 7c325f3c47a16670f4b02fad1567f16730debbc5c9479a59f0cea5d9b65f2465

See more details on using hashes here.

Provenance

The following attestation bundles were made for leapfrog_goals-0.0.12-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.12-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for leapfrog_goals-0.0.12-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3674fc9d05585a75bc21a1194fff0aead2424192cb9567234594ef1204524a3f
MD5 7d506a84b04a95c72ebb9dc6dc89e6e7
BLAKE2b-256 1c739a9c0e0108ec4361a20624fc94214f8b573f578bd4ed5e9262213aa185ab

See more details on using hashes here.

Provenance

The following attestation bundles were made for leapfrog_goals-0.0.12-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.12-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for leapfrog_goals-0.0.12-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4362981389ce3fd92acca77db6739d7c93cf66078c3ce670ad3523c2c70bf24e
MD5 38225183f7029bafe9d9768aac2cf484
BLAKE2b-256 1c827aa7a8bb400ba43c00543ff4917e78441186bd5dcc4111f5ebd1f8d1e90d

See more details on using hashes here.

Provenance

The following attestation bundles were made for leapfrog_goals-0.0.12-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.12-cp311-cp311-macosx_10_14_x86_64.whl.

File metadata

File hashes

Hashes for leapfrog_goals-0.0.12-cp311-cp311-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 93fa9e58e50087eb3d6dca0a50e11f7adb337abbd5da24544f0e7cd2af6b9a40
MD5 078b0e2b6114b95849b7b305934e8bae
BLAKE2b-256 db947d096da1f22913f62ef626980030c5e838708f6cd941ee82080ef6996af0

See more details on using hashes here.

Provenance

The following attestation bundles were made for leapfrog_goals-0.0.12-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.

Release history Release notifications | RSS feed

1.0.3

31 files

1.0.2

31 files

1.0.1

31 files

1.0.0

31 files

0.0.13

31 files

This release

0.0.12 This release

31 files

0.0.11

31 files

0.0.10

31 files

0.0.9

31 files

0.0.8

31 files

0.0.7

31 files

0.0.6

31 files

0.0.5

31 files

0.0.4

37 files

0.0.3

37 files

0.0.2

37 files

0.0.1

37 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page