Skip to main content

Python interface for Leapfrog Goals model

Project description

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.

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.11.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-0.0.11-cp314-cp314t-win_amd64.whl (175.2 kB view details)

Uploaded CPython 3.14tWindows x86-64

leapfrog_goals-0.0.11-cp314-cp314t-win32.whl (157.5 kB view details)

Uploaded CPython 3.14tWindows x86

leapfrog_goals-0.0.11-cp314-cp314t-musllinux_1_2_x86_64.whl (644.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

leapfrog_goals-0.0.11-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (198.4 kB view details)

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

leapfrog_goals-0.0.11-cp314-cp314t-macosx_11_0_arm64.whl (169.8 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

leapfrog_goals-0.0.11-cp314-cp314t-macosx_10_15_x86_64.whl (171.7 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

leapfrog_goals-0.0.11-cp314-cp314-win_amd64.whl (172.2 kB view details)

Uploaded CPython 3.14Windows x86-64

leapfrog_goals-0.0.11-cp314-cp314-win32.whl (156.0 kB view details)

Uploaded CPython 3.14Windows x86

leapfrog_goals-0.0.11-cp314-cp314-musllinux_1_2_x86_64.whl (642.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

leapfrog_goals-0.0.11-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (196.3 kB view details)

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

leapfrog_goals-0.0.11-cp314-cp314-macosx_11_0_arm64.whl (167.8 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

leapfrog_goals-0.0.11-cp314-cp314-macosx_10_15_x86_64.whl (170.2 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

leapfrog_goals-0.0.11-cp313-cp313-win_amd64.whl (166.5 kB view details)

Uploaded CPython 3.13Windows x86-64

leapfrog_goals-0.0.11-cp313-cp313-win32.whl (151.1 kB view details)

Uploaded CPython 3.13Windows x86

leapfrog_goals-0.0.11-cp313-cp313-musllinux_1_2_x86_64.whl (642.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

leapfrog_goals-0.0.11-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (196.3 kB view details)

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

leapfrog_goals-0.0.11-cp313-cp313-macosx_11_0_arm64.whl (167.7 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

leapfrog_goals-0.0.11-cp313-cp313-macosx_10_14_x86_64.whl (170.0 kB view details)

Uploaded CPython 3.13macOS 10.14+ x86-64

leapfrog_goals-0.0.11-cp312-cp312-win_amd64.whl (166.5 kB view details)

Uploaded CPython 3.12Windows x86-64

leapfrog_goals-0.0.11-cp312-cp312-win32.whl (151.1 kB view details)

Uploaded CPython 3.12Windows x86

leapfrog_goals-0.0.11-cp312-cp312-musllinux_1_2_x86_64.whl (642.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

leapfrog_goals-0.0.11-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (196.3 kB view details)

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

leapfrog_goals-0.0.11-cp312-cp312-macosx_11_0_arm64.whl (167.7 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

leapfrog_goals-0.0.11-cp312-cp312-macosx_10_14_x86_64.whl (170.0 kB view details)

Uploaded CPython 3.12macOS 10.14+ x86-64

leapfrog_goals-0.0.11-cp311-cp311-win_amd64.whl (167.2 kB view details)

Uploaded CPython 3.11Windows x86-64

leapfrog_goals-0.0.11-cp311-cp311-win32.whl (151.8 kB view details)

Uploaded CPython 3.11Windows x86

leapfrog_goals-0.0.11-cp311-cp311-musllinux_1_2_x86_64.whl (643.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

leapfrog_goals-0.0.11-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (197.5 kB view details)

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

leapfrog_goals-0.0.11-cp311-cp311-macosx_11_0_arm64.whl (168.8 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

leapfrog_goals-0.0.11-cp311-cp311-macosx_10_14_x86_64.whl (170.9 kB view details)

Uploaded CPython 3.11macOS 10.14+ x86-64

File details

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

File metadata

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

File hashes

Hashes for leapfrog_goals-0.0.11.tar.gz
Algorithm Hash digest
SHA256 7c47e76972e1616087454e30c61b5b1c466aac3d193d380de596013cfaf0d047
MD5 bfadc76cdee2e22e7ff92e824350aa7b
BLAKE2b-256 91b8f6cf2e7d4cfc16d29fc0c470106c60a2557a85b96ce9e2e5ece37e1c73e2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-0.0.11-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 4bc334f33f6ed5e6595bf4e063f1ddbd60fcf48f86af80695f47924b76aec761
MD5 c4ec6a14f1144053c0ed67cf58f06c1c
BLAKE2b-256 9ed32654b81de7c922f6fd355012380a562b477e389432cb2c8b22bbd20e544c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-0.0.11-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 5ca4d27df3ccd90ebc2732ab4177e72e44d0f6f0b545c70116435700b319c200
MD5 faf128734c1dfe3b5f37699ee96ebaa1
BLAKE2b-256 fda51c3c12116994cdf66f63a612fd3eed720534b1c59554af63d6d991ec2f75

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-0.0.11-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6405493608ecd36e00b63c5f2fbcaf8eccc984c65154ce776170d2abcd09d7de
MD5 197d5d51580e4ad810a966d125ad5d86
BLAKE2b-256 acb4829af5339fb20f2a5de853ba937244deea8a27455344bf4f33f5b8f49406

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-0.0.11-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7479cff05ac17005b7a92a018ce1c1d1021320209b2cb8a47a95e246ff04ef4b
MD5 084af4f25a7145bc87ae68ff70d1d414
BLAKE2b-256 bd3c210b4a92aa8c4fbbff41aef4744c0a0364ad5918dccc8fc170d4369427c1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-0.0.11-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d4caf90a599716d9e8976e0b6632acdb05b40a403c2406e20a941bf2603570e0
MD5 9c2c28ffba47a75990802720d8943c45
BLAKE2b-256 5aefbbc889a366a22e44e5e8dc519396906e5edb98ca5aa81b769f87ad0afe28

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-0.0.11-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 a9013dc4122636da8810f7e7d70a05b1b788c8527d4d1f7df3a88feca3f96a42
MD5 286921be362462667f57a819753ec02b
BLAKE2b-256 6cd911c21410025edd720bd7de031ffd909b60b872273fed94388819d4d2f859

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-0.0.11-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 750e6d72a9c679151904fe6c3b71e7a8dbe9e65014cd69ec8d07e70c79312d12
MD5 9dd2603f0f64e08b672ae29fc8865ff8
BLAKE2b-256 b381a060303ccf7a6b33d5cbe97f29a4317c1d7e03567e46e9121d39b057bb99

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-0.0.11-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 ffd5c24e1b79bb4e0dccead19bac92b7667d4bcc34021ba2ac60d8ec9f2529a0
MD5 c2a08cf902a1c19132f04d80573cfd41
BLAKE2b-256 4b4e38bbd5e10482a76d3f6e98b98a21599a2fa90deb912951f339a0c675e711

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-0.0.11-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 75d4c2c88afbe634ea9300b2fce01921151082a87e1966091c64859ae903c9f5
MD5 b8cd45939a7d7d0c8a2082f128e1ae89
BLAKE2b-256 0562f9f2b7b9b059b9ee4f10d8e29c8bdde919f3673b53d4ffdbe1ceb6b96dac

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-0.0.11-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 564f6770bbb90c8057d84c77f6f075f2e2d0b7e9968b842785b72a88e76a1b0e
MD5 b420669c5ae3187a383df53c2b424950
BLAKE2b-256 4a5c3a8fc6a6a3ec3f7b0cf20a0c6fab665195d399ce201981b653c1dd33ee5f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-0.0.11-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fb2cf41ba88e286a3b293a733ad1858b40c988e0fb1e51f129ee703c60034c75
MD5 874574490351fdf2a177f7ee76571c96
BLAKE2b-256 b7d4af4d426284e4e7186e881a5b1c09492a3a6c517083f123cd45bde1eeab48

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-0.0.11-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 d21b1969f37ff7eaa772fcc29849e4c7d631c81dee82d6dfbee428af6a47b325
MD5 1c9294d895a66d73f56b9f704f429b5f
BLAKE2b-256 032ebe0a0990fdf1d374308ec8c9ebbbc6ec71fa73f5d059a26968ad4de1e2e4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-0.0.11-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 4ee33fe29f2028550889deb331e71cabe49c05edc36e106a5bb04665099569a7
MD5 5ae670f7b0bc54e2eadb545009d8066d
BLAKE2b-256 b6aafac7bf665439b01bcfc62dc826444315c4beb44182e36186944a7ba9ed5a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-0.0.11-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 eb366e7e7f24f1fbe740b4ebcd7fd3eb519da0602c44df2816204bc5ef80bd6c
MD5 97c28d0f6e4dbe22012ea5ea920a3d21
BLAKE2b-256 0f118a9260629525f9c662c5d253a6f3596fac90dddc16a6176f519236116383

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-0.0.11-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 969971ca68707c3c2b3e92f1f21bdb1ce1686a2d33f9054f91c86a08ea185ede
MD5 f1cd5ec36dbf3c3898da0755e784cf97
BLAKE2b-256 a866918f1a1f8a241863b7687a6dbf0bdae51f4b5a1fba625881d1a67d960a2b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-0.0.11-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ec1b482054a7a38c9efced3853f131bc117b61eba84e3ddfa8997b616062bc2f
MD5 66cbb33ec8b24e55e59924007d0f0be8
BLAKE2b-256 27e6a4533a6d2b45dc3b86a83a90fb42d1531698899234f4ee7d3c381045fd39

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-0.0.11-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 283d73f1c1ba56b98f7a66c157d41e68eaa404eab8ca4c2f8bc863fe7fe8f355
MD5 c121483abff607764a3360f11213273b
BLAKE2b-256 fd08d25fe413ee6619a5d93062c39147149d87b13e48cb3584883127012825ea

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-0.0.11-cp313-cp313-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 16b200bc3a1265b16580862cc56f461f5dec3bb63b677534f3c30d5008dcb3c3
MD5 8aef7adb3e3f5f0823c1240886e6cdd0
BLAKE2b-256 116dd8529dc28ab0277a24b25b9baf8573c4d7ef5e74f0f8fe0b11ef61e08760

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-0.0.11-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 1d062196b4f6f168d777d344469ea09d364c586ec97de2d5aa03403a3cb43cf0
MD5 7eb998f8642b9aeac4c0edd21341c6ed
BLAKE2b-256 ba35290da6e499045d677cf16c90717446d9232627805cfa13af823a99f3de23

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-0.0.11-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 b9176364cbf329c5b76415a2c23fa631bd31f33163cb2c61309086d46b2c2371
MD5 cf792c53760ba589721a9ec3104ccd84
BLAKE2b-256 00b8013b6a950c59eab3024ee64738639c2eba15a816447583a7ebd4195c208f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-0.0.11-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7090f18d9585cad7463c75ccd3b8dd8ccacc81c921e457b5e1d710e9472f014e
MD5 f9b6541e6baba4cc7a38f789fe759fc1
BLAKE2b-256 b913e4c025263b5c9dcb977fda208b9e09208c329643be2629c959bb8ca639f6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-0.0.11-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b7db34dd7cd115bd157d2b7bdaf5bbb07bc3d6e23d112874b4699beed89b70bd
MD5 afb941a4dcdff873ece7c3a451b46a37
BLAKE2b-256 a75c267f1e6eb6646ce345b724a4b5b4560c04f50f4ab229c0a9fc9dbfc79cc5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-0.0.11-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 71c1560f3ca6a709729296528bbb528ead20fa331a91ac73293b8ec4c7e2cf3c
MD5 3d8f9a2cce9d3dd4427d2b3dfa877658
BLAKE2b-256 b4305542c56b48adc22f3896061339b2286b52b2701dbbbca06e4f4b2a886d01

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-0.0.11-cp312-cp312-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 31d93befffccb8bd0363f859851ca0447e72f05ba291aa807c67274bee97f0f0
MD5 3b60d3d0364c895f5e776cb5dcd23b3c
BLAKE2b-256 313738f697fe893373b01b29c8f18054cfa58d27095d5a0cdb3a3c44580b8be6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-0.0.11-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 409c0ca475e66350fe61cbfc2d956f8cd4b0cf962838a2282ccb7d2fbdc19872
MD5 5fbc7ab8dc6b1d685197218dfffd3936
BLAKE2b-256 1893ffddb058d5845e6e7dcdb86f71ab5b45b8c1a62cd6dc439bafefa21fe5cc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-0.0.11-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 5936910162b6d0f282001805e0612df98ae9f85eb0d8a2dd1446fc8c760d4d67
MD5 1b05121f06a7effb2ddf0f54fc5c2327
BLAKE2b-256 ba74ea687e72a9534b9c46008484ef16404a78e75526baa0963f1b34dc9eac40

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-0.0.11-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2a9ba7ed95b21f0d246190a331b18c85a1ae1ff2dfeabaf93ee919cad167fd16
MD5 1556ce4af13a09aa4274660dc3224df9
BLAKE2b-256 56bc7b10d3287d4078765cc4309026882ffc20a5ba8e8f1143b89bcdf943bd94

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-0.0.11-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3419367ef5d0b167056fcbbaaa1ba949d95acb7f4e80ecbbd94a997775ddd480
MD5 7ca486b5a0df188c31ea9ce95f8e30eb
BLAKE2b-256 fed14874665403d34978bb7c86548995a65482d13bb5d9daf824891d3cf623ef

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-0.0.11-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2aae8fd5d152db745df5e9fe94aa9d38aa7920fb90ff59b4fa5be0d15df037e7
MD5 d95789c6433fefd99355f9637144489d
BLAKE2b-256 e1a9e0f4b4a06f15e97198f965ee2f23e7c8cbb5adc9d2d450bdeb201c2dc2c6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-0.0.11-cp311-cp311-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 73fb6504e382c51b8d52a0318197e7a6874d83cf4c28aee39ddfbc905a4d84f9
MD5 7a49fbd5a81a672a05ab1c494845dcb9
BLAKE2b-256 7c9ba10119aea0d25e45025aedd9fe1283d75cfe4af777300edea98a4854e4f2

See more details on using hashes here.

Provenance

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

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