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

Uploaded CPython 3.14tWindows x86-64

leapfrog_goals-1.0.3-cp314-cp314t-win32.whl (192.6 kB view details)

Uploaded CPython 3.14tWindows x86

leapfrog_goals-1.0.3-cp314-cp314t-musllinux_1_2_x86_64.whl (660.6 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

leapfrog_goals-1.0.3-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (213.8 kB view details)

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

leapfrog_goals-1.0.3-cp314-cp314t-macosx_11_0_arm64.whl (184.1 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

leapfrog_goals-1.0.3-cp314-cp314t-macosx_10_15_x86_64.whl (186.1 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

leapfrog_goals-1.0.3-cp314-cp314-win_amd64.whl (209.4 kB view details)

Uploaded CPython 3.14Windows x86-64

leapfrog_goals-1.0.3-cp314-cp314-win32.whl (188.8 kB view details)

Uploaded CPython 3.14Windows x86

leapfrog_goals-1.0.3-cp314-cp314-musllinux_1_2_x86_64.whl (658.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

leapfrog_goals-1.0.3-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (212.1 kB view details)

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

leapfrog_goals-1.0.3-cp314-cp314-macosx_11_0_arm64.whl (182.4 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

leapfrog_goals-1.0.3-cp314-cp314-macosx_10_15_x86_64.whl (184.2 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

leapfrog_goals-1.0.3-cp313-cp313-win_amd64.whl (202.5 kB view details)

Uploaded CPython 3.13Windows x86-64

leapfrog_goals-1.0.3-cp313-cp313-win32.whl (183.3 kB view details)

Uploaded CPython 3.13Windows x86

leapfrog_goals-1.0.3-cp313-cp313-musllinux_1_2_x86_64.whl (658.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

leapfrog_goals-1.0.3-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (212.1 kB view details)

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

leapfrog_goals-1.0.3-cp313-cp313-macosx_11_0_arm64.whl (182.4 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

leapfrog_goals-1.0.3-cp313-cp313-macosx_10_14_x86_64.whl (184.0 kB view details)

Uploaded CPython 3.13macOS 10.14+ x86-64

leapfrog_goals-1.0.3-cp312-cp312-win_amd64.whl (202.5 kB view details)

Uploaded CPython 3.12Windows x86-64

leapfrog_goals-1.0.3-cp312-cp312-win32.whl (183.3 kB view details)

Uploaded CPython 3.12Windows x86

leapfrog_goals-1.0.3-cp312-cp312-musllinux_1_2_x86_64.whl (658.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

leapfrog_goals-1.0.3-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (212.1 kB view details)

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

leapfrog_goals-1.0.3-cp312-cp312-macosx_11_0_arm64.whl (182.3 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

leapfrog_goals-1.0.3-cp312-cp312-macosx_10_14_x86_64.whl (184.0 kB view details)

Uploaded CPython 3.12macOS 10.14+ x86-64

leapfrog_goals-1.0.3-cp311-cp311-win_amd64.whl (202.4 kB view details)

Uploaded CPython 3.11Windows x86-64

leapfrog_goals-1.0.3-cp311-cp311-win32.whl (183.6 kB view details)

Uploaded CPython 3.11Windows x86

leapfrog_goals-1.0.3-cp311-cp311-musllinux_1_2_x86_64.whl (659.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

leapfrog_goals-1.0.3-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (212.6 kB view details)

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

leapfrog_goals-1.0.3-cp311-cp311-macosx_11_0_arm64.whl (183.1 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

leapfrog_goals-1.0.3-cp311-cp311-macosx_10_14_x86_64.whl (184.6 kB view details)

Uploaded CPython 3.11macOS 10.14+ x86-64

File details

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

File metadata

  • Download URL: leapfrog_goals-1.0.3.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.3.tar.gz
Algorithm Hash digest
SHA256 3580b30d12c1dd4f30dbc59086242a036871c1601171d8fd5820cba08c1ab6e2
MD5 a6e5a49dba0c2dcc295704cc599b27dc
BLAKE2b-256 96e561f9601966b7bd82b965f3a97779655ec53d86792831def16c1f882b18ba

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-1.0.3-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 5fcf2bf14cf7d1bbcb73bae74e1337aff404b573d54e72aa9b9482b58e9db750
MD5 8c4db59f3552e1b9db58a0c8de55e7df
BLAKE2b-256 f9a7c114b635b6c0deaef3e05b8d499e1506c141c415cc44a845c8770b5341a4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-1.0.3-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 da54be9af6014c81f1566b50918f1ffeed2f2f8d5a80672e24a25f0521e30ae1
MD5 69c1c0c4eee8c6c8d30cb9e906fe96aa
BLAKE2b-256 44719466afb053ae01838bb106459a7eeba9bab8aa1a8ad14eaf20f61b42590b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-1.0.3-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e4ccd7950493217f34c60720682c2e79666f4ed609a78f9a62e0a23c0c9587ff
MD5 f50209f97b9cd8c2f7d60a9bb04dae3f
BLAKE2b-256 2f0d6c16cb4196781b97f2e3f46e2c4c601189aa435fc61fe757a81574a07398

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-1.0.3-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 cd41d42d9b7fb92ad841de03da87717c4aa52faf087fc0b817c3036b33f5008b
MD5 a856c7bba1063299efcef5a5bb45efa9
BLAKE2b-256 6640097813e92b660c064015188714a3e981588589157ac3622abb3de0bd33f6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-1.0.3-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4a97dadb0a0e96ea6b839e739fb61988886770f7de8975baa559e40c26216886
MD5 07b3ad78382230427c5a8319dd42be9a
BLAKE2b-256 2d2c248eb249692230d92c9466c24e4208dc30157fdd2e548e81273fef6fac40

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-1.0.3-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 d2a0ed77496957066a7227c4016c1d4d274c955b42aca0ea9f65ca6968834ff5
MD5 85f10ddf7edf948eb3dc6caff79889a6
BLAKE2b-256 7936a4049e2a454af68898a70a310d319d45f00a771e9ba738a8af688cb0f7ec

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-1.0.3-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 acc970f293d44abdc0122f5754407e180ff0673715ea5e41d0768dce613f582a
MD5 9d746e1ab7426c8271aa624dade5a3e0
BLAKE2b-256 a26d12860ef646044483d6259280e7852a58cdf469570b59e6662b1677ffa00a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: leapfrog_goals-1.0.3-cp314-cp314-win32.whl
  • Upload date:
  • Size: 188.8 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.3-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 fa9cad0b723718a68117c22460d68c3054f2557fe7333cc18377b5fc21f6b5d5
MD5 4cd3e2cb3b32e412225a3ce780335dae
BLAKE2b-256 54f9c31fc76009542321291a92b7f4720f1764f22c1c95b4aa04fa76ad0be3d3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-1.0.3-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fbcea30c6270c167ffa9716a03686799b7a41a48fd2b172a55c73a3884c630c5
MD5 2548c6f36e5d565c67fe9901385226ef
BLAKE2b-256 839c3de0b6b4333d51465a3627f5ec05e5eaba6d4a1eeab570522161755bf08f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-1.0.3-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2ce17113187a841d811772ac9c708c5e92ce1ef05120d3d66b5f2fb0e2f40736
MD5 9f034fd150f0c3c2135670f10ba484d3
BLAKE2b-256 f3a31c8d14275abfbd519b46681281292801872863cc6eb73a6f443c8615446b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-1.0.3-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b37380983206722163204a94b9c608c0080b85270432af63d3b01152ce8e875d
MD5 b15c3e04d0e063c7fbec30cbe773bec0
BLAKE2b-256 90ef0ae37da4a8fa93c74d85dd6549c91ed31295b07960fa1102568e6dd17aa5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-1.0.3-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 e889f1b3dfef6582c5e27d8fb5ec79209c16b01688de0bc84b7594c4d0be4c30
MD5 17b5ee6fd75eb5a276280320b4e24935
BLAKE2b-256 352a2a53dfde57f7ed08e5799984d7310b03f52b4cf8dbafce7371cf34575a25

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-1.0.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 6ba94c998cb8d2d13a727053a5df8335b43d6141c7dccde159bca72dfc662432
MD5 57d5aad3dffc63aa3da6bf0ce08125ab
BLAKE2b-256 3b3e3c325877a5504936a9d7a1559848629670c6a8a988814a42bc64232d2a26

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: leapfrog_goals-1.0.3-cp313-cp313-win32.whl
  • Upload date:
  • Size: 183.3 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.3-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 b9f7cc561edd0426133ab869a268395431d51699feb34e83f575b8d399621f49
MD5 483a15aa7995c8881eeca4ec85dc89dc
BLAKE2b-256 3269520e4faf69cd1a67ec7cf5aa5f82acfdf7624d4c0ea03b9aa357b7c657fb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-1.0.3-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ef9312338db0a64c82da3df1bd6d31957ed9b1f7efcb896e76dc16461cf7355a
MD5 0129db31e8dcd597c2a9bc76ff093362
BLAKE2b-256 ee8e3a7611820813dc017c2a0707a4e26a716ed61a3113659419b860fbb3ea40

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-1.0.3-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9a711764ecfeb5711019d865177504aaa784141d7c440a35c46f4fe97d6db4a5
MD5 4d4bd0092b7fe39da501379e779e17f6
BLAKE2b-256 b482a36172c9ef4909a34b74ab70185a64aed00b803b0d71aa63fb6d315ca905

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-1.0.3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ecaf5856d96b12a6693e07be352da51ecd6bd86298eee217f9aa74805ac8c355
MD5 e140369cde2ab03be247eaa291a91750
BLAKE2b-256 fa113865274d11c596caddd0ffeb0e6f8b21bafd789ba82fb02abd5a7d75fb57

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-1.0.3-cp313-cp313-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 91edf94c5d5fd3138aaeb7916f5ca47ce9073b20ca3daae312ceeacd4d3e0e4a
MD5 71b46a12e2ed762ad1c6bb507369875d
BLAKE2b-256 1e5a328b9e3acd23f5ce704156837e17669abc5aa63e16b5f5c11e6d2797e512

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-1.0.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 50f6883fe8a408beff89ee563e5b31beff642025ab069bdc8c7e93b8d8e95f1d
MD5 539da0529dc3b19f2f0cf51b56ee46d7
BLAKE2b-256 a19d61986a2a648b210134e36fff4471db8d7d5e0ec11dba55bffbd9c10c2161

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: leapfrog_goals-1.0.3-cp312-cp312-win32.whl
  • Upload date:
  • Size: 183.3 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.3-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 0d0060910bf3346cb4706d8680a13ba5007602ce7d89e932799286c765464877
MD5 43b6acbfd8db906469c8027036af265e
BLAKE2b-256 276e7d4ffa512b54d194c80d0a436ddb16b9956eb1701bba9457b7f8c7462069

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-1.0.3-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7e9148b2c060cdceb7ceddff0763522e7c682f41b561c9b4bcdf6fa8c21c9aec
MD5 ed5f288ad3190735dd70fe5f21811e39
BLAKE2b-256 fe597eeef7b2ce0aac51941daf2b12504a25df3bd598148f75a79d427929e0ae

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-1.0.3-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9ecb435e8345a9ecf6be2679791cb4de2a6b4fd86f8f5eebb933797a1f442359
MD5 769bae39e65daf7ed6d235957db1772b
BLAKE2b-256 3a3848f2e061ed855a9d3f2219119879364926af5a4f8370959baef8b5cf361f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-1.0.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 de0ce3f1b227b3522b85eb670ed34c1517bd27363e4120337cc65b41c6e3acb6
MD5 a27abfd69da603500e0679d619afaefa
BLAKE2b-256 56fec3fb4beb90007b557b3538fd6e8d155c431696c1a881050529bd93c12b91

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-1.0.3-cp312-cp312-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 b4c3e1cabcd210eaccb99cb8c341ee601ff8582abde100f4bee813109c401167
MD5 9bf03c13dc84780d73c350afa46c179f
BLAKE2b-256 18eea11e5bebfd1c7974b894f8526128976e278df89ec9ffab5e5ba19599fff0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-1.0.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 ef44c8619a2c828762f9bd45aa286e6baffa49020416df2b7da432da5dfa8430
MD5 731b400b82cafdb58ff4093f17cb0c77
BLAKE2b-256 51d0cd10e81e05e0b8bca9ceebb9014222474512c2b0bfc617b6074c9824e4e6

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: leapfrog_goals-1.0.3-cp311-cp311-win32.whl
  • Upload date:
  • Size: 183.6 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.3-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 f2566f08f01b348455a92f6b3aea7081afe64a2a2d6d86b6a0400a080da10026
MD5 3f9b122eab9683bc643ce5beea57acf2
BLAKE2b-256 2cfeecf7d97669aa7e1aa8300da89e1ffa372f0a228905854b31d13d0ecf5ada

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-1.0.3-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 593719b9aa2baee0208157fdbbf50d5b2636077aef4bda156f52209b900f975e
MD5 51d2d0fdf4c696de2f382332816679d6
BLAKE2b-256 677cdd89a8b2d4ebdf560bb227c740804ee085919d4c10b39ed57376176c9660

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-1.0.3-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a77138b93926ad609af98d59a0a100c567d4cdd0867ba8502b3960257f89b7e8
MD5 9ca367d91761a43148e119bea3b8ffe5
BLAKE2b-256 cef3b22b9438f291f3fe113228842f0add7bcb8684a45cb3baf07f6bb42c1add

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-1.0.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4343481d8b48bbdcd0d75c7dfd3cfdf6ab1d35e3d98d59b00b7dda6f69b13ee8
MD5 a66534ca951a6f20cf8bf304bb1d3d4a
BLAKE2b-256 6cd4c0040e955bcaae4d194f0ba601f254057919389aa6cd7768058eea242d3b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-1.0.3-cp311-cp311-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 c83cedd3bcf1c992e01f03564e7635f1e89ae286f7caa16cb3ac1399dee0d5a2
MD5 10fef39b385582dd66d059877675347a
BLAKE2b-256 46860b7761333e37b87240004b8a658cc717b3233a0b93f68bbbaee14e7df969

See more details on using hashes here.

Provenance

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

This release

1.0.3 This release

31 files

1.0.2

31 files

1.0.1

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