Skip to main content

Python interface for Leapfrog Goals model

Project description

goals

Installation (TODO)

pip install leapfrog-goals

Usage

Get parameters

In the following example you will need parameters - inputs to the model. We have provided utilities to easily get test parameters (we use hdf5 file format to store these). If you already have different parameters in the correct shape you can skip this section.

from leapfrog_goals import read_h5_file

parameters_child = read_h5_file("../leapfrogr/tests/testthat/testdata/child_parms_full.h5")

We need to add a good way to import the goals parameters, for now add manually.

import numpy as np
parameters_child["ex_input"] = np.full((81, 2), 1)

Run model

Here are a couple of ways to run the model

from leapfrog_goals import run_goals

# Run the model
run_goals(parameters_child)

# Can specify which years to output from the model
run_goals(parameters_child, [1970, 1971, 2000])

Run model from initial state (TODO)

You can also run the model from an initial state. For example, to run the model in two parts

from leapfrog_goals import run_goals, run_goals_from_state, get_time_slice

# Run model until year 2000
ret = run_goals(parameters_child, range(1970, 2001))

run_goals_from_state(
    # parameters
    parameters_child,

    # get the last time slice of the state returned by run model so we
    # can continue from where the model left off
    get_time_slice(ret, 30),

    # simulation start year, this should be the year the previous
    # argument represents
    2000,

    # years you want the model to output
    range(2001, 2031)
)

Run model for a single year

The previous two functions will return a dictionary with values that are have one more dimension (time dimension) than the state specified in the model config. This means if you want to carry on from that initial single year state you would have to use the get_time_slice utility at index 1. Example:

from leapfrog_goals import run_goals, run_goals_from_state, get_time_slice

ret_single_year = run_goals(parameters_child, [1970])

for year in range(1970, 2030):
    ret_single_year = run_goals_from_state(
        parameters_child,
        get_time_slice(ret_single_year, 0),
        year,
        [year + 1]
    )

