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

Uploaded CPython 3.14tWindows x86-64

leapfrog_goals-1.0.1-cp314-cp314t-win32.whl (165.5 kB view details)

Uploaded CPython 3.14tWindows x86

leapfrog_goals-1.0.1-cp314-cp314t-musllinux_1_2_x86_64.whl (653.1 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

leapfrog_goals-1.0.1-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (207.4 kB view details)

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

leapfrog_goals-1.0.1-cp314-cp314t-macosx_11_0_arm64.whl (179.9 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

leapfrog_goals-1.0.1-cp314-cp314t-macosx_10_15_x86_64.whl (180.8 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

leapfrog_goals-1.0.1-cp314-cp314-win_amd64.whl (180.2 kB view details)

Uploaded CPython 3.14Windows x86-64

leapfrog_goals-1.0.1-cp314-cp314-win32.whl (163.7 kB view details)

Uploaded CPython 3.14Windows x86

leapfrog_goals-1.0.1-cp314-cp314-musllinux_1_2_x86_64.whl (650.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

leapfrog_goals-1.0.1-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (205.1 kB view details)

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

leapfrog_goals-1.0.1-cp314-cp314-macosx_11_0_arm64.whl (177.8 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

leapfrog_goals-1.0.1-cp314-cp314-macosx_10_15_x86_64.whl (179.1 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

leapfrog_goals-1.0.1-cp313-cp313-win_amd64.whl (174.2 kB view details)

Uploaded CPython 3.13Windows x86-64

leapfrog_goals-1.0.1-cp313-cp313-win32.whl (159.2 kB view details)

Uploaded CPython 3.13Windows x86

leapfrog_goals-1.0.1-cp313-cp313-musllinux_1_2_x86_64.whl (650.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

leapfrog_goals-1.0.1-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (205.0 kB view details)

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

leapfrog_goals-1.0.1-cp313-cp313-macosx_11_0_arm64.whl (177.6 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

leapfrog_goals-1.0.1-cp313-cp313-macosx_10_14_x86_64.whl (178.9 kB view details)

Uploaded CPython 3.13macOS 10.14+ x86-64

leapfrog_goals-1.0.1-cp312-cp312-win_amd64.whl (174.2 kB view details)

Uploaded CPython 3.12Windows x86-64

leapfrog_goals-1.0.1-cp312-cp312-win32.whl (159.2 kB view details)

Uploaded CPython 3.12Windows x86

leapfrog_goals-1.0.1-cp312-cp312-musllinux_1_2_x86_64.whl (650.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

leapfrog_goals-1.0.1-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (205.1 kB view details)

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

leapfrog_goals-1.0.1-cp312-cp312-macosx_11_0_arm64.whl (177.6 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

leapfrog_goals-1.0.1-cp312-cp312-macosx_10_14_x86_64.whl (178.9 kB view details)

Uploaded CPython 3.12macOS 10.14+ x86-64

leapfrog_goals-1.0.1-cp311-cp311-win_amd64.whl (174.5 kB view details)

Uploaded CPython 3.11Windows x86-64

leapfrog_goals-1.0.1-cp311-cp311-win32.whl (159.5 kB view details)

Uploaded CPython 3.11Windows x86

leapfrog_goals-1.0.1-cp311-cp311-musllinux_1_2_x86_64.whl (651.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

leapfrog_goals-1.0.1-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (205.9 kB view details)

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

leapfrog_goals-1.0.1-cp311-cp311-macosx_11_0_arm64.whl (178.5 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

leapfrog_goals-1.0.1-cp311-cp311-macosx_10_14_x86_64.whl (179.5 kB view details)

Uploaded CPython 3.11macOS 10.14+ x86-64

File details

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

File metadata

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

File hashes

Hashes for leapfrog_goals-1.0.1.tar.gz
Algorithm Hash digest
SHA256 1daec506a73a8b16d68d90e5ff1a0e727ee1e222b27d127aa18d3072fb51123f
MD5 7ac916c73d9ca72456b0465c8d9d1758
BLAKE2b-256 c238610e98c7ef52feb79459e3a51c75016f7c39e4d17efb2625e4e82803672c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-1.0.1-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 39193f30aa9512947b0e45ab9faf0a461a06dc1bd382ac18b95b561a51e4c014
MD5 23b51dc3a35d21d46799b44b2ddb5bcf
BLAKE2b-256 72809102ca58cab40508fe488f7d2b8e584ff7b4e7bc1a826cdda13d0e3391a6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-1.0.1-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 483af2ed8715653bd13e64b59491e33092b25f551421649acf9424a6186da313
MD5 81f09fa95ebd13b80dfe7458f9079081
BLAKE2b-256 4dd709e51c1a7945027f2dc18bfb9addc554e34300d70504a58990270fecb571

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-1.0.1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fca73ad46eba49f11a15c5ceeea5a0c4e6bd238e6c22fd12826058cbceab09d0
MD5 b21c1d7b9eed407fc10e695ae2daa35c
BLAKE2b-256 89769516489e5c2c1803961b539052361a86a62dbf0ae3e59f2aa7ccf2def898

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-1.0.1-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2bc688d2c0c6b33ecf0c59bb52829ec3af3f9fc39ad49c3ea78e023192a91aec
MD5 c53e8a388a11b5c5b747bac458e7bbd9
BLAKE2b-256 97e321cbe77a1dbd58c8a45a97529d61d44fbfed9cdd7c17b53b93428537864e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-1.0.1-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2b02b7eb1f22c4beccdf2f814a34aecde67336be347559819b395b5430ae82ba
MD5 f8caf2098d32907655785eb52fbc00a9
BLAKE2b-256 61f5c92f5103cd221f30fde7c38fc625a7046b253af935540e33c8536b9357d9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-1.0.1-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 4cd47320bfb75a8b924c9c9e5e1f83d2c3f635b9fd340040e9ad03aef3c2c70e
MD5 d98d66e3e9c680948289100522775410
BLAKE2b-256 e72875150b00754741c106498f0ea616731dc0f13f95551ac9a952cec42d7e02

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-1.0.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 3403d6c10060fbbb20650225fa369f7ed94f1b6be1b2d502518aa6449133af12
MD5 37b7521d06086877d46fcdfaa7e25e52
BLAKE2b-256 3537f29f3c1c2dc5dbd8e66e3ef0fb7844d8baa1f67e832ca3aad2b9985f0921

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: leapfrog_goals-1.0.1-cp314-cp314-win32.whl
  • Upload date:
  • Size: 163.7 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for leapfrog_goals-1.0.1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 ef3f8c1d31d1d52fe8adbfe662d18cc48e4ce5e59f78bb64e71f63a66741e393
MD5 be6f78b26c4ea5e163b934f43d3ce5d2
BLAKE2b-256 196ea341e8fd8e75768a9ce62e90fa9cd4b164cfb47c7412886f4557c209574e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-1.0.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 88061373ebf1c4055d39f4eee7745910bba58fd84f17897d982fbbb1d635354c
MD5 531226d440e86daf4bc2f017880e4b0a
BLAKE2b-256 0bb4766c736a37d7c95ecb0b3f2f726a7d7c5b769e9effabf695d15b34fb079a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-1.0.1-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5728d8d47bcac92628b01853f85ad2905051f1402664dee56c6ff50165eef216
MD5 2c888d962c9dd844cb68b04230554e3c
BLAKE2b-256 5b84406ad625c9af6599aa41300cac1c55ed70ad3d30ab0f386c64d476b18b43

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-1.0.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6c2d97234b266a13f32dbb7d0b50b2192f3f2f73f840ccb2d24c6729353ab9aa
MD5 e24eeee361890d5cbfa18757a3c99dc7
BLAKE2b-256 af9c885d3da2b1ca9df4d9b4905c106b3f9168539f154641651020954c632c53

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-1.0.1-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 4bdafb4589271793a68e51368a16a9ea761b1be000700b598d2971519bfe76a5
MD5 04708824a129bccd58a1daf44db32cae
BLAKE2b-256 6007167cc4d27f8de1b3b0918cafd50aed4a49c03c1e95bdaa43819637f9c744

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-1.0.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 29474de9a6f4fda05511ebaf44ec9a4c9d96d9f93f47cf710522f2d224b9a4f5
MD5 aa1b8d2b74f646098266cfd6e13f7f39
BLAKE2b-256 5814156c302fa21bd99cc16dd5f2450711526d723daf0b34b9de404ad03af81c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: leapfrog_goals-1.0.1-cp313-cp313-win32.whl
  • Upload date:
  • Size: 159.2 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for leapfrog_goals-1.0.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 e5c70a8a3b18ba8f2394233ee76ed97eb9f66226848399a288685bd160954938
MD5 f5d1abfc92b7790eddc8bc7bde5db70e
BLAKE2b-256 bff9686b1545b2f791cc5dbcc566945471c7b4159da72c0c1aa4565e1a19632c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-1.0.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 30d636a9c7b582c203135446dc72a55dc8d8d20fa7afe68369a195087395ec2a
MD5 6ec0a1dadbd2b829786f85cde6c8439d
BLAKE2b-256 f390cf15eefb82f1a427dcdea769f2e43c78e9f7cce55cba5d876621ef139fb3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-1.0.1-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a24a2543432a42661790e152fb17e7315012cd69a467aac73495050e10d26e42
MD5 9c9936053a7e695034823697cfd196d9
BLAKE2b-256 235af392667426733c8659407b9537d1fbe88cb9ab7862e728a20aa7a8d188d7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-1.0.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fbbf6dd5269ec4137c1971c883882f9e0ed4390a4845b134547a6a3218d5776a
MD5 92e7c0a4fa0054427da24d21284ca5b7
BLAKE2b-256 45cfb35bc39bfbe42a66a27697dac5b2fead4a788bc46be89c27e817518df48b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-1.0.1-cp313-cp313-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 018dacc51233190534ffa6d2bccb4ebef8ba54039418324906b31fd549b33c99
MD5 9580074323b35308e544e6f9d0c5c147
BLAKE2b-256 20673590653e06069bcfdd3f58565b92564fc5b108231fb50b8aacb56fc6b864

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-1.0.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 e6a8cabe391669f1ad61fd5cc190180f4ccc92a6d994873e5a7cf3bdb7f77435
MD5 6cd3cdaa320972fc0370e6075c94e219
BLAKE2b-256 9b914106a3ddc34b90f3568395156aa1f4e28ec9adc151ade8c6b719f9012ad1

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: leapfrog_goals-1.0.1-cp312-cp312-win32.whl
  • Upload date:
  • Size: 159.2 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for leapfrog_goals-1.0.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 810993305bcee73364da03bbcc42462f68cf73107dae929f2b0df8688b71510c
MD5 75afae20c31336818228feeaa216517b
BLAKE2b-256 c1cb0f59977899c87a3a8871529b69775f2442bf0e64431db56d7cf0c1004be0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-1.0.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 df1e4719d6d69e8a1e8267d2759ef49cc1b43e0297f50da440187f85353810dd
MD5 eeb6c491b0277072ef2165d090a4dc83
BLAKE2b-256 75da89417238de3e4880207ea2a79d8f54d30f059318876a8e9b0ffb1fb9ba74

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-1.0.1-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 65f616f1bd5dad7a8cafeec5c1b34d591066e956478eacaaae56db69924f5106
MD5 0b580500cae7b87cc51ee3f6a5765706
BLAKE2b-256 f96ea10080c8e98f8ae78a38842d3224d26421832326660f9fc6a79d7f02a0d2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-1.0.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 472877d1640551b02a932f14d4e61d149f052944f1c91c53c9c50eb99c90bda8
MD5 8a37e4121afc977fbd10ec83df6c6a38
BLAKE2b-256 bd1710516e7115bf7c70811cc3c17949c1c86230da6ff18ac5bcbe5fa0788ca0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-1.0.1-cp312-cp312-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 8e4f31bd96bb1ffafdb02d25321edd48dcea7e6b9bb71e9c37a48f8edb42c4f4
MD5 e3d49ed2b5cd2208bf1f4f2d76e23bea
BLAKE2b-256 f8f857da4185b7bcb579c74dea7e14eeef433b10e785936ba93505b3e6e0b1e5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-1.0.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 c79f7c4b45d6b9f02f94cd554921f25c607d982bfb4a6b579c4c1f3d33905528
MD5 5282c429b98f81fb1ad37b21a5762aec
BLAKE2b-256 98213d14b33e0d3ccacac5eee1b913ae10ebdb50628cd5d54a8f0d3fab1c75f5

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: leapfrog_goals-1.0.1-cp311-cp311-win32.whl
  • Upload date:
  • Size: 159.5 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for leapfrog_goals-1.0.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 e924e078b3344ce408dfd7e8719b717d7915a355ffa6aafd9e26baa182deb7cf
MD5 335057d2e6f7d627e2740488cd396627
BLAKE2b-256 0eeae3f41041f492a9d42524c00f084a15532ff567c33220167fd24d2eb0e93b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-1.0.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 618fedec9fec1915fcea1d3b4e96102b3eb7a545e4581a9324487fa88be11be9
MD5 3c01b0777dd37c32207944336ed87f75
BLAKE2b-256 ffeb05da3c4eb73af08aab07c1eee2bc9b3c4e3f29495cd92f1ac92759ed0948

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-1.0.1-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 53080836da65749f6db4268799aac8245b56257356c41220f92454d09b974304
MD5 93770cb33ff94774cfba4d24fe7eab74
BLAKE2b-256 3494f84ee5adf3a53a8cc68cd394cacdf04f2d39335d7224cac125784a6b5a59

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-1.0.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 41c9c3aa0b302f56c445863421053fc0378b856af2a10c9d6af12df05c853671
MD5 ac8a30631122e7c0ec52f2acf5497375
BLAKE2b-256 8f9cddd5e5bb73e4139268fa1b37bd12285cec8492341bd9998153e0da8c62e3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-1.0.1-cp311-cp311-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 fb8cf4cde843c3bc8c172215401ddb94b087e43ee4c59dee6bb47016b75b7cdc
MD5 8632bce7129f3db3e46a6f4adee826b6
BLAKE2b-256 90a0bdbd22daee73e66cd80d914b6bab07426498075a103dccbcca69d94f1f75

See more details on using hashes here.

Provenance

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

This release

1.0.1 This release

31 files

1.0.0

31 files

0.0.13

31 files

0.0.12

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