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

Uploaded CPython 3.14tWindows x86-64

leapfrog_goals-1.0.0-cp314-cp314t-win32.whl (165.1 kB view details)

Uploaded CPython 3.14tWindows x86

leapfrog_goals-1.0.0-cp314-cp314t-musllinux_1_2_x86_64.whl (652.8 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

leapfrog_goals-1.0.0-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (207.1 kB view details)

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

leapfrog_goals-1.0.0-cp314-cp314t-macosx_11_0_arm64.whl (179.7 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

leapfrog_goals-1.0.0-cp314-cp314t-macosx_10_15_x86_64.whl (180.6 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

leapfrog_goals-1.0.0-cp314-cp314-win_amd64.whl (179.8 kB view details)

Uploaded CPython 3.14Windows x86-64

leapfrog_goals-1.0.0-cp314-cp314-win32.whl (163.3 kB view details)

Uploaded CPython 3.14Windows x86

leapfrog_goals-1.0.0-cp314-cp314-musllinux_1_2_x86_64.whl (650.4 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

leapfrog_goals-1.0.0-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (204.8 kB view details)

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

leapfrog_goals-1.0.0-cp314-cp314-macosx_11_0_arm64.whl (177.7 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

leapfrog_goals-1.0.0-cp314-cp314-macosx_10_15_x86_64.whl (178.9 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

leapfrog_goals-1.0.0-cp313-cp313-win_amd64.whl (173.8 kB view details)

Uploaded CPython 3.13Windows x86-64

leapfrog_goals-1.0.0-cp313-cp313-win32.whl (158.8 kB view details)

Uploaded CPython 3.13Windows x86

leapfrog_goals-1.0.0-cp313-cp313-musllinux_1_2_x86_64.whl (650.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

leapfrog_goals-1.0.0-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (204.8 kB view details)

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

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

Uploaded CPython 3.13macOS 11.0+ ARM64

leapfrog_goals-1.0.0-cp313-cp313-macosx_10_14_x86_64.whl (178.8 kB view details)

Uploaded CPython 3.13macOS 10.14+ x86-64

leapfrog_goals-1.0.0-cp312-cp312-win_amd64.whl (173.9 kB view details)

Uploaded CPython 3.12Windows x86-64

leapfrog_goals-1.0.0-cp312-cp312-win32.whl (158.8 kB view details)

Uploaded CPython 3.12Windows x86

leapfrog_goals-1.0.0-cp312-cp312-musllinux_1_2_x86_64.whl (650.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

leapfrog_goals-1.0.0-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (204.8 kB view details)

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

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

Uploaded CPython 3.12macOS 11.0+ ARM64

leapfrog_goals-1.0.0-cp312-cp312-macosx_10_14_x86_64.whl (178.8 kB view details)

Uploaded CPython 3.12macOS 10.14+ x86-64

leapfrog_goals-1.0.0-cp311-cp311-win_amd64.whl (174.2 kB view details)

Uploaded CPython 3.11Windows x86-64

leapfrog_goals-1.0.0-cp311-cp311-win32.whl (159.2 kB view details)

Uploaded CPython 3.11Windows x86

leapfrog_goals-1.0.0-cp311-cp311-musllinux_1_2_x86_64.whl (651.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

leapfrog_goals-1.0.0-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (205.7 kB view details)

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

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

Uploaded CPython 3.11macOS 11.0+ ARM64

leapfrog_goals-1.0.0-cp311-cp311-macosx_10_14_x86_64.whl (179.4 kB view details)

Uploaded CPython 3.11macOS 10.14+ x86-64

File details

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

File metadata

  • Download URL: leapfrog_goals-1.0.0.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.0.tar.gz
Algorithm Hash digest
SHA256 8bfd26f7b0c8fbe0f8e9456204dcf3052029c9c4a2f023c82b9ffdaecb3d9dfe
MD5 78adc9cab0d08ae00969aff6a6d261ca
BLAKE2b-256 6d831e62a240d9faba78561279f67a90d1830f71ad7ff2d2694793114a23d22f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-1.0.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 a5b50c31957b94dad644362eb6ad837bb0f99f3bceaf6cd94c430d575d5c066e
MD5 412efaa1a842cec27b39a8368643ef43
BLAKE2b-256 573a1cd03a72171dfcf0c948057c5f4a3e7d818b1cb516dcda3b08fb68e5c943

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-1.0.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 f26bc2e51521fa7561ec5eab3b89d89b58a22f4253487b05fd19e690ede99ed1
MD5 059cb6aee9af8e854b37f71e368ad28f
BLAKE2b-256 2aa2d92322a38b16c31faee60bd021f9b02af93a9eba7a6b884b41006f7ff5cd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-1.0.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b6afd00653a46f4aa3c26882e4f623f729f1cc952cba38963ae4b421df9e8646
MD5 9e37acb40ee9a4a708c705d2ebffa065
BLAKE2b-256 6d5fcd76cd8dd94d58f573e5fd1b88f5ec29419f8563844d1e73cfa6c2530493

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-1.0.0-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8717878f005a6bb9840cc23a7283bbe363a1b52bf3211ddcccdc7d40434d694e
MD5 8b2478948d7db50218906f97b8a724f6
BLAKE2b-256 d6924771bb0324eb13900fdbc884f0181c636d9a668ecd14a8c3248e57c1bec1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-1.0.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d3e02fd6f428d9889df333e748cf9d25e812cdc04e09419dc2dbae9893df4d3d
MD5 1785fbef8302236cc59d427f34719b56
BLAKE2b-256 feb6688e51da3dbc8e10dcff07b65cef78422826232395100493e0ca1add8125

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-1.0.0-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 2028b6114416a5ec35fb5b2aed5419c915db13fa1032010d811f375730ceae8b
MD5 d6fab4c19029627577f2ab3ca199f8aa
BLAKE2b-256 28fdfca9bdff2d1011b2a2b42680ce22481ed93793eba34d30a761941b12606a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-1.0.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 191f0fd7ecaff3fa2a01f546131208b2e0ecd5c9e5169baac538cf94a9071073
MD5 ff415727b7a1bbb56f8aa1db5b1d4dd1
BLAKE2b-256 5f940994aeba3dc3926aa038f70ac94e9a1e869c955df263e7ecef853d0b5793

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: leapfrog_goals-1.0.0-cp314-cp314-win32.whl
  • Upload date:
  • Size: 163.3 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.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 5d42c1b0dfdd03a0538f251156672525a1c782c66385a74654d5b212d2c81190
MD5 96d04f5aff6f00eda0120c22e5be50fd
BLAKE2b-256 3487a6ea7ef640e0c841f0e7f1bb95a8787f7fca8215546e6db53868c3d51440

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-1.0.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f96c74b89e9ebb8f7fbe913a8731a27aae89bfb022fdf15366bb5317c2153fca
MD5 92ad56dc9bef71d84432662a24fd68d3
BLAKE2b-256 3fc2e27a9bed73931d4374acf4bae9f5d61987f5f306cc5cb27aeab2061e9129

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-1.0.0-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2e3d3192f0cba0f35bf91849c4dfdc3e55c39a260b843b532c7d39d3a32af025
MD5 1bd2a2888da86e54a13f8ff41ab69aed
BLAKE2b-256 8a3c9b4067693808e43b9ac55d21c978773296fd102ec3bcf6c9ee2bf1cda84a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-1.0.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b02cb7b7ff0c52acc07791e4e7c78296905666fd1fd64bf7b5f8e682060a759e
MD5 7846db576b8cec5b56112720048b4846
BLAKE2b-256 c4605e210a221481b42415385a706a557f6e77e4806d96e567e0988d9c622d50

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-1.0.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 e8e02b6b414e568fc8774cd5ae141f3355ab2eec23486f631436c7b6f619e0db
MD5 47f00f8739eaaca139bd944ab12d0599
BLAKE2b-256 68ef0dc83b571a01b558d46a3a59c1b377efff97f4e6d82a22a1aa7f51899a0a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-1.0.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 3a4d5eab91ba56ab36c8e6a7ffa26522862040f3b3b13fa0fd5e7dc44439bb4d
MD5 6b931482997ec2dc2aa03ba8719e9880
BLAKE2b-256 b2f7085776af27b2908e1b48cef13dded7026fa18860a0e10f6a9fec323448fd

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: leapfrog_goals-1.0.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 158.8 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.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 6c36046d3dc7a0ee4898a0e247a6da42902e16bc263fa062f26ddadeb047477c
MD5 f71828c3d514f202e952e8a3487d6091
BLAKE2b-256 de1b6dd835452b7c3e88d3fbdd096d4e3a120760afc5d1ddbb2c027f9f6607d3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-1.0.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7d28c4ba9efc5634ebfd750514a6de444ec76c04bd62416dcabc9a3ee44c7314
MD5 d96b388aa2aa7cd54dc0a12f86e9e07f
BLAKE2b-256 5c1ec61766f66c8bcbd7ec0a89347bc3c2fbe0908022dd78987710ddadb269c7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-1.0.0-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 85e5a2852faab2f9b890c79661843012feb3f246b0c481bb8e643c78d5e2ca56
MD5 20f35fbb67f2f43825d43384d953d91c
BLAKE2b-256 298e725351b95ead2340b2cfac4dd3950da068581ee72e869c9cb1b2779eacce

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-1.0.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 da73c480231932b815e44e6029ac2be200dd1e8617fe6f7d133e44944c7c4975
MD5 b6818b414d559d9b63d98f20ae025d19
BLAKE2b-256 4ebb5eb9debba0ca0c2235cd61d3057a6d0604a846d2bd3f15f61aee7facd530

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-1.0.0-cp313-cp313-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 8abc321f14e206b9b7e87eb6a3e96eff3a7a2468ed5966d923690edf26c7a9d9
MD5 6af043eb368bbc094bff49c5b8ac7894
BLAKE2b-256 3894e2db82445386cc366fa8780d722e021006e68f8899dce0a6a6df30584449

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-1.0.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 0aca0cdf077363eac5666a76f07a55e6fcad44e73275adf27b2b60e4eed82bf4
MD5 b37ed2708d2a95fba0178f3748ceb119
BLAKE2b-256 9acde563a40f28505dd39adaaecad050c9abb6e98d4efd0cfed9e3a1f16e5d40

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: leapfrog_goals-1.0.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 158.8 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.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 93f1b5fa96d3e81d4aa19df77541f8f1e47436b589bf27d77b40bc7612b2f774
MD5 8c4c5b6aef144d1aa61541a2db9f1586
BLAKE2b-256 7610c4b3d450a3a8d30def9fc584138bf0a7de194ccfc7b901970a2b29204420

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-1.0.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6bc34da5ed64c3de1b442673ba2664add050aff34a1e85a283c634e2a205f804
MD5 904ff8a4c0e767c0cf4d589fbab4f343
BLAKE2b-256 41edf12bf082766eb2874e02bc929c93139ae2e2f0eeb3b1e8ad6d68e92ebab2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-1.0.0-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7a2b3b6332d2e9a1b93f9e2a422181abfa388d36acad15419bda2e7c2950e35f
MD5 f5d44b3fcc8a2627854e57bfa5f66882
BLAKE2b-256 4ac4fd4b40793b1f5b652e85fd38cf8e919f5281e82c38f44763cf172a9a95b9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-1.0.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f40be4e2d55d345d7d31cd80ec02110e926584f525f68fa72aa352fb3f713b06
MD5 6ef21d74f9936615e7e83d84c687aff2
BLAKE2b-256 4e50bf2cb92e9250b0c28e935fc4f81bc36bcddbbf01f216d8a1bbdc04e5e5f7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-1.0.0-cp312-cp312-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 e05495e1d3039757a14c98132f691fc849341fc8e07948d840222dd1af5de4b6
MD5 91ae22e5c1b5b324926b8314a51391dd
BLAKE2b-256 ac51e036e00a5c8556ec4fd0ba49122a7477b838fdef38bf0772a91affcda94b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-1.0.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 5a79a69ad3f57d80c31061149e83697da1ed4613939ffadfddd1f5e298f9cfa9
MD5 8d7f4cb3152f6f78d45519450f749c79
BLAKE2b-256 d94108c1fca0cafa9e7f85d7b9acdffd2131eb2f00e9f854a15d7ac620232d10

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: leapfrog_goals-1.0.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 159.2 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.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 cb1ab7a7d028f198fb125d9ae91c3347b1e43083f442c3e7ea339f278f63ae86
MD5 ed84967bf6534f6a85cfb3fd3f53a42c
BLAKE2b-256 2cdbd85b2fed9cf3e494632cb644a70c8b848675ea4a35655bf78145c16aeed3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-1.0.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 07a90f7508993ec3d76809898937d286280a1e4c9d9c6fc7ba1409772be3f28a
MD5 26b86d1e7d1b0ff7cde3f46e813124fc
BLAKE2b-256 f53be7c349255ac0acf8ecc83f21b8889da717ecdbe092c9ede424a221609bea

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-1.0.0-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d744c20f6e219b26b66a8cca06b5681d78893009c6ef52f1f0f12b1b4c00f7cb
MD5 20c94710007a56d5288e23195c800477
BLAKE2b-256 623a7398bf25d6f60d1c11169e8976db55538b0f5d1513890a39a4d1892aa4b3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-1.0.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 22710939ca4aa082bd69301d03b9365c7596c099b16420b7b3057b6cf65cc48c
MD5 3e3adc1468e086b372a7a5d5b841111b
BLAKE2b-256 323443acde932d2860bd8289b74321ae8a77f2a9827a8c1ae9bdf8bea20aded6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-1.0.0-cp311-cp311-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 9974318ca2527a1bdb21fd9df3b16849a3a91819db29b444f82b64b1ebaf4608
MD5 41559b6da66f8555ce5f7e6129ffd7d9
BLAKE2b-256 d439482f3fb273ed8cba0d3a3a6782b5edee51f95bf4a5f90dcce8de54a7078f

See more details on using hashes here.

Provenance

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

Publisher: goals-deploy.yaml on hivtools/leapfrog

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

Release history Release notifications | RSS feed

1.0.3

31 files

1.0.2

31 files

1.0.1

31 files

This release

1.0.0 This release

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