This is tedious for two reasons:

  1. Repeatedly getting the time slice for one time dimension (initial one is unavoidable since we use run model and don't have any initial state)
  2. Specifying output year as year + 1

So to make projecting for a single year more ergonomic we decided to create a separate function that returns the time slice for a single year:

from leapfrog_goals import run_goals, run_goals_single_year, get_time_slice

ret_single_year = get_time_slice(run_goals(parameters_child, [1970]), 0)

for year in range(1970, 2030):
    ret_single_year = run_goals_single_year(
        parameters_child,
        ret_single_year,
        year
    )

Development

This project uses scikit-build-core with nanobind to build the C++ project. You'll need a recent version of CMake (>3.15) and Python (>3.7).

We use uv to manage the project:

  • Sync the virtual env uv sync
  • Run tests uv run pytest
  • Lint uvx ruff check .
  • Format uvx ruff format
  • Format imports uvx ruff check --select I --fix

uv will rebuild automatically if you make a change to the C++ code however if you need to force recompilation use --reinstall-package leapfrog-goals.

For local installation run pip install .

License

leapfrog-goals is distributed under the terms of MIT license.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

leapfrog_goals-0.0.1.tar.gz (31.4 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

leapfrog_goals-0.0.1-cp314-cp314t-win_amd64.whl (138.0 kB view details)

Uploaded CPython 3.14tWindows x86-64

leapfrog_goals-0.0.1-cp314-cp314t-win32.whl (122.6 kB view details)

Uploaded CPython 3.14tWindows x86

leapfrog_goals-0.0.1-cp314-cp314t-musllinux_1_2_x86_64.whl (593.5 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

leapfrog_goals-0.0.1-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (147.1 kB view details)

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

leapfrog_goals-0.0.1-cp314-cp314t-macosx_11_0_arm64.whl (123.2 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

leapfrog_goals-0.0.1-cp314-cp314t-macosx_10_15_x86_64.whl (126.7 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

leapfrog_goals-0.0.1-cp314-cp314-win_amd64.whl (132.4 kB view details)

Uploaded CPython 3.14Windows x86-64

leapfrog_goals-0.0.1-cp314-cp314-win32.whl (118.0 kB view details)

Uploaded CPython 3.14Windows x86

leapfrog_goals-0.0.1-cp314-cp314-musllinux_1_2_x86_64.whl (591.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

leapfrog_goals-0.0.1-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (145.3 kB view details)

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

leapfrog_goals-0.0.1-cp314-cp314-macosx_11_0_arm64.whl (121.5 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

leapfrog_goals-0.0.1-cp314-cp314-macosx_10_15_x86_64.whl (125.1 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

leapfrog_goals-0.0.1-cp313-cp313-win_amd64.whl (127.7 kB view details)

Uploaded CPython 3.13Windows x86-64

leapfrog_goals-0.0.1-cp313-cp313-win32.whl (114.8 kB view details)

Uploaded CPython 3.13Windows x86

leapfrog_goals-0.0.1-cp313-cp313-musllinux_1_2_x86_64.whl (591.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

leapfrog_goals-0.0.1-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (145.3 kB view details)

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

leapfrog_goals-0.0.1-cp313-cp313-macosx_11_0_arm64.whl (121.3 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

leapfrog_goals-0.0.1-cp313-cp313-macosx_10_14_x86_64.whl (124.8 kB view details)

Uploaded CPython 3.13macOS 10.14+ x86-64

leapfrog_goals-0.0.1-cp312-cp312-win_amd64.whl (127.7 kB view details)

Uploaded CPython 3.12Windows x86-64

leapfrog_goals-0.0.1-cp312-cp312-win32.whl (114.8 kB view details)

Uploaded CPython 3.12Windows x86

leapfrog_goals-0.0.1-cp312-cp312-musllinux_1_2_x86_64.whl (591.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

leapfrog_goals-0.0.1-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (145.3 kB view details)

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

leapfrog_goals-0.0.1-cp312-cp312-macosx_11_0_arm64.whl (121.3 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

leapfrog_goals-0.0.1-cp312-cp312-macosx_10_14_x86_64.whl (124.8 kB view details)

Uploaded CPython 3.12macOS 10.14+ x86-64

leapfrog_goals-0.0.1-cp311-cp311-win_amd64.whl (127.4 kB view details)

Uploaded CPython 3.11Windows x86-64

leapfrog_goals-0.0.1-cp311-cp311-win32.whl (114.8 kB view details)

Uploaded CPython 3.11Windows x86

leapfrog_goals-0.0.1-cp311-cp311-musllinux_1_2_x86_64.whl (592.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

leapfrog_goals-0.0.1-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (145.5 kB view details)

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

leapfrog_goals-0.0.1-cp311-cp311-macosx_11_0_arm64.whl (121.8 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

leapfrog_goals-0.0.1-cp311-cp311-macosx_10_14_x86_64.whl (124.9 kB view details)

Uploaded CPython 3.11macOS 10.14+ x86-64

leapfrog_goals-0.0.1-cp310-cp310-win_amd64.whl (127.5 kB view details)

Uploaded CPython 3.10Windows x86-64

leapfrog_goals-0.0.1-cp310-cp310-win32.whl (115.0 kB view details)

Uploaded CPython 3.10Windows x86

leapfrog_goals-0.0.1-cp310-cp310-musllinux_1_2_x86_64.whl (592.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

leapfrog_goals-0.0.1-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (145.7 kB view details)

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

leapfrog_goals-0.0.1-cp310-cp310-macosx_11_0_arm64.whl (121.9 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

leapfrog_goals-0.0.1-cp310-cp310-macosx_10_14_x86_64.whl (125.1 kB view details)

Uploaded CPython 3.10macOS 10.14+ x86-64

File details

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

File metadata

  • Download URL: leapfrog_goals-0.0.1.tar.gz
  • Upload date:
  • Size: 31.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for leapfrog_goals-0.0.1.tar.gz
Algorithm Hash digest
SHA256 c911cc2273e385ea0f4307218b6da2a12b8fde9e4649ce4122ab30093f670a54
MD5 f0b8f215c9996cee07e714f48b154ee2
BLAKE2b-256 85aaf79effdda3307119b11ef2cb415e24e18e883a7e01f0c066f808914f338d

See more details on using hashes here.

Provenance

The following attestation bundles were made for leapfrog_goals-0.0.1.tar.gz:

Publisher: goals-deploy.yaml on hivtools/leapfrog

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

File details

Details for the file leapfrog_goals-0.0.1-cp314-cp314t-win_amd64.whl.

File metadata

File hashes

Hashes for leapfrog_goals-0.0.1-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 99df605306bb7c519a529101cb8c2abb4038a97f49ead180b114069f850a75fc
MD5 3b84fb5e30c8ba8c5190d6a9d57200fe
BLAKE2b-256 39b47fdec0355f5f420e7bd7fa1667eb03a870e7f8cdd63ad1c1b93482d0ce3e

See more details on using hashes here.

Provenance

The following attestation bundles were made for leapfrog_goals-0.0.1-cp314-cp314t-win_amd64.whl:

Publisher: goals-deploy.yaml on hivtools/leapfrog

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

File details

Details for the file leapfrog_goals-0.0.1-cp314-cp314t-win32.whl.

File metadata

File hashes

Hashes for leapfrog_goals-0.0.1-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 66cdfb4b5acabe6bdbcddd0d031faa5330395c9433eae6110dd32a40f6a5854c
MD5 a1ee1426e413a7891e88091ff572cbc8
BLAKE2b-256 6d135c1c9bc5f2a0bc92a2bc9df07a6ec90d95133b85ef7d6031244b7827e3a5

See more details on using hashes here.

Provenance

The following attestation bundles were made for leapfrog_goals-0.0.1-cp314-cp314t-win32.whl:

Publisher: goals-deploy.yaml on hivtools/leapfrog

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

File details

Details for the file leapfrog_goals-0.0.1-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for leapfrog_goals-0.0.1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6a806906eac5929da35c769be95e95e33bacb939d9f56290da807c457bce017d
MD5 0a3b41919fe9f589e177650465407231
BLAKE2b-256 d2caf2144698bcab993348c10edc5762c046444cc0703b39f2a2639069d83b81

See more details on using hashes here.

Provenance

The following attestation bundles were made for leapfrog_goals-0.0.1-cp314-cp314t-musllinux_1_2_x86_64.whl:

Publisher: goals-deploy.yaml on hivtools/leapfrog

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

File details

Details for the file leapfrog_goals-0.0.1-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for leapfrog_goals-0.0.1-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d34ee68c43d5958f74263cef420a61c80c351085ed4ad5e9c30cc03e255798cb
MD5 c967e0ed29a63389641b67f26a776c9a
BLAKE2b-256 6e425f79d4002d5d9c75a1c2f46f3a4e1c594bd816e0c089e6aee89c98ce6ba8

See more details on using hashes here.

Provenance

The following attestation bundles were made for leapfrog_goals-0.0.1-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: goals-deploy.yaml on hivtools/leapfrog

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

File details

Details for the file leapfrog_goals-0.0.1-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for leapfrog_goals-0.0.1-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 77cd4fe01cb480bcba49f9f89babf0afe5171f23ab21d0c172bd1ef151a19893
MD5 532ef05e27bf376def3bbc26813ec5a8
BLAKE2b-256 573ba933edb6a9c318abf6426e96f6271e7fd0fc3f899a16767adf533a380c03

See more details on using hashes here.

Provenance

The following attestation bundles were made for leapfrog_goals-0.0.1-cp314-cp314t-macosx_11_0_arm64.whl:

Publisher: goals-deploy.yaml on hivtools/leapfrog

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

File details

Details for the file leapfrog_goals-0.0.1-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for leapfrog_goals-0.0.1-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 679846454caad4bf5ddde4fb53729b05b04f2345a2cb6713f5756e22a2b89c34
MD5 3efaadd62398ac82d2a85b36382bfae2
BLAKE2b-256 47d12928405ed6cc46116594bc8fb59dc8763a63c319ec19a973fcf36e132ff0

See more details on using hashes here.

Provenance

The following attestation bundles were made for leapfrog_goals-0.0.1-cp314-cp314t-macosx_10_15_x86_64.whl:

Publisher: goals-deploy.yaml on hivtools/leapfrog

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

File details

Details for the file leapfrog_goals-0.0.1-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for leapfrog_goals-0.0.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 d59336f5b5f448e042297d9a416b30816d366114a23871e13dd321283c3b55e8
MD5 12eb196dc80b1e576ef66ee331b37c9f
BLAKE2b-256 191e058a378b0b958350de06b91266eccbddf9c83ae44cecad95d17657a1acbc

See more details on using hashes here.

Provenance

The following attestation bundles were made for leapfrog_goals-0.0.1-cp314-cp314-win_amd64.whl:

Publisher: goals-deploy.yaml on hivtools/leapfrog

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

File details

Details for the file leapfrog_goals-0.0.1-cp314-cp314-win32.whl.

File metadata

  • Download URL: leapfrog_goals-0.0.1-cp314-cp314-win32.whl
  • Upload date:
  • Size: 118.0 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for leapfrog_goals-0.0.1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 5c5d26cfe8043d820ddc052da507ef43faa8bb4b705e29eebfac807839dae1cb
MD5 9d49452cd9c4f4e87fc0a1707309ecdc
BLAKE2b-256 cdc96030a40638ce98157c154fadce61684a22fe61b7f1e587ede4d837376f91

See more details on using hashes here.

Provenance

The following attestation bundles were made for leapfrog_goals-0.0.1-cp314-cp314-win32.whl:

Publisher: goals-deploy.yaml on hivtools/leapfrog

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

File details

Details for the file leapfrog_goals-0.0.1-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for leapfrog_goals-0.0.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bb687a9c94ee943705bb28f089a8a7462bf4709f17491012ed158fd78e64ee5e
MD5 b281525da17f54945282736b4eee7b38
BLAKE2b-256 94f0c23bbb3188ba93365bfd3ed9a05ec08b13b99afabe04fba1d3f5fbc9acd5

See more details on using hashes here.

Provenance

The following attestation bundles were made for leapfrog_goals-0.0.1-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: goals-deploy.yaml on hivtools/leapfrog

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

File details

Details for the file leapfrog_goals-0.0.1-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for leapfrog_goals-0.0.1-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4960a2f5506261c2eb2034564d47fcad1d4d1f0c71d73ede9f87e19511217cfa
MD5 cae4c5499c6ea616ea7ee38e170fbbda
BLAKE2b-256 7a477510028e192f1829e24cec4d482eaac6312eda7ef6b54c430f6a35254afa

See more details on using hashes here.

Provenance

The following attestation bundles were made for leapfrog_goals-0.0.1-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: goals-deploy.yaml on hivtools/leapfrog

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

File details

Details for the file leapfrog_goals-0.0.1-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for leapfrog_goals-0.0.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ff8ab3b9610d4eb5f5c6c69f817624685b5d23e6072db6acc5d161dc3cbd9079
MD5 5353fbf121d9baf741a523135c8e9db3
BLAKE2b-256 e0f0a6a13fc2a21a52b7001fe52bec4e033c0d6be79c11db71ad9e26f00e6439

See more details on using hashes here.

Provenance

The following attestation bundles were made for leapfrog_goals-0.0.1-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: goals-deploy.yaml on hivtools/leapfrog

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

File details

Details for the file leapfrog_goals-0.0.1-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for leapfrog_goals-0.0.1-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 7d2a845c83eaf4c494592aeb99f9f2ec387f5367b79b468f734d2168ef7090c0
MD5 fdc1c81ef1b0c586d49df5f39cd08ebb
BLAKE2b-256 73b10b077c8b02f3b7ef293ec26990dd20e1a6b87c30b9d7ca86f693cd58588f

See more details on using hashes here.

Provenance

The following attestation bundles were made for leapfrog_goals-0.0.1-cp314-cp314-macosx_10_15_x86_64.whl:

Publisher: goals-deploy.yaml on hivtools/leapfrog

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

File details

Details for the file leapfrog_goals-0.0.1-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for leapfrog_goals-0.0.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 60cf7a1d9a46b81bbbfd77a80107816a28f73a346b0f5b94bc230557ec4853c5
MD5 9fa1055156b62252f774eca08d47d16a
BLAKE2b-256 e59dd2e822118af845218db6762022328366abc317fbc46de66c78f5dd591dbd

See more details on using hashes here.

Provenance

The following attestation bundles were made for leapfrog_goals-0.0.1-cp313-cp313-win_amd64.whl:

Publisher: goals-deploy.yaml on hivtools/leapfrog

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

File details

Details for the file leapfrog_goals-0.0.1-cp313-cp313-win32.whl.

File metadata

  • Download URL: leapfrog_goals-0.0.1-cp313-cp313-win32.whl
  • Upload date:
  • Size: 114.8 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for leapfrog_goals-0.0.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 7a168889ea3e547dd3b6a138e9447da0b67aa0cd167bd17183b849b00bb624e3
MD5 a5c2a99c3d11ba4eb84fb99c11211154
BLAKE2b-256 f96227d65a34ca4b78675f53e8a8532f75ad87ad3dbd302347a3ad62ab8a98aa

See more details on using hashes here.

Provenance

The following attestation bundles were made for leapfrog_goals-0.0.1-cp313-cp313-win32.whl:

Publisher: goals-deploy.yaml on hivtools/leapfrog

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

File details

Details for the file leapfrog_goals-0.0.1-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for leapfrog_goals-0.0.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 723ebafb7f2e240a365ad584fea04d30ec0b4c2c892b24bdb79c68c6071394bd
MD5 c5807a6eca242e7da51b4753d6bda83a
BLAKE2b-256 4366215d90ee82b0dc038582c6125c8431b78baf6ab2e924c4f55f66fc3851c3

See more details on using hashes here.

Provenance

The following attestation bundles were made for leapfrog_goals-0.0.1-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: goals-deploy.yaml on hivtools/leapfrog

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

File details

Details for the file leapfrog_goals-0.0.1-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for leapfrog_goals-0.0.1-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 90f1683e05ede4a9df103a3eac85888e669ed46c61f17dd3b2641f54edaacfae
MD5 f7e51816162cc560a4ef5d857997d850
BLAKE2b-256 350d1b0cfb80e883b3b1a81a4a85eca45c12c3cb7a3b7ea772dd4ba210573fea

See more details on using hashes here.

Provenance

The following attestation bundles were made for leapfrog_goals-0.0.1-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: goals-deploy.yaml on hivtools/leapfrog

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

File details

Details for the file leapfrog_goals-0.0.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for leapfrog_goals-0.0.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 402c2dc4c4c897bf9035694d00230abaa3c680b981afa610e37705a34a3d8344
MD5 d32d1a9aaf38989210ea4337f8d1b47c
BLAKE2b-256 d299e3207c358fb82d86e7ad056d191458c02cc834ebe7f8ec705b3c48ff10c4

See more details on using hashes here.

Provenance

The following attestation bundles were made for leapfrog_goals-0.0.1-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: goals-deploy.yaml on hivtools/leapfrog

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

File details

Details for the file leapfrog_goals-0.0.1-cp313-cp313-macosx_10_14_x86_64.whl.

File metadata

File hashes

Hashes for leapfrog_goals-0.0.1-cp313-cp313-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 1a3e861fc23043a8e71d9d854312917c764d154b801de3654eaec8dd80a710ce
MD5 64080c99deb3bb630a626d23af6646e1
BLAKE2b-256 2b7b7fe718f96437d21884efa7e6e726fe73adf55beb9518b747052d06e9081c

See more details on using hashes here.

Provenance

The following attestation bundles were made for leapfrog_goals-0.0.1-cp313-cp313-macosx_10_14_x86_64.whl:

Publisher: goals-deploy.yaml on hivtools/leapfrog

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

File details

Details for the file leapfrog_goals-0.0.1-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for leapfrog_goals-0.0.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 26e6137031f58eb2403a32022b69828e0286602fbfc106f47c01ad0dbc1672dd
MD5 212bc213356b84a9ffac460cee2d48fc
BLAKE2b-256 c1828fb6833116e5a93a4bc390c58566afa8a39cba28e0e536f0c55873852ffc

See more details on using hashes here.

Provenance

The following attestation bundles were made for leapfrog_goals-0.0.1-cp312-cp312-win_amd64.whl:

Publisher: goals-deploy.yaml on hivtools/leapfrog

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

File details

Details for the file leapfrog_goals-0.0.1-cp312-cp312-win32.whl.

File metadata

  • Download URL: leapfrog_goals-0.0.1-cp312-cp312-win32.whl
  • Upload date:
  • Size: 114.8 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for leapfrog_goals-0.0.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 ff8ed26fc4dad467621a3f61f556888e872df1fc8748b8e69f05bf699996fdcb
MD5 60464f5310460cf3abf02ad86f054c45
BLAKE2b-256 ab93d69479d2443dfaa41af1d3f4e6f8396044363bfd778abbd8fdfe6841e6f7

See more details on using hashes here.

Provenance

The following attestation bundles were made for leapfrog_goals-0.0.1-cp312-cp312-win32.whl:

Publisher: goals-deploy.yaml on hivtools/leapfrog

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

File details

Details for the file leapfrog_goals-0.0.1-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for leapfrog_goals-0.0.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 40f6009de1d7e87c8516de38317ec73e6b69fa59aa64bdfdaed9dff137631c0a
MD5 53336a414ff272c34b860c5308cd6b70
BLAKE2b-256 9516a177113bc484ad51655740b738dbde100e359b1cf89bdaeab87fb4e1a853

See more details on using hashes here.

Provenance

The following attestation bundles were made for leapfrog_goals-0.0.1-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: goals-deploy.yaml on hivtools/leapfrog

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

File details

Details for the file leapfrog_goals-0.0.1-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for leapfrog_goals-0.0.1-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2f247c613492e60cd6e74e46dd98544f9396115a597b009ac39262279c5e6e66
MD5 12a1056b693cd1334dd58b2e8e41564e
BLAKE2b-256 04d7f96734b303e421ca74f01fa3b80807bfd1dca331feb514ab3d14318c7dc2

See more details on using hashes here.

Provenance

The following attestation bundles were made for leapfrog_goals-0.0.1-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: goals-deploy.yaml on hivtools/leapfrog

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

File details

Details for the file leapfrog_goals-0.0.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for leapfrog_goals-0.0.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 86d3ec3896ad667fb94002d55fa2bc123203527c797c609972b72a742ff6bd6e
MD5 f7b3677382c8b19e1cfab7071cc44d61
BLAKE2b-256 8f0aa7aba204d4bbe12dbb217aa40d64c70d1c273c56373c5bdfaaaaf5b08830

See more details on using hashes here.

Provenance

The following attestation bundles were made for leapfrog_goals-0.0.1-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: goals-deploy.yaml on hivtools/leapfrog

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

File details

Details for the file leapfrog_goals-0.0.1-cp312-cp312-macosx_10_14_x86_64.whl.

File metadata

File hashes

Hashes for leapfrog_goals-0.0.1-cp312-cp312-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 ee77d015869b8428613d3fbc9824894a72e408df86d1fa18fd41dde4b5f48c60
MD5 60546e26c805e9e0519df4ee8411bbbf
BLAKE2b-256 8605c9f64aedb16d38a77aa08ef79b78532b09fc76f5fa16e964c7045c8f53a2

See more details on using hashes here.

Provenance

The following attestation bundles were made for leapfrog_goals-0.0.1-cp312-cp312-macosx_10_14_x86_64.whl:

Publisher: goals-deploy.yaml on hivtools/leapfrog

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

File details

Details for the file leapfrog_goals-0.0.1-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for leapfrog_goals-0.0.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 6dc58f2cf9b4bb90709eac8533f264d05003dff01524fad105c37bf572dc7069
MD5 5ef62d06911a2bf01c9724d4c85434ae
BLAKE2b-256 55518b62ad09f97c9dc4b1d8ae7f6f12a9e2cd9eeab225567d028635dc7d7333

See more details on using hashes here.

Provenance

The following attestation bundles were made for leapfrog_goals-0.0.1-cp311-cp311-win_amd64.whl:

Publisher: goals-deploy.yaml on hivtools/leapfrog

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

File details

Details for the file leapfrog_goals-0.0.1-cp311-cp311-win32.whl.

File metadata

  • Download URL: leapfrog_goals-0.0.1-cp311-cp311-win32.whl
  • Upload date:
  • Size: 114.8 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for leapfrog_goals-0.0.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 aa818a7614e42a21f3332d593d4ba2e191552736f14ad83a3990e5ffd57271a5
MD5 5eb1d04f39a058c9b55f651bd41e10ac
BLAKE2b-256 0b972c502f64f5826694228954df2f45ada813145361b11ae423391a18b9704c

See more details on using hashes here.

Provenance

The following attestation bundles were made for leapfrog_goals-0.0.1-cp311-cp311-win32.whl:

Publisher: goals-deploy.yaml on hivtools/leapfrog

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

File details

Details for the file leapfrog_goals-0.0.1-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for leapfrog_goals-0.0.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 74c64417134de7153d6e4ee38a80af1ae5e371a820b44d11a20259386fb60d39
MD5 737e4127ec19f482caa4c7713fdc682b
BLAKE2b-256 9e3a3c6b9772f8f430890322b4f36611e8931929e2837c8957f95c5a05e3aa7e

See more details on using hashes here.

Provenance

The following attestation bundles were made for leapfrog_goals-0.0.1-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: goals-deploy.yaml on hivtools/leapfrog

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

File details

Details for the file leapfrog_goals-0.0.1-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for leapfrog_goals-0.0.1-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a8a89c9e263c738fc6c4cd31df13049683199d8a3bae48570a958fc3e0b2ab6e
MD5 0148064a290a4ca96964491602ff8174
BLAKE2b-256 e96ed5799ea2aae52285c009a1d0e52b572b545c9687b6b44148663e82380dbb

See more details on using hashes here.

Provenance

The following attestation bundles were made for leapfrog_goals-0.0.1-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: goals-deploy.yaml on hivtools/leapfrog

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

File details

Details for the file leapfrog_goals-0.0.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for leapfrog_goals-0.0.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6faa05fd25562670daea2b7cef230968334bac67fc5e12a1023fda69dfeaed0b
MD5 9611e7bd9a2078f80f9f5b73fe01b582
BLAKE2b-256 a31fb821ae18462f689ee0689cd9edfbfa5196ce8e8823b87f028c6fb97d2663

See more details on using hashes here.

Provenance

The following attestation bundles were made for leapfrog_goals-0.0.1-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: goals-deploy.yaml on hivtools/leapfrog

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

File details

Details for the file leapfrog_goals-0.0.1-cp311-cp311-macosx_10_14_x86_64.whl.

File metadata

File hashes

Hashes for leapfrog_goals-0.0.1-cp311-cp311-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 de9ed5462c28f22a662fa64cf361c33368fde01a75fb80c66c8cf3ac5d0dda59
MD5 d0694becaea87c184872076a737913b1
BLAKE2b-256 dd48b7b5fba74723c9287d8b5e96fba993ed08a08e748808cf714a406cae6ba8

See more details on using hashes here.

Provenance

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

Publisher: goals-deploy.yaml on hivtools/leapfrog

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

File details

Details for the file leapfrog_goals-0.0.1-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for leapfrog_goals-0.0.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 13af9e9cf1e2c8f505afb70adecf6b4327ab4a17909863b28957c28463e790dd
MD5 ad695a7d1e2519c81c632b8ec9f5b578
BLAKE2b-256 d278fbf783c37585904ba0651803a66ae231c1cac2ec5b23ccc993c4821b75b0

See more details on using hashes here.

Provenance

The following attestation bundles were made for leapfrog_goals-0.0.1-cp310-cp310-win_amd64.whl:

Publisher: goals-deploy.yaml on hivtools/leapfrog

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

File details

Details for the file leapfrog_goals-0.0.1-cp310-cp310-win32.whl.

File metadata

  • Download URL: leapfrog_goals-0.0.1-cp310-cp310-win32.whl
  • Upload date:
  • Size: 115.0 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for leapfrog_goals-0.0.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 a2254c71bfe7a8b82c59684bfa975b8767eddc0ef5c33e9b94a50d72b9b651c0
MD5 5c1f80ec893ed35222c1b141681494b4
BLAKE2b-256 67386314dcf5fc82d2de6f110518a35d021c8da7ce244702ceb5d003e4f0ebeb

See more details on using hashes here.

Provenance

The following attestation bundles were made for leapfrog_goals-0.0.1-cp310-cp310-win32.whl:

Publisher: goals-deploy.yaml on hivtools/leapfrog

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

File details

Details for the file leapfrog_goals-0.0.1-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for leapfrog_goals-0.0.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 efe476f57f0d57a7b05bcac9fdc4155236128a1ba3f507b50c0ad9d1f0f6f125
MD5 6dbc2101a5df61dfbcd59dd614d06ef3
BLAKE2b-256 1bae8690966060c376a54ff78792c25ecada946ee22e28c679d7cb6daea55e6b

See more details on using hashes here.

Provenance

The following attestation bundles were made for leapfrog_goals-0.0.1-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: goals-deploy.yaml on hivtools/leapfrog

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

File details

Details for the file leapfrog_goals-0.0.1-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for leapfrog_goals-0.0.1-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8c82dd84a991d46f15bdd3e2687fcbf8441a226fb54a1248f2d4ed5fae53cdef
MD5 88e0206b9f90dfaf7070e4efe79238db
BLAKE2b-256 8ca777bd63b6f9b4b873a9f09ba263bf4c1d9a25eaee6c1249f53905423ba643

See more details on using hashes here.

Provenance

The following attestation bundles were made for leapfrog_goals-0.0.1-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: goals-deploy.yaml on hivtools/leapfrog

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

File details

Details for the file leapfrog_goals-0.0.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for leapfrog_goals-0.0.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 20f98bec5ca9553dffb9091403eac41faf3c0163488a4b4d12a44fe0e193305a
MD5 5a5bfe87afdaff12d4fad3f66ebfd7b5
BLAKE2b-256 8a06893d9f45e4d0532e9e695e69903317532a7e2c9cc61e58cd9ebb7efa05b4

See more details on using hashes here.

Provenance

The following attestation bundles were made for leapfrog_goals-0.0.1-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: goals-deploy.yaml on hivtools/leapfrog

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

File details

Details for the file leapfrog_goals-0.0.1-cp310-cp310-macosx_10_14_x86_64.whl.

File metadata

File hashes

Hashes for leapfrog_goals-0.0.1-cp310-cp310-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 0093a5d7ca313ce26a16c14932f39bfd1befb0dfce274b7e0be5ed79d573d7ff
MD5 44a80294da4e614bd66f301467f36dff
BLAKE2b-256 c6805a9c2261c048be814584fec33e06ca4261796142161f7946f727f7455c60

See more details on using hashes here.

Provenance

The following attestation bundles were made for leapfrog_goals-0.0.1-cp310-cp310-macosx_10_14_x86_64.whl:

Publisher: goals-deploy.yaml on hivtools/leapfrog

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

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page