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

Uploaded CPython 3.14tWindows x86-64

leapfrog_goals-0.0.6-cp314-cp314t-win32.whl (154.3 kB view details)

Uploaded CPython 3.14tWindows x86

leapfrog_goals-0.0.6-cp314-cp314t-musllinux_1_2_x86_64.whl (640.4 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

leapfrog_goals-0.0.6-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (194.2 kB view details)

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

leapfrog_goals-0.0.6-cp314-cp314t-macosx_11_0_arm64.whl (166.2 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

leapfrog_goals-0.0.6-cp314-cp314t-macosx_10_15_x86_64.whl (168.7 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

leapfrog_goals-0.0.6-cp314-cp314-win_amd64.whl (168.1 kB view details)

Uploaded CPython 3.14Windows x86-64

leapfrog_goals-0.0.6-cp314-cp314-win32.whl (152.7 kB view details)

Uploaded CPython 3.14Windows x86

leapfrog_goals-0.0.6-cp314-cp314-musllinux_1_2_x86_64.whl (638.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

leapfrog_goals-0.0.6-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (191.9 kB view details)

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

leapfrog_goals-0.0.6-cp314-cp314-macosx_11_0_arm64.whl (164.4 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

leapfrog_goals-0.0.6-cp314-cp314-macosx_10_15_x86_64.whl (167.0 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

leapfrog_goals-0.0.6-cp313-cp313-win_amd64.whl (162.7 kB view details)

Uploaded CPython 3.13Windows x86-64

leapfrog_goals-0.0.6-cp313-cp313-win32.whl (147.4 kB view details)

Uploaded CPython 3.13Windows x86

leapfrog_goals-0.0.6-cp313-cp313-musllinux_1_2_x86_64.whl (638.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

leapfrog_goals-0.0.6-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (191.9 kB view details)

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

leapfrog_goals-0.0.6-cp313-cp313-macosx_11_0_arm64.whl (164.4 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

leapfrog_goals-0.0.6-cp313-cp313-macosx_10_14_x86_64.whl (166.9 kB view details)

Uploaded CPython 3.13macOS 10.14+ x86-64

leapfrog_goals-0.0.6-cp312-cp312-win_amd64.whl (162.7 kB view details)

Uploaded CPython 3.12Windows x86-64

leapfrog_goals-0.0.6-cp312-cp312-win32.whl (147.4 kB view details)

Uploaded CPython 3.12Windows x86

leapfrog_goals-0.0.6-cp312-cp312-musllinux_1_2_x86_64.whl (638.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

leapfrog_goals-0.0.6-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (191.9 kB view details)

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

leapfrog_goals-0.0.6-cp312-cp312-macosx_11_0_arm64.whl (164.3 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

leapfrog_goals-0.0.6-cp312-cp312-macosx_10_14_x86_64.whl (166.9 kB view details)

Uploaded CPython 3.12macOS 10.14+ x86-64

leapfrog_goals-0.0.6-cp311-cp311-win_amd64.whl (163.5 kB view details)

Uploaded CPython 3.11Windows x86-64

leapfrog_goals-0.0.6-cp311-cp311-win32.whl (148.0 kB view details)

Uploaded CPython 3.11Windows x86

leapfrog_goals-0.0.6-cp311-cp311-musllinux_1_2_x86_64.whl (639.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

leapfrog_goals-0.0.6-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (193.2 kB view details)

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

leapfrog_goals-0.0.6-cp311-cp311-macosx_11_0_arm64.whl (165.4 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

leapfrog_goals-0.0.6-cp311-cp311-macosx_10_14_x86_64.whl (167.7 kB view details)

Uploaded CPython 3.11macOS 10.14+ x86-64

File details

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

File metadata

  • Download URL: leapfrog_goals-0.0.6.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.6.tar.gz
Algorithm Hash digest
SHA256 37932f29d2d01729cf3d84af547d47c1422b3df22a42e4777b550dca5a6410d4
MD5 6c5cedef7e9ab97a9c2f37e6dfae6d62
BLAKE2b-256 d9b45ad368c9959a379117a0bfc8b00db2edfabd28bfe336704783a99cfa0fc7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-0.0.6-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 804e0e2d66e6d78f3a4cc1824b5657fc141dac51fb932ae577d91cafecf81dc4
MD5 cc77d18244f8d7a90e57ca1b496b269c
BLAKE2b-256 63f1f7595c7433437812793b505f9e644efb9916201f704f665ff7fe7e58cb5c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-0.0.6-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 e4e9324a58a00540f46cf93aab8e2089cfd42ee7a1c983dd0ea00777bec52746
MD5 4cdd723bd2eb68dfbf4ae486f3c5c888
BLAKE2b-256 e29b8105ff0e84f55aa7cd0099c62a95c2ae6784d77ec63baa64de371c5c7161

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-0.0.6-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1e68fde11a65d5e2bb102f0dd136394e85f444f9a5f1bc10de1cfff6aaa6e34a
MD5 5bb37ad1e2b8d8ae988d381efa63fa09
BLAKE2b-256 54f37f0f98e0d03f6cc4d3e656f64b2ec66690222732bc9c44414d1d6ace1169

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-0.0.6-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 14a1b4bea967921d8d19be7960ab78a604fb831eb7c8db5ce59aebcba20b7ab9
MD5 cee6d8211b5eca88424802f8b9139a80
BLAKE2b-256 c72d58a44b4f8d84d3c09b9373b75f1c3ae57294a25b7ffb9d23a39f82a74d29

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-0.0.6-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f016a12736061d1375c92fb151cf020a9c119da63f21dffd9c638cd5c1be97c2
MD5 97fba61d26e4f9e5e52f8f64ee518fbb
BLAKE2b-256 ab6ea2aa6e7966b607877a34917eaaa53e4dc5e2aa0a6e1ae20c3b39d7f3d625

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-0.0.6-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 ea39c7faf297b6236121e07b1512c2a33be34c4d3dc247f9a8fac8170754861d
MD5 c79dc120ce6b82824af528a9d34e2ef9
BLAKE2b-256 02dd01941325f6b3fff02fceee08e30ebab38d06b1eab0a57fce4ab0ae49bda5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-0.0.6-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 795946b86c3cc655e8da16937efda6146670a6d5d1721e567e64875f8abf3f66
MD5 845b4d72255162439de6e176c7f71846
BLAKE2b-256 07533e47da8daad5d8ae0167d74438782f0c1dc523493881353554758622f286

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for leapfrog_goals-0.0.6-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 2afa21fa6e1045087783a64727d5d73d0f2aa41e07db45e246eaf1dd8c52c66e
MD5 a34e5eca0e23ef1cf89c8f752a913f06
BLAKE2b-256 f4de99f8f2238fc54d33d01324ebd01c4bc1b146aadfdf2327a9d2071092bc26

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-0.0.6-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ad6ce213738d52ecd1ad12a78af2ab701525714430fb9554c739f0c12cce920f
MD5 a8974e54ee33c75bdedd2879b8b8a029
BLAKE2b-256 da15a6f49a224441a5b066af7c5dbeea6f1cbe83f8f4552e36fe063ac5be4955

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-0.0.6-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a39595e09589a5d9e9ae4b0638e0fb0d00089a54ee1682f6e666cc3035977277
MD5 6b482210dacbae9f94ce81ca2f03dbd7
BLAKE2b-256 d9b7ca37e24cd1186aa469ee4b4afd918c333c3554ec77072aae8bc61aacf6d6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-0.0.6-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7b4065f309a1206195f86f82dba6293d61cf25a5e058541f2062a464f7117e8f
MD5 dfa802d99f41643c8c425bc77664614b
BLAKE2b-256 be9e384a21fd07fb91c36ac84fbb1c1aedc9e3a523e32c2418a587f9e4ccd894

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-0.0.6-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 e4c9c205eb135ed311b33cfae3c263c4c149fe7f4462e959d829e190bff3e442
MD5 c670cb07280bd2a929f3fc5d726906cd
BLAKE2b-256 fe5c961cbf391fbf8360cc00b68774cd88de8ae94988aa95a7c6921a6ae56e1d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-0.0.6-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 8319932a7d05981fa26ab5f4a96d6ed2afd0891826cc22995704794fb1a6b05f
MD5 377a5e71bacf53ee30d4654c389b4cf5
BLAKE2b-256 5e7e5cc7189bfada00700c35a7c8f6d00930034341a33a4c911cce184a55f885

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for leapfrog_goals-0.0.6-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 12aaaafe6df7066ce17de415f87cea1dae018861a7a93f4fe34783cb4865b6f3
MD5 f1004ffea7f9defd0d44f7199cda9e88
BLAKE2b-256 9f042a247295798ab6b8444c9ee94b688701a8621a657a6cf6ac1982a7d8314a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-0.0.6-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1248315f162523088acde43b62fb2a41e9e4b113ccd154ef4b6e163aee2c70f8
MD5 bafc82f7a1b1992f2b9da74066089d5e
BLAKE2b-256 3b1bc831954426c7bfe0984a815766ea4c5cb53e5c5ef9ac31d36a24cf0f33a4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-0.0.6-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1626554dd95304e91fc23722f165d533e2c30279b55579c51124aada1963cf5a
MD5 5a1f98ac3bed6f21d5e45bd6654bc7c3
BLAKE2b-256 4bc4f41af2bfdf5f7ddbc52ce1d359cfd7d4944efac9df7afbb935dcbc7d30d4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-0.0.6-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e4678f900d9dda99816af347bcb36db249bf6a17d2511b74eb8bcdeda679be1d
MD5 562e539d2d166ad680b1756a29d919a2
BLAKE2b-256 9e093a516d3a60b86e68758719751e6131fa538effab66b73192d49d30f96d32

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-0.0.6-cp313-cp313-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 fb150d5df565360fcd2f8417e8da0a7456416aabe025ce7fe4b7de75ab935be8
MD5 d72bdf6c0cb611292e91c6c35d0815a6
BLAKE2b-256 cd2b05a0b42eed9d3fcf769c2363f6f609b907c2a42472e53caf8fbfaa94cf2f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-0.0.6-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 dc8ccd86c913576f3437cea06781b0869e93e4894f105084417efb2932d1e421
MD5 a97c6ed25c948d1c4ca81998ef539135
BLAKE2b-256 ad6a4565c7a794ad318cd9307b3fa45e2f1e2a68b2915f9647648b1a1a9713bb

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for leapfrog_goals-0.0.6-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 c628660ff364c252819d8f53bced541865a7e2c3d7d32239a435c69a9c3777a2
MD5 f2dc21ab4ed7a8e3dc62f7a855d50923
BLAKE2b-256 f9312fed54c83ede1c2b592c2c4554f81a35f1741ef8e4f40078e4ec718034e0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-0.0.6-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 01c470d653ebac82b306ba50d1e3e0efcbc7a55d2c265c209de8fe49bb047454
MD5 35a8ad948cd547f071b6473bae718f74
BLAKE2b-256 d32776563bd0505b6890e30abfb55cb921e96ad1391e8016a0b10abd9390aac8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-0.0.6-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1f6aa39daea1e114441c09422a46350df978cf0b7cd299661722875c81bfd77d
MD5 f12ba447f1ba56eb1f13f951b1a2340f
BLAKE2b-256 a7bb3d3ff0676337fadee99372321a88cbc3692dbc4854703da57aaaf98e55b4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-0.0.6-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bbe889e964bde7ef767e5a46283ad3ac4196d1459d3ef725d02405f7d4de51a5
MD5 b89aec8e94db2a393539980d1222b722
BLAKE2b-256 f960a17ff88d622c707cdaa178f3ed748ec1c2fe366fbaeb96b41a8356ccdbb4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-0.0.6-cp312-cp312-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 97c551674dc3f324fa6921f0e9c545485e62fde395814f2f38997bdd2dd8a185
MD5 7ff09cb41d429afd31c474a9d01a0172
BLAKE2b-256 930463ccb8770aff11ab86277a984d0966c6b838a1c82aab5ca911bbd3fb6c4c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-0.0.6-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 1560c6591647600728775c75cdfa728a40fd9faa27f2d4986756e91d7dd76dfb
MD5 2ffe0bbbf3911ec8fd1e409aa8b628fb
BLAKE2b-256 ee1f9468663d119a7c8f78f1ab2e711c84f2e7b7071a01d4426dfa4e5bcc9dd7

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for leapfrog_goals-0.0.6-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 f4e962fde9f7912187ad970ce336413558c06efc5ef597bc31921cf0e1c9368e
MD5 e50c7110d9f1cd49d5af2c52032c539a
BLAKE2b-256 83cf9cdaf8c09e5f0c70c7b6b551c8c572a584a0087af2cd98e68a090500c615

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-0.0.6-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 60918b3ca9843cca31e0ebe6c0f118be7bca5f947fca95af820f94006e55d531
MD5 60ce279304db1d750c0982b02a085f60
BLAKE2b-256 873239fb0c261b513cf16710bb49a27cccdb2ae6816148a390728b63c316ab92

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-0.0.6-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 32ce24deb7545e748ce90854bed2680c5a2ac5e17c9e4b768c8fea55839bb197
MD5 3848052db85cd492bc167ca1cc7de45b
BLAKE2b-256 32fa27a3eb521e6fff5819a63af70b8d0f34c6ccfb0bb8ef98bfd0e53caac63a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-0.0.6-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 37af15c87c44a81ecfb30947bcc1b19dee1c5fbc0f72c1b33753abe2075167ab
MD5 55d865ac9051bfce7179ec2370110271
BLAKE2b-256 700df6de275f11288270b738bc16d9f15556f17459e265977e73c70af3437d60

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for leapfrog_goals-0.0.6-cp311-cp311-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 270c4d1bfff61782f7329c63a7f47356a42a9b52bfaceb7b30f76296dbe2565e
MD5 386837b32fd19fc99443ccad93579ec1
BLAKE2b-256 2e97d60d65d1a64ffcfdc8c168c80eb4586550fca0211e40758c30e45ec3c32d

See more details on using hashes here.

Provenance

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