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

Uploaded CPython 3.14tWindows x86-64

leapfrog_goals-1.0.2-cp314-cp314t-win32.whl (165.4 kB view details)

Uploaded CPython 3.14tWindows x86

leapfrog_goals-1.0.2-cp314-cp314t-musllinux_1_2_x86_64.whl (653.5 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

leapfrog_goals-1.0.2-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (207.8 kB view details)

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

leapfrog_goals-1.0.2-cp314-cp314t-macosx_11_0_arm64.whl (180.0 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

leapfrog_goals-1.0.2-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.2-cp314-cp314-win_amd64.whl (180.2 kB view details)

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

leapfrog_goals-1.0.2-cp314-cp314-musllinux_1_2_x86_64.whl (650.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

leapfrog_goals-1.0.2-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (205.4 kB view details)

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

leapfrog_goals-1.0.2-cp314-cp314-macosx_11_0_arm64.whl (177.9 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

leapfrog_goals-1.0.2-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.2-cp313-cp313-win_amd64.whl (174.2 kB view details)

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

leapfrog_goals-1.0.2-cp313-cp313-musllinux_1_2_x86_64.whl (650.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

leapfrog_goals-1.0.2-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (205.4 kB view details)

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

leapfrog_goals-1.0.2-cp313-cp313-macosx_11_0_arm64.whl (177.7 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

leapfrog_goals-1.0.2-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.2-cp312-cp312-win_amd64.whl (174.2 kB view details)

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

leapfrog_goals-1.0.2-cp312-cp312-musllinux_1_2_x86_64.whl (650.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

leapfrog_goals-1.0.2-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (205.4 kB view details)

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

leapfrog_goals-1.0.2-cp312-cp312-macosx_11_0_arm64.whl (177.7 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

leapfrog_goals-1.0.2-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.2-cp311-cp311-win_amd64.whl (174.6 kB view details)

Uploaded CPython 3.11Windows x86-64

leapfrog_goals-1.0.2-cp311-cp311-win32.whl (159.4 kB view details)

Uploaded CPython 3.11Windows x86

leapfrog_goals-1.0.2-cp311-cp311-musllinux_1_2_x86_64.whl (652.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

leapfrog_goals-1.0.2-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (206.4 kB view details)

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

leapfrog_goals-1.0.2-cp311-cp311-macosx_11_0_arm64.whl (178.6 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

leapfrog_goals-1.0.2-cp311-cp311-macosx_10_14_x86_64.whl (179.6 kB view details)

Uploaded CPython 3.11macOS 10.14+ x86-64

File details

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

File metadata

  • Download URL: leapfrog_goals-1.0.2.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.2.tar.gz
Algorithm Hash digest
SHA256 eda966241d16c7a0be9919f100b8e864330bd7b52b4e7061577c0ca5ad3ae165
MD5 ebf63efb5c55dc4d55e40a37e74bd148
BLAKE2b-256 84701fba95a3dab9fcf35af765471d6ca916dd63f9e33625aadf7f2b1cd88b33

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-1.0.2-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 2220ead06cc7b77eff74d3c0a59990b7a7878834f92d9efac6e9e74169215b40
MD5 61b59200b3d21dd7eb1c96e97035bb8a
BLAKE2b-256 f8814fafbfd7e19cd39d68db039013aedf3667bbccd072b88892e2ef2810b364

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-1.0.2-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 138a56ffe46754399fa864a40bf959c15e4928bbffa60122f46b2de1e958ae02
MD5 3f91d153be6870c4acc717bb7bb00231
BLAKE2b-256 8d06a665955b52ed6b4a392554da378627be0af9e630e15258582557fae7400f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-1.0.2-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d2edb0bef123c6500568e83ff955d833bfbf1e26b3620d1477f1383b425060d8
MD5 84c24e62773d0249c198c62b0bcfae3d
BLAKE2b-256 50445421e46f2bac7b8f40e5b1da524f289c9be42fb67b346089e93d0033240c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-1.0.2-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e4d78d83f9cb4e01b0c517b739d706aa110fe7728a16940e10172d547c5ed1d9
MD5 b97da4f449578a1b2634d0bede90681f
BLAKE2b-256 f08dd82a3f0dd7ca69350e0b989007e528fd1f97b071fcdc50323f665ae24a97

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-1.0.2-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 91d735df6c6f7196e151187fbd752b82b3fa75e847d51f306775ae07d4acd33a
MD5 cd7a8615986eb3d4619ec6ff0769d34b
BLAKE2b-256 17bea89a57ff2030440aad607c29f06a7e37b4ff6ac6c61698ac3a3175a408c2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-1.0.2-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 fa1ffb7c2835fef8fd80ce14b44ebcb76a74668b7439a469d3f6ef79f2962c84
MD5 7164d59e1479f6e43e33e805ecb040ab
BLAKE2b-256 1f8560b7ab04c340e1c73ab98180f7ed28a73020b6d057711fc0083670fceed7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-1.0.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 dc9389b26ebafcb997a345746076e255a818052e93cae2757f8f02d53e920c4a
MD5 d6130c5163eefb394e7b38c5da32ea6d
BLAKE2b-256 035b2d63667c858522d8f6cbf5691c8fc8252474c177e0ef39492ac67ccd0617

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: leapfrog_goals-1.0.2-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.2-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 99720a0c93ef7c13d202d7a302e5022cfad972cf1b7cea7cff4d71744303cb38
MD5 54ab903767b4889c73067f223dd0c773
BLAKE2b-256 1ef861e85590f694fa0c3d96a3794f712385b1dc191866c04d5ccbcc9446c679

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-1.0.2-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6010dedf1f207bf0dc0713501338683c135075f8b970e3e0d612a4be35007d76
MD5 c0b88b1a2eb9e6310ee7ae06b1ed7be7
BLAKE2b-256 50acb9e2822ed1dc6ed8b2e84a49a688635c3e0def70a525c89a8cf55536cf35

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-1.0.2-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5475a4e4316a087dbe3dddf03e8f079c7c0d9ba2b96f55b7331410c83a06a084
MD5 cf265f0676285319c43a4c16a2401631
BLAKE2b-256 b104f562a4e49f27622ffe7e12a20496318d67e4ce2852c88c8a5b4f5c76027a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-1.0.2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fa8f04ba7c4413d582e67360e32bd214d45a21016123403b8d3641444ac934f2
MD5 18c597f63a9a46d5fd786d94594ea5c6
BLAKE2b-256 07c6c18da1f42fccfde48f4c7292fe1c48416e720847d2673df3b08606194739

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-1.0.2-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 0d49c72a06f4c9aca8fbbf59a64408101a8968d92a103d53160a6d304826dd1e
MD5 25ccd3c890a25d757ea028255f6929fe
BLAKE2b-256 2307ea0c0bc23a689d7e76f74c0ff8f7275e5e2085e000bf2c2d3a97e1cf7828

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-1.0.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 e7ba65a8ea63b2c401997dc923eadbd06b7cf2a502e1de37094a0d51411b371c
MD5 7a527b2650d7c90093b2e31e693fb4f5
BLAKE2b-256 ddc12eb6df3de453cf1db8d4b1d1fa4dbd0b99a4f049ec56fbe79e3b31715b8c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: leapfrog_goals-1.0.2-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.2-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 b67fbe5a140288434010d78de84561f35c7cb7b1e0da99445e91bdb41b2a426c
MD5 2bc2bba322f68e1905f2831d02253f7b
BLAKE2b-256 d87d86c8218d4030947138e2a8d58535db975e6688602089a684320d1c3d019d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-1.0.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0e61317c00229aaae366714bfe9673bfdf615ed1685c45ec86aac89d3354e8ef
MD5 1c480dd8b41a8157006d4a7c499dd40e
BLAKE2b-256 eb7bddd3936e0e957fd45fb07896c667e8b32d15d6edb1558b21ea24c12cbeee

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-1.0.2-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 94d389952c1b83af76cd04880d7102ab27a21a0a6d21bc002053f6fed490bb3b
MD5 064d5d67f97a17a119bb169c6794fe1a
BLAKE2b-256 cedf57406c473a265c2c30d9d78a63ae2ac859cd0782f70d367007ad48d2fb28

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-1.0.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ce23b1c9ef6019ec795f92dce2d5b1fbbe022e2df4861557769b9e165bc80aeb
MD5 2dd87efc5bb250f2100b5227e09727b6
BLAKE2b-256 3c05dc906ee5fd610168380cba3c30785c6ab199d8532160375c4a752d720c17

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-1.0.2-cp313-cp313-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 4dcf45fe752cacff37f1da367306c35b8ae7ca594b6831aeb94ebb5dd12b7644
MD5 7f8b36b7480d3cf12ca93210fb6df653
BLAKE2b-256 3e3d0768bdfe6e8a545966a95e776e5c812926067bf680d28ced2b03e77f818f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-1.0.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 68cf311762d601bf443612138d27b38bac68b9bbc1648cbbc00093f7f310c0c3
MD5 03028da2ade3e693c951a2d114eae341
BLAKE2b-256 73ddc702827eb56b251d4dbc6ca3d14d23b659cd2423d90ea0ecbc1e4e2a718a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: leapfrog_goals-1.0.2-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.2-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 534f089810fc861b4b37b8e3f743d84daf882e2b5eb8395472afec2e242d9ba7
MD5 d35b6734f64cf9baf1f9f69883b62b38
BLAKE2b-256 73d99e9a9a85daaae0e158660cffbe6fa64bf224c287674a680f580f709d47e9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-1.0.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5d5c9b01cfb29319222aa986fe617ed659c12646585851a6d03ed7ad40c1966d
MD5 0d547eeb1979db5e10ebc8254fe72712
BLAKE2b-256 808eeed727a0b08d9e47d26172b048ccb79e7ae67e44b5c8496421fe115dd868

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-1.0.2-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5552923683dad505be41d47c4d275b6b973c935252660da64f94b40674a3870b
MD5 55b0288bf59181b11a3de530e42ce3fc
BLAKE2b-256 3db07fe199573f6206305aae6fccd90101c1599d5e56a30d8ab4ce28ff5590a6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-1.0.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2a66174ccc876e8dcc7ee25f1ec59f5422c8301c8654bc0f0bf1e250bd70b364
MD5 17d573406b71329b785d4b6450dddda6
BLAKE2b-256 1cdfbb321c9265c97b62061517bac01cfc99aaeb28a3fcd99cc11e61218ecf12

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-1.0.2-cp312-cp312-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 50603bf0964807960da0d0076e1b367175b2323844b2a7ac50ee4c82d1130863
MD5 7451c407dacef2cd1d18193bb1b590c3
BLAKE2b-256 d3319479770e2fa21cdafbe9d1d44266db751271a3aa9446c38336fb986fd1f5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-1.0.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 39befc1182808842cb46a42ff179612a0fb2496b719bf7866e49188b833a4d04
MD5 69df774d0ccc94a7b2952ec3486637bd
BLAKE2b-256 13acbdb40c1882467a67129717eb3a88febb2def537695a21c76a3996bcd88e8

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: leapfrog_goals-1.0.2-cp311-cp311-win32.whl
  • Upload date:
  • Size: 159.4 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.2-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 96295ac33c6dd307fdcb94923b55bb1ffdb5b46b33acf3fd7cae7d827d982468
MD5 9d03edcfa450bc5e58c8b9e94b737028
BLAKE2b-256 7c59d5330f062557d2df18ca377f30f4e82c506ec7f2af1f81deb7f25fb92bfd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-1.0.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e9e903566d0bbfbfb1018a1863d11cc406b325e0086011361f263cb4121d7c83
MD5 ed09807126b3ef0858d3a84a006760ea
BLAKE2b-256 07ceef6305a4c86d73797c2da28aba0ee2f63f2d35462f06d9c7b039ba261fda

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-1.0.2-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b94c3c4bcd2dce62683bb15794b501968ee500bb48cefb1fec8a08c307313dd2
MD5 90efe9ca83a5ba8477ddffd281026065
BLAKE2b-256 43435f5ea175708a6e520f267bb9da5325c96b0152f2cb3bf3dea066207b0c78

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-1.0.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 99c0d3462a91dc7824f76559df7fd5d4963ffc997f53fed71a77a0527d2ecfe0
MD5 4162eca9255accadecaf1460233a8e02
BLAKE2b-256 4f7e25645e3f58fd8c40db8c0f86a9c86e91acf5e95b11930f2f56f906daffe3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-1.0.2-cp311-cp311-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 bcedb9ad57e1b2970050de3f31c15ac77100bdc1578c73acdfb189c343c27329
MD5 092ad3499b8af21e39d12df6e0c08315
BLAKE2b-256 97db08f7377c26a1cc7312e4641af573f6cf14540f261945df6b66d25b71acc0

See more details on using hashes here.

Provenance

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

This release

1.0.2 This release

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