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.5.tar.gz (1.4 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.5-cp314-cp314t-win_amd64.whl (169.0 kB view details)

Uploaded CPython 3.14tWindows x86-64

leapfrog_goals-0.0.5-cp314-cp314t-win32.whl (152.2 kB view details)

Uploaded CPython 3.14tWindows x86

leapfrog_goals-0.0.5-cp314-cp314t-musllinux_1_2_x86_64.whl (627.7 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

leapfrog_goals-0.0.5-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (181.4 kB view details)

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

leapfrog_goals-0.0.5-cp314-cp314t-macosx_11_0_arm64.whl (155.9 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

leapfrog_goals-0.0.5-cp314-cp314t-macosx_10_15_x86_64.whl (158.8 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

leapfrog_goals-0.0.5-cp314-cp314-win_amd64.whl (161.9 kB view details)

Uploaded CPython 3.14Windows x86-64

leapfrog_goals-0.0.5-cp314-cp314-win32.whl (147.2 kB view details)

Uploaded CPython 3.14Windows x86

leapfrog_goals-0.0.5-cp314-cp314-musllinux_1_2_x86_64.whl (625.4 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

leapfrog_goals-0.0.5-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (179.5 kB view details)

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

leapfrog_goals-0.0.5-cp314-cp314-macosx_11_0_arm64.whl (154.3 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

leapfrog_goals-0.0.5-cp314-cp314-macosx_10_15_x86_64.whl (157.3 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

leapfrog_goals-0.0.5-cp313-cp313-win_amd64.whl (156.5 kB view details)

Uploaded CPython 3.13Windows x86-64

leapfrog_goals-0.0.5-cp313-cp313-win32.whl (142.8 kB view details)

Uploaded CPython 3.13Windows x86

leapfrog_goals-0.0.5-cp313-cp313-musllinux_1_2_x86_64.whl (625.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

leapfrog_goals-0.0.5-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (179.5 kB view details)

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

leapfrog_goals-0.0.5-cp313-cp313-macosx_11_0_arm64.whl (154.3 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

leapfrog_goals-0.0.5-cp313-cp313-macosx_10_14_x86_64.whl (157.1 kB view details)

Uploaded CPython 3.13macOS 10.14+ x86-64

leapfrog_goals-0.0.5-cp312-cp312-win_amd64.whl (156.5 kB view details)

Uploaded CPython 3.12Windows x86-64

leapfrog_goals-0.0.5-cp312-cp312-win32.whl (142.8 kB view details)

Uploaded CPython 3.12Windows x86

leapfrog_goals-0.0.5-cp312-cp312-musllinux_1_2_x86_64.whl (625.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

leapfrog_goals-0.0.5-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (179.5 kB view details)

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

leapfrog_goals-0.0.5-cp312-cp312-macosx_11_0_arm64.whl (154.3 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

leapfrog_goals-0.0.5-cp312-cp312-macosx_10_14_x86_64.whl (157.1 kB view details)

Uploaded CPython 3.12macOS 10.14+ x86-64

leapfrog_goals-0.0.5-cp311-cp311-win_amd64.whl (156.3 kB view details)

Uploaded CPython 3.11Windows x86-64

leapfrog_goals-0.0.5-cp311-cp311-win32.whl (142.8 kB view details)

Uploaded CPython 3.11Windows x86

leapfrog_goals-0.0.5-cp311-cp311-musllinux_1_2_x86_64.whl (625.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

leapfrog_goals-0.0.5-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (179.8 kB view details)

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

leapfrog_goals-0.0.5-cp311-cp311-macosx_11_0_arm64.whl (154.7 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

leapfrog_goals-0.0.5-cp311-cp311-macosx_10_14_x86_64.whl (157.2 kB view details)

Uploaded CPython 3.11macOS 10.14+ x86-64

File details

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

File metadata

  • Download URL: leapfrog_goals-0.0.5.tar.gz
  • Upload date:
  • Size: 1.4 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.5.tar.gz
Algorithm Hash digest
SHA256 3a4bf51049c460063e8a3611d6e31a9ec367e265f9444fa7e44ce6d51e26e823
MD5 dc2a04ec18cb03e85eea2ba9d4e6a45f
BLAKE2b-256 b33191bd1daf8a3ad2f1a62f41d4631de7f9a5cefe50141761398cce32d4b44c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-0.0.5-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 2f8a141a3f33e0d3c1e3f8d6d647025b2d25f3152a38008e2403db4e7488d9f3
MD5 c25443fd90644cd2145898af0ff83313
BLAKE2b-256 decbe175d51802852b0048ae843bc65d0d33527e8baa1aaa4ee8521fc35dda9b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-0.0.5-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 2cddc9a8feb6bc78cb273444f3a6c1b1924c6dc80e19f375839663017598b535
MD5 935e16ab1bf1b05bdf7d5c44c65dbb34
BLAKE2b-256 fc02ca091f22d7a99df6bdd223ca505696ad76738bf197fc16a2bfce9395b6ce

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-0.0.5-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 dd7fa53b046c1c5c89b91910ae97d97a0c466017ad961e5f4050e67a1413b461
MD5 2413657779f9166f68f138698b8df46f
BLAKE2b-256 5f94a0c371993246a31709b27ad4a7e3244fd1deeb04735b083a71c3c4f7d3cc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-0.0.5-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 26f39fe24edc33f3b5868060f7a135372bae7d51b912268db07fb5c7399f6288
MD5 550572a069e6acfec313a1796e0f3a13
BLAKE2b-256 b1d6b214f36f88d8f9fe86e507017513c27b148db9e4ff7d46797a572296d861

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-0.0.5-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 80f4fddf204a9defba15bc84b5245c85f17fc399cb9a1e86924517a3081eeb0a
MD5 dce76132cc02fdd77f8c6a044ca27a6e
BLAKE2b-256 e7dcb87a02ae3c8283fadf5463ba01ee4be23dc185166c07abc8bc671b685a87

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-0.0.5-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 93a8ffbd24f1d2354a52b51732f9d24c78a90ce4c0f00282ee1eb60e9380065c
MD5 e40e7d04781568cc86d1edbb5a5928f6
BLAKE2b-256 4bf78104850b161c7f84f8eb15e13ab80fafd4e19c62eef18857cdde165114ba

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-0.0.5-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 4fd4219e50655e420c4e59b6e124695885036996dca80db2d6383354049a3aee
MD5 504b4de706051729e6cdaf8ad02d8f12
BLAKE2b-256 44540aae1f41f3af0f808d3865251aa60a286e3e3ced80bb1b6c3bfe135b50a9

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: leapfrog_goals-0.0.5-cp314-cp314-win32.whl
  • Upload date:
  • Size: 147.2 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.5-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 24a60f04b06358ad3f891365a4d0f390eb8656c2dd74c314bb10e60a6b7803cf
MD5 fb7b6f1267f528c399189e6f68fadc21
BLAKE2b-256 52c7547e55c244b030f1a5745d4f9c4b2281d544d059fd38ff83d52dcf5f14a2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-0.0.5-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 eb44198aa717ca55cb43c43f6c6745b32e6784721a09aee1a9659d2dbe09c934
MD5 141d0309ca2591a4124db7be5f81eecf
BLAKE2b-256 98985af2da8c4005cb1d7714387323e48ce6255a949f105fbf48f4eef164c167

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-0.0.5-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b24ca23d3848245aeb891fe8b9a99c62659c431cece81a29b6a8493f7e4a3295
MD5 5cef0278171c4bb79e1cedc1ea23f8f2
BLAKE2b-256 01e5353e616484e68145dc9cff87b2317b7f1211e394241c73012e43b56062cb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-0.0.5-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 01b8e0bad70d4d487035c9f53ca1bb98167f790b9a67c572589ecaebfda08a65
MD5 9ec7d0e2cbcb2f899e9255fcd4a7768c
BLAKE2b-256 4ccf1f0556116c851f97488bdf30ea2d2e544e6313f8574a9c7cee165207ba39

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-0.0.5-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 cf6158ee43b9331115af2fac19ab084992f65b5b1701e2b64a4b87e77f25637e
MD5 8562f497288e39d20ba610bdef5e61bc
BLAKE2b-256 9e880b88e0be377008b5081f4416abb409b7037252c334f248d2db4e6c473a11

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-0.0.5-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 762e73cc55ecd88befff4480bef9b7c4e240a9fb5407155d1c89caefa2987da2
MD5 6867b641da05c6fc17f63ccc22aff4ce
BLAKE2b-256 1b23ed4d1c73a8b57319fad8724f05633153c9420bee0aac7b98fc072872f452

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: leapfrog_goals-0.0.5-cp313-cp313-win32.whl
  • Upload date:
  • Size: 142.8 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.5-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 d737590f440d8a01edbbf6867dc0cb25765dc02cc9b2062f7fe2ca92ed35f068
MD5 0b894cb5e5e2d2c3331f48a264211ffd
BLAKE2b-256 30fb5b04dc00bfedb49cba5a48555a0dd7728c4050d3d6f075bacea1ea67345e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-0.0.5-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cbc0baa8781e473621f9a07d2ea98b8432043f9acb8aedf6539aa9560623536a
MD5 6025fbfadeb5d8d2600ca4d58f7fd1b9
BLAKE2b-256 9ee0eda5f07fd5befe82f0a8ab6fd34aca8096cbdb564dafaeffc9468c2cdaa0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-0.0.5-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 efb2586eabcd4a49530b36cbc105493a54409acfe4dbfcec16da7835761ff1cf
MD5 a31b28cd0b408191ffd313161176f262
BLAKE2b-256 28d6b8b8c8601b3dc6145f2ee8d39f82468e1aa0228a8fad88f0767b679d79ff

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-0.0.5-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 49a249266fdbb0b0d4589af3860578a30cbaa06a276946581c5a022dcbe9c97c
MD5 67b2d38b126da5d2edcaf64acc6fc001
BLAKE2b-256 1e9ba728367a7e1ec7617568db86d2015d4df136c9d30088cf4dfabe8a2d52fc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-0.0.5-cp313-cp313-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 3a5757a420fa002051f041d9cb6257071f659d56cc398c94a9b6e6fd6d1f1777
MD5 d066b48f0be739eb49123c51e5693d94
BLAKE2b-256 a6b9078a9d3ed3f2f235698232d81ad4cc508f4d1fd426ef880866a5e77acdad

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-0.0.5-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 a0339af7d69d5cfcbadd3d5cd7eda27e2df49ea4fc7dffcb163cbb47c392efa5
MD5 71c6f0272c1b262e65ea4b6cab08db3d
BLAKE2b-256 b445856ad5a7111b2e5e5b05146edc87a5262841e24bb3b6c382f202fb4f24fa

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: leapfrog_goals-0.0.5-cp312-cp312-win32.whl
  • Upload date:
  • Size: 142.8 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.5-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 cde53ba3bdd88b43c80c1e7d55b4c7fd63e043913ca37caf1daaefc09b1c02ac
MD5 e5b960966f97e50fcc993360339cab33
BLAKE2b-256 74df72751a7c4f549da4fb44313dc3679e0d2d52d651d1d54a14a179cbd74333

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-0.0.5-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f211781970e58cc35b648f01c4a4f769484340537c609be87764769b03875fc2
MD5 bc68ea16941bab722aa55ee3fab3a41c
BLAKE2b-256 43c551e08acba0025c789429f92025ede1c5d004220108d92a270d786acc0b76

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-0.0.5-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 71e912b0d77961634943abf1af1fda069f650179d81acbdd7b5b0715e6e8d4fc
MD5 52e8bbf92660b3d6b5bc57d19173ff78
BLAKE2b-256 0c6fbd5fa89b23eb6e3248bf1733f2803ebaeb17a304279b7c76fa2d29223a59

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-0.0.5-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4bf97e151152f17e8386c23d95e67473a1ded80554218bc710ed1f3c8b479160
MD5 1c6bac5b09ae13597c83b45ea8c45add
BLAKE2b-256 3f32d4fd3a585497c9d2bca81f77331ce834e3b90d8336362b7d37e99aa759ce

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-0.0.5-cp312-cp312-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 3d9053ba9d21c01931b464cb33e0b700dbfb727049a1c2469000d619c3431d5c
MD5 17ef4c474fd6b6c7bd03fdc5f7e84130
BLAKE2b-256 56ca1cb7b40295dcf119dea2d2e0f6392c5377e432e7e45b70ef1baa0aac2bc6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-0.0.5-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 7a4b8ad68a612cc9ed7248772961a22dd5f6a5d5d5ad80b5f5d6204a3dfd092f
MD5 8ffe45baefcefb2b41485d9bb151eff6
BLAKE2b-256 43f5ebeda3902fbfa3b521b77ba38e2976fc5757344f8636a0ef2f8b60fa3ace

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: leapfrog_goals-0.0.5-cp311-cp311-win32.whl
  • Upload date:
  • Size: 142.8 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.5-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 5fd443c7c594bd9dc3f3583e1530a8cdf1adc30633cad3afc86d68c0ad5b2d48
MD5 3c24f9526a609242a7f0345d25662a45
BLAKE2b-256 51a8da112d3e9d7b2321a5b98b614a6fad30328361efde4d9974935a94cb3398

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-0.0.5-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 df7cfc4ae543b87aa3f10bd3d506fd1c3ec258a73c621a46e3a5cf8723ae3d33
MD5 a2ae1934dcb9c5bfb8f3407f462ed464
BLAKE2b-256 2dec5d6c8e8fc5cf03ad7b871aec84814411e54774c6ea426c78caacd255f0de

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-0.0.5-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1943e9b87a501aa746360b4a493aee66da910225f6aa86b5db06c5abc192acbb
MD5 b0b48118ef1463a7dee05d15288a95fc
BLAKE2b-256 870f51ea15db67e3bf5597c186ca33cf593e83ff853a412f5dc9678e51f1b4d9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-0.0.5-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3b4d5d8708c5dad561500971801ef869769e7f4a2de6584e6fa298c3ef98f633
MD5 683af68a1bb79717f03aabc09875389c
BLAKE2b-256 d3c7217596cac127a4b8aa36f9972e8ff3b9582f782f940bd2b17f6c7a65256c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-0.0.5-cp311-cp311-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 6d9d6e5bafa3f0f06ceab50a3219b850a6f559b521a2e26af0fc3d19ae142344
MD5 413e0213b00d9179047f851d0ea38cc2
BLAKE2b-256 a49010931b781cdf03755ae21294181c365dfb86c4eb16bdfa38ccb68254e5d7

See more details on using hashes here.

Provenance

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