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

Uploaded CPython 3.14tWindows x86-64

leapfrog_goals-0.0.7-cp314-cp314t-win32.whl (154.3 kB view details)

Uploaded CPython 3.14tWindows x86

leapfrog_goals-0.0.7-cp314-cp314t-musllinux_1_2_x86_64.whl (640.4 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

leapfrog_goals-0.0.7-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (194.2 kB view details)

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

leapfrog_goals-0.0.7-cp314-cp314t-macosx_11_0_arm64.whl (166.2 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

leapfrog_goals-0.0.7-cp314-cp314t-macosx_10_15_x86_64.whl (168.7 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

leapfrog_goals-0.0.7-cp314-cp314-win_amd64.whl (168.1 kB view details)

Uploaded CPython 3.14Windows x86-64

leapfrog_goals-0.0.7-cp314-cp314-win32.whl (152.7 kB view details)

Uploaded CPython 3.14Windows x86

leapfrog_goals-0.0.7-cp314-cp314-musllinux_1_2_x86_64.whl (638.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

leapfrog_goals-0.0.7-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (192.0 kB view details)

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

leapfrog_goals-0.0.7-cp314-cp314-macosx_11_0_arm64.whl (164.4 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

leapfrog_goals-0.0.7-cp314-cp314-macosx_10_15_x86_64.whl (167.0 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

leapfrog_goals-0.0.7-cp313-cp313-win_amd64.whl (162.7 kB view details)

Uploaded CPython 3.13Windows x86-64

leapfrog_goals-0.0.7-cp313-cp313-win32.whl (147.5 kB view details)

Uploaded CPython 3.13Windows x86

leapfrog_goals-0.0.7-cp313-cp313-musllinux_1_2_x86_64.whl (638.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

leapfrog_goals-0.0.7-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (192.0 kB view details)

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

leapfrog_goals-0.0.7-cp313-cp313-macosx_11_0_arm64.whl (164.4 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

leapfrog_goals-0.0.7-cp313-cp313-macosx_10_14_x86_64.whl (166.9 kB view details)

Uploaded CPython 3.13macOS 10.14+ x86-64

leapfrog_goals-0.0.7-cp312-cp312-win_amd64.whl (162.7 kB view details)

Uploaded CPython 3.12Windows x86-64

leapfrog_goals-0.0.7-cp312-cp312-win32.whl (147.4 kB view details)

Uploaded CPython 3.12Windows x86

leapfrog_goals-0.0.7-cp312-cp312-musllinux_1_2_x86_64.whl (638.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

leapfrog_goals-0.0.7-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (192.0 kB view details)

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

leapfrog_goals-0.0.7-cp312-cp312-macosx_11_0_arm64.whl (164.4 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

leapfrog_goals-0.0.7-cp312-cp312-macosx_10_14_x86_64.whl (166.9 kB view details)

Uploaded CPython 3.12macOS 10.14+ x86-64

leapfrog_goals-0.0.7-cp311-cp311-win_amd64.whl (163.4 kB view details)

Uploaded CPython 3.11Windows x86-64

leapfrog_goals-0.0.7-cp311-cp311-win32.whl (148.0 kB view details)

Uploaded CPython 3.11Windows x86

leapfrog_goals-0.0.7-cp311-cp311-musllinux_1_2_x86_64.whl (639.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

leapfrog_goals-0.0.7-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (193.2 kB view details)

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

leapfrog_goals-0.0.7-cp311-cp311-macosx_11_0_arm64.whl (165.4 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

leapfrog_goals-0.0.7-cp311-cp311-macosx_10_14_x86_64.whl (167.7 kB view details)

Uploaded CPython 3.11macOS 10.14+ x86-64

File details

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

File metadata

  • Download URL: leapfrog_goals-0.0.7.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.7.tar.gz
Algorithm Hash digest
SHA256 20a6d80c77a62e9e98811c587dc14b809cc09037baa45a92e03686859507bbd3
MD5 bd3641e66922e700d97e0d326ed4ce7d
BLAKE2b-256 7c3651e529c1a687ccb74bcf87add25ec30022ca391ed20c06ae47661553b8dd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-0.0.7-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 84770a02073f3bded2a90f27b55f64fba4cade83a315c22da4b20e5372dc5ee4
MD5 8570856286dbd133d875198368036554
BLAKE2b-256 ec2d9638c30ac7169fa608ebeb8b787c1f0efb6561bd63ce37b83c6400f6a4a9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-0.0.7-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 53e5620010d5604b2e3fc5c4b4e9958fb3752339d9153e18b0fc2fa455b5cf75
MD5 d572ee46ced99e30ae6b27e2b6d7f5f9
BLAKE2b-256 6762245a8cbedab27f6a460fd4ff28a99769f48fd707c9082421447241535485

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-0.0.7-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f8a4feac4043f583f57b87042874445548365d93213ecc5b9c7cbfb6cbf84092
MD5 56293e23f828904bc9d6d38092f389dc
BLAKE2b-256 a012e0255a32327dc48872076ca1643185d4c3d367e9fda97e919368891fbb80

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-0.0.7-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d6f98b8cf9298bc9f96efb2ddba15b29513d20877c72074b6b99f8d611d7c046
MD5 59d47b66edbab8c32625ca5f1c4d5bdd
BLAKE2b-256 7208359abe342122cb050a365f5795ac43bc0efdb69743927923bec41bfb2814

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-0.0.7-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e0800b3bceb6cdc70f7c572ba4c7554cbeb710fe7e5f78c8a3d0d57ac815691a
MD5 4e79dbffeb61b9da5233eceb9d831d3e
BLAKE2b-256 ea979312d9f2549654b7afd0a49b4ebccb7cff74cfe26fae419378ebe390cdfe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-0.0.7-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 ce224c73a51e47b67602514d0ec4078f184bd131da8b361adf0d37cbd1bb8cd5
MD5 27a794cc587be8705a313817e4f812a0
BLAKE2b-256 a6dbe599e480554f45402a28f5bc53948c3540c8f245f91fc3a0a636a777d4aa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-0.0.7-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 c2c1b69793d2e8bda2528607adc44032d09227f71c5418817673d0bf5f5b99b5
MD5 083ee29ade19e88187d1ff4e2f8aaee5
BLAKE2b-256 29ed583ce4ff38704c61ae9e9974462d49978aca5ff868d36627100c5972215a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: leapfrog_goals-0.0.7-cp314-cp314-win32.whl
  • Upload date:
  • Size: 152.7 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for leapfrog_goals-0.0.7-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 aea18b8c95de5102adc423ae8d01a962adc7029aa68a68d1378cc01a1861a303
MD5 e83d5956cbcc5c01af316e7938daa597
BLAKE2b-256 dccc402443cf7e8b6a16fe1167e6c5e166567ff778d22d5abb8262d8bfe2d4d9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-0.0.7-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 19f3608f475d3dba88b1d9a621e37bf13a4fb879fd25e240f20e91cfe83a1352
MD5 1e0accc1e37d11d1d82b800ab2319b78
BLAKE2b-256 48c665c57af63450bb0963ba6a055fe99969cdd7bfb15e9018e0cb3cd957f536

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-0.0.7-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0cdfaa73d8e3e8239e7096d5889161b5caa91ace8d5439e832b07ed77b9d7514
MD5 6dcbbbdd09e77a0780dc0ff196d4fd65
BLAKE2b-256 e63b6832c396bdbae3f06a282970d58f574fa8e90c7c0dbde672612dad6c240f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-0.0.7-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7639fdfe27206ac3199d4dd5cc0b8cc2b96327bdffca3398ea8cedd6cfa8f34b
MD5 2338e7f710cef57484dbaece98688675
BLAKE2b-256 2b1824131275632244a47cc987bf6fb9f58f6ca1a2022907312e8b8e41c2726a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-0.0.7-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 e37bd8a93d16cbc7b7eb113425c3e9f1d59406069655af1bc518d4bc2453e56a
MD5 a688ed0d424468b51a51f4900eea8e8c
BLAKE2b-256 22c65fd32da9680d001d098a9d8c08f06e868c49531ce0837ae5903b1cb32235

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-0.0.7-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 05dc596b2369b6eeefbd4b3f5fc3495b2d5c60e548c9ff280de878956fcdae8a
MD5 51a14679c9bac10a157e892bcecf4003
BLAKE2b-256 57351dc600decb02f3abd256f48968176586fab8efa27d678c7fa4258f8fea24

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: leapfrog_goals-0.0.7-cp313-cp313-win32.whl
  • Upload date:
  • Size: 147.5 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for leapfrog_goals-0.0.7-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 c6ddde43ab791ce650550a33bd4278b032b256f24a4bc73f97335a2e35c77f8c
MD5 3374e4becbdbac400e84bdea1e8bcc94
BLAKE2b-256 8fe0ec1de5d696b652794d1b91a157df973d7537bc62887103326c72e6e6b40e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-0.0.7-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5d3772b7ba6e71431259f194b8d3d8543e0fa23c2fed8e612ab7e13eeba1b6bb
MD5 8639faaed1aecb629bb5e30138507e0f
BLAKE2b-256 1933b8565e46835f81bff80a50c0b703d864cd76d3310e9184a9d63985f95fb9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-0.0.7-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f2ee9fee17254e22ab55cfc4f7cacc34da053ffb34d9cfb6904369bbcb55efd0
MD5 0069d20449d0405087ca9c31eb0870bb
BLAKE2b-256 e4ceaa4c3f21385ad51127641b30e3713bef06e9a5c5220d1f74213d80908bd1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-0.0.7-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f300d632d80098fa82da516f0b63107f5436684b6ae8c2d4028888b11139ca13
MD5 b67bf1dbe4a7c28b8d28b186e93b7fa5
BLAKE2b-256 d9118192ffa5d0f2f2a1732eb6d9bb9030c5aa3991d0d9c1ac086707e59a8f8a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-0.0.7-cp313-cp313-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 0dbf999d27f5056d8f31486aabb8822a2addf8f4ba831946b187a1f2efdb55a8
MD5 6537ead2c50cc86884a5f0ff8785a49d
BLAKE2b-256 b07f812a2ef3c170e981144e925dedf3cc6686f73ed72d19ef8d8e1d2714c9bf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-0.0.7-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 5fe4efda662427c3ac8befb5b33a9f0a1ca21877c548fa2ee904f7f3fbfba51b
MD5 bfce7c08f13016a4242f7fa0dc2eadc2
BLAKE2b-256 9125b53b9b8adabe6e1f93527eaf42ca7060e3dd222d1578467bca5e6cd71aa3

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: leapfrog_goals-0.0.7-cp312-cp312-win32.whl
  • Upload date:
  • Size: 147.4 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for leapfrog_goals-0.0.7-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 a800a967e1448ebc8aaf1ac08c4d02dd263af87902657086296605ac7710d711
MD5 a203af6476094bc77d69d3061c9b8153
BLAKE2b-256 00d39c20f7f7f187259ec54327e13d152134ac8c2853d0be41192820b81c952d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-0.0.7-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 333c1c25c2722862dee65498527c7acf27a104d592b4da6587f0cd8c161dc224
MD5 87647b2a91dac78bd936c607baf2f6a9
BLAKE2b-256 c407f820a79dc7ba0a75880d36e59b53bdd49486c8d3c34a8b0a88701233e8a0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-0.0.7-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 cee02c8251729ce356df4dd4a8f4ab4e533b7f49891e631651431b0eddf033b2
MD5 1168ad6a95c6c566cef4433dfad40830
BLAKE2b-256 9c1c07a977a904b1395e671a66d705c9c15bb4e1f6fb7590510b835e59c97e12

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-0.0.7-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2edbdd97ca69d38d497c9b665ac0276b3c22a2760f4dd950b8366a15607207a2
MD5 a4994c4cb0050db1b181993385d7f93f
BLAKE2b-256 f1b6d69183d6ce4a575b60b02415d887ba497088cdcd7e0b3860fafe2d373bfd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-0.0.7-cp312-cp312-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 f91dc4cca58f7a3943947758ac8aa1dc93676293630a89d483dab7236f2f022c
MD5 651f1e9af83516d730c0ff0ed360525f
BLAKE2b-256 bca0a5165d45f25180f31ff771ee0d3171059b4d9c810a06ee921a5a94f42252

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-0.0.7-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 2eb2c77f059b1bc1c0046b88d5724cde7496baf27cadc27444056773ff4fcfd1
MD5 db4b425c5398e6734d34fc39ffc34065
BLAKE2b-256 21238d6e60aa2e8cdd0bf2ed84515f229b5487720a5864c0b3eb79622610f5bb

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: leapfrog_goals-0.0.7-cp311-cp311-win32.whl
  • Upload date:
  • Size: 148.0 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for leapfrog_goals-0.0.7-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 c44a5980602ada5debe8a5dc291ec6541b1a572e90a828afc73e5619895721eb
MD5 34020297bad41d9bcc3d3c782e01b5ed
BLAKE2b-256 2e5d5510b9b445e9c146b442addac847f92b0688f3111b3fe785f6961747e673

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-0.0.7-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 96028abece3bab1e62eea8db0285e59ec08eff093673d98f3d0b6f52c97e7b54
MD5 9e9c8f9053c3b2e0fbe1dee13fda0ab7
BLAKE2b-256 cd222ed1cc1d9b1aa5d53bae578639cdd30d9aa54d85b9d32f46344a41f6a524

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-0.0.7-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3e98d94f75b0e9c753f0aa6305f76e9d079bd709ffe19367f90859a8424abc0b
MD5 e9b18d3a2955bb1b81b57a6129ce9df4
BLAKE2b-256 567093adab60285d0563a8f2cfc4b70bc18c9839ecb3aaac76f23d72a11b561c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-0.0.7-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c717f4f9f92135dba9b39a180c3b90912dd2611304149b1bacf5de05888f9496
MD5 66bdeb42416336d73cfb7dd3fa4eae0b
BLAKE2b-256 5175a94d31a29074502a89b32f4f9a5ef092336b4e41bcf5a4ce012f5a322c4f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-0.0.7-cp311-cp311-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 f8eb0b2eaed8a936d406a4f2541dcbf5d1daa4a7d7503ba5a805c2946b197d80
MD5 829e0de5eb42c1d8e70ef631b8462325
BLAKE2b-256 b4312b1a654674f5c40fcc26ecf51ac107f81064943e60a1b8f99eb0778913d7

See more details on using hashes here.

Provenance

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