Skip to main content

Python interface for Leapfrog model

Project description

leapfrog-py

Installation

pip install leapfrog-py

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_py import read_h5_file

parameters_adult = read_h5_file("../r-package/tests/testthat/testdata/adult_parms_full.h5")
parameters_child = read_h5_file("../r-package/tests/testthat/testdata/child_parms_full.h5")

Run model

Here are a couple of ways to run the model

from leapfrog_py import run_model

# Default configuration is HivFullAgeStratification and output_years is range(1970, 2031)
run_model(parameters_adult)

# Can give another configuration but make sure the parameters match it
run_model(parameters_child, "ChildModel")

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

Run model from initial state

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

from leapfrog_py import run_model, run_model_from_state, get_time_slice

# Run model until year 2000
ret = run_model(parameters_adult, "HivFullAgeStratification", range(1970, 2001))

run_model_from_state(
    # parameters
    parameters_adult,

    # configuration
    "HivFullAgeStratification",
    
    # 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_py import run_model, run_model_from_state, get_time_slice

ret_single_year = run_model(parameters_adult, "HivFullAgeStratification", [1970])

for year in range(1970, 2031):
    ret_single_year = run_model_from_state(
        parameters_adult,
        "HivFullAgeStratification",
        get_time_slice(ret_first_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_py import run_model, run_model_single_year, get_time_slice

ret_single_year = get_time_slice(run_model(parameters_adult, "HivFullAgeStratification", [1970]), 0)

for year in range(1970, 2031):
    ret_single_year = run_model_single_year(
        parameters_adult,
        "HivFullAgeStratification",
        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 .

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

For local installation run pip install .

License

leapfrog-py 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_py-1.0.0.tar.gz (39.2 kB view details)

Uploaded Source

Built Distributions

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

leapfrog_py-1.0.0-cp314-cp314t-win_amd64.whl (145.5 kB view details)

Uploaded CPython 3.14tWindows x86-64

leapfrog_py-1.0.0-cp314-cp314t-win32.whl (129.7 kB view details)

Uploaded CPython 3.14tWindows x86

leapfrog_py-1.0.0-cp314-cp314t-musllinux_1_2_x86_64.whl (609.5 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

leapfrog_py-1.0.0-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (161.1 kB view details)

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

leapfrog_py-1.0.0-cp314-cp314t-macosx_11_0_arm64.whl (162.3 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

leapfrog_py-1.0.0-cp314-cp314t-macosx_10_15_x86_64.whl (165.7 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

leapfrog_py-1.0.0-cp314-cp314-win_amd64.whl (138.6 kB view details)

Uploaded CPython 3.14Windows x86-64

leapfrog_py-1.0.0-cp314-cp314-win32.whl (125.8 kB view details)

Uploaded CPython 3.14Windows x86

leapfrog_py-1.0.0-cp314-cp314-musllinux_1_2_x86_64.whl (607.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

leapfrog_py-1.0.0-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (159.4 kB view details)

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

leapfrog_py-1.0.0-cp314-cp314-macosx_11_0_arm64.whl (160.4 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

leapfrog_py-1.0.0-cp314-cp314-macosx_10_15_x86_64.whl (163.6 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

leapfrog_py-1.0.0-cp313-cp313-win_amd64.whl (134.0 kB view details)

Uploaded CPython 3.13Windows x86-64

leapfrog_py-1.0.0-cp313-cp313-win32.whl (121.9 kB view details)

Uploaded CPython 3.13Windows x86

leapfrog_py-1.0.0-cp313-cp313-musllinux_1_2_x86_64.whl (607.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

leapfrog_py-1.0.0-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (159.4 kB view details)

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

leapfrog_py-1.0.0-cp313-cp313-macosx_11_0_arm64.whl (160.3 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

leapfrog_py-1.0.0-cp313-cp313-macosx_10_14_x86_64.whl (163.3 kB view details)

Uploaded CPython 3.13macOS 10.14+ x86-64

leapfrog_py-1.0.0-cp312-cp312-win_amd64.whl (134.0 kB view details)

Uploaded CPython 3.12Windows x86-64

leapfrog_py-1.0.0-cp312-cp312-win32.whl (121.9 kB view details)

Uploaded CPython 3.12Windows x86

leapfrog_py-1.0.0-cp312-cp312-musllinux_1_2_x86_64.whl (607.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

leapfrog_py-1.0.0-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (159.4 kB view details)

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

leapfrog_py-1.0.0-cp312-cp312-macosx_11_0_arm64.whl (160.3 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

leapfrog_py-1.0.0-cp312-cp312-macosx_10_14_x86_64.whl (163.3 kB view details)

Uploaded CPython 3.12macOS 10.14+ x86-64

leapfrog_py-1.0.0-cp311-cp311-win_amd64.whl (134.2 kB view details)

Uploaded CPython 3.11Windows x86-64

leapfrog_py-1.0.0-cp311-cp311-win32.whl (121.8 kB view details)

Uploaded CPython 3.11Windows x86

leapfrog_py-1.0.0-cp311-cp311-musllinux_1_2_x86_64.whl (607.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

leapfrog_py-1.0.0-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (159.6 kB view details)

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

leapfrog_py-1.0.0-cp311-cp311-macosx_11_0_arm64.whl (160.8 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

leapfrog_py-1.0.0-cp311-cp311-macosx_10_14_x86_64.whl (163.5 kB view details)

Uploaded CPython 3.11macOS 10.14+ x86-64

leapfrog_py-1.0.0-cp310-cp310-win_amd64.whl (134.3 kB view details)

Uploaded CPython 3.10Windows x86-64

leapfrog_py-1.0.0-cp310-cp310-win32.whl (121.9 kB view details)

Uploaded CPython 3.10Windows x86

leapfrog_py-1.0.0-cp310-cp310-musllinux_1_2_x86_64.whl (608.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

leapfrog_py-1.0.0-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (159.8 kB view details)

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

leapfrog_py-1.0.0-cp310-cp310-macosx_11_0_arm64.whl (160.9 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

leapfrog_py-1.0.0-cp310-cp310-macosx_10_14_x86_64.whl (163.7 kB view details)

Uploaded CPython 3.10macOS 10.14+ x86-64

leapfrog_py-1.0.0-cp39-cp39-win_amd64.whl (134.7 kB view details)

Uploaded CPython 3.9Windows x86-64

leapfrog_py-1.0.0-cp39-cp39-win32.whl (122.3 kB view details)

Uploaded CPython 3.9Windows x86

leapfrog_py-1.0.0-cp39-cp39-musllinux_1_2_x86_64.whl (608.2 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

leapfrog_py-1.0.0-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (159.9 kB view details)

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

leapfrog_py-1.0.0-cp39-cp39-macosx_11_0_arm64.whl (161.0 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

leapfrog_py-1.0.0-cp39-cp39-macosx_10_14_x86_64.whl (163.7 kB view details)

Uploaded CPython 3.9macOS 10.14+ x86-64

leapfrog_py-1.0.0-cp38-cp38-win_amd64.whl (134.6 kB view details)

Uploaded CPython 3.8Windows x86-64

leapfrog_py-1.0.0-cp38-cp38-win32.whl (122.2 kB view details)

Uploaded CPython 3.8Windows x86

leapfrog_py-1.0.0-cp38-cp38-musllinux_1_2_x86_64.whl (608.2 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

leapfrog_py-1.0.0-cp38-cp38-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (159.9 kB view details)

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

leapfrog_py-1.0.0-cp38-cp38-macosx_11_0_arm64.whl (160.9 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

leapfrog_py-1.0.0-cp38-cp38-macosx_10_14_x86_64.whl (163.7 kB view details)

Uploaded CPython 3.8macOS 10.14+ x86-64

File details

Details for the file leapfrog_py-1.0.0.tar.gz.

File metadata

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

File hashes

Hashes for leapfrog_py-1.0.0.tar.gz
Algorithm Hash digest
SHA256 0ffb6e8381599e2bdeebad5363bdee33044f68ba63850fe021e536e42e7276ea
MD5 6d01a2c6621db46fcc493449793e037f
BLAKE2b-256 aa5af1657aa263e5e6de2a9fd307770212e689be3f5e79c89dc1bfc411068c05

See more details on using hashes here.

Provenance

The following attestation bundles were made for leapfrog_py-1.0.0.tar.gz:

Publisher: leapfrog-py-deploy.yaml on mrc-ide/frogger

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_py-1.0.0-cp314-cp314t-win_amd64.whl.

File metadata

File hashes

Hashes for leapfrog_py-1.0.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 0bc10bd4fd2c3133fdd1b9d7cafc88c04bc61e4b99b95600589ff228b790e996
MD5 f0424192896b55b6d9db2e4341c6ea69
BLAKE2b-256 5f6a59e7b1503d2c15e3a009d9af185be1863cbe32b68756007de72197a55712

See more details on using hashes here.

Provenance

The following attestation bundles were made for leapfrog_py-1.0.0-cp314-cp314t-win_amd64.whl:

Publisher: leapfrog-py-deploy.yaml on mrc-ide/frogger

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_py-1.0.0-cp314-cp314t-win32.whl.

File metadata

  • Download URL: leapfrog_py-1.0.0-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 129.7 kB
  • Tags: CPython 3.14t, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for leapfrog_py-1.0.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 cc0ff743c25ecab25b809dcdb9277ef445a32044dc9958675fbbbb04e390be67
MD5 41f6a0c0bbb82bf8ec5c7174d13c2698
BLAKE2b-256 9ee0721b2bfee99c9e0ed85fcb5fa09ccb403d62c66d2548348d356e81283371

See more details on using hashes here.

Provenance

The following attestation bundles were made for leapfrog_py-1.0.0-cp314-cp314t-win32.whl:

Publisher: leapfrog-py-deploy.yaml on mrc-ide/frogger

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_py-1.0.0-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for leapfrog_py-1.0.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d3c20418d278399fe824fb3a533a2b28a297c0a0a6bce11c025dffd000a7e375
MD5 32e7dcd639a517e5a5435c082b5e1860
BLAKE2b-256 0a40659b1394a6b431496327d470816a01dd19facb44fe77985476bab75a3c08

See more details on using hashes here.

Provenance

The following attestation bundles were made for leapfrog_py-1.0.0-cp314-cp314t-musllinux_1_2_x86_64.whl:

Publisher: leapfrog-py-deploy.yaml on mrc-ide/frogger

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_py-1.0.0-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for leapfrog_py-1.0.0-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5e5b85630b962ea2f08c4c7a0d6eef8b24d1e80a59f2dce9759eac48b272bf84
MD5 9a5d375d80fe9bab9eb9bc85bac40a2a
BLAKE2b-256 5f5190423f09958f181a7a6834dea25af547fe1c65a83b25e4eec530ef3c090e

See more details on using hashes here.

Provenance

The following attestation bundles were made for leapfrog_py-1.0.0-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: leapfrog-py-deploy.yaml on mrc-ide/frogger

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_py-1.0.0-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for leapfrog_py-1.0.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 270d8fe4042c919d5a90eb82aeaf0923530c5389e5602f5a2ca463b7ae21764c
MD5 6bdfa442ecd73df05e4bcfbdc9d30836
BLAKE2b-256 807fcfacbab1965fb5b5d828e79a929c63b7b07d6f114e84e9041b0117d86b99

See more details on using hashes here.

Provenance

The following attestation bundles were made for leapfrog_py-1.0.0-cp314-cp314t-macosx_11_0_arm64.whl:

Publisher: leapfrog-py-deploy.yaml on mrc-ide/frogger

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_py-1.0.0-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for leapfrog_py-1.0.0-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 d76b4ba1e6416934b7589f81071382d6e40efc2b5d6da8d99ba565f38376c05f
MD5 dee9aba9737fa5fcbc364180e2e42829
BLAKE2b-256 96d7a38c479840e8f51ce39e1e1a03aa56f5c9153a011e354c5df24d98a1d94e

See more details on using hashes here.

Provenance

The following attestation bundles were made for leapfrog_py-1.0.0-cp314-cp314t-macosx_10_15_x86_64.whl:

Publisher: leapfrog-py-deploy.yaml on mrc-ide/frogger

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_py-1.0.0-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: leapfrog_py-1.0.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 138.6 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for leapfrog_py-1.0.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 e4770ac611726fb9a36d5327f2d2333b637ece80aed78f398c333326e1620466
MD5 5b4be946c49b9ec736d039b892cf5299
BLAKE2b-256 48b3e304d99057a7eec3c531cfebe7ab48848ff0b67f57e453ddd87a175bd8b3

See more details on using hashes here.

Provenance

The following attestation bundles were made for leapfrog_py-1.0.0-cp314-cp314-win_amd64.whl:

Publisher: leapfrog-py-deploy.yaml on mrc-ide/frogger

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_py-1.0.0-cp314-cp314-win32.whl.

File metadata

  • Download URL: leapfrog_py-1.0.0-cp314-cp314-win32.whl
  • Upload date:
  • Size: 125.8 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_py-1.0.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 70f75e1b02469c0728cd3d44dceebd9b95807dd328e1d0e8c9463eaa8f45ea5f
MD5 92d22044d14a331b1aa6753352f9a5aa
BLAKE2b-256 ea4ead2c18a31b43c90cf9aa7b5731ad7c21b3dc21e1d9c04ac19b07954118aa

See more details on using hashes here.

Provenance

The following attestation bundles were made for leapfrog_py-1.0.0-cp314-cp314-win32.whl:

Publisher: leapfrog-py-deploy.yaml on mrc-ide/frogger

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_py-1.0.0-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for leapfrog_py-1.0.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 af999907bf97fecd2c56cb10b62b0f4655c74358edbebb415f803981983549b8
MD5 dbd79b7c066faf25538dcc1d733c14bf
BLAKE2b-256 3247724295ed9d8d505920fbe33fb3750235d84eccd3641f20f5c4fa5e2a7006

See more details on using hashes here.

Provenance

The following attestation bundles were made for leapfrog_py-1.0.0-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: leapfrog-py-deploy.yaml on mrc-ide/frogger

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_py-1.0.0-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for leapfrog_py-1.0.0-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 99fb9895bbf9a5099ee9798a70ccb8d5ab175cc172e79bf1e6b9a31da29a6ad9
MD5 d782fcbeb90ff8d6983ccce48326b894
BLAKE2b-256 9a5943e5a74b41385ddf29f8ea470c453e4f34cd813aaa62e33845040df1343d

See more details on using hashes here.

Provenance

The following attestation bundles were made for leapfrog_py-1.0.0-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: leapfrog-py-deploy.yaml on mrc-ide/frogger

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_py-1.0.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for leapfrog_py-1.0.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 70479e41bedb1213aaca6afe263224fd65c2b6dfb036e07c1dca05b8a0533d5f
MD5 19e63b1e77d108a17073e3aec2a2df6e
BLAKE2b-256 1a8c3e35e2d5ead176b40f007cd9a2952ae6d78ba3f210a30fe75ec3f8623a4f

See more details on using hashes here.

Provenance

The following attestation bundles were made for leapfrog_py-1.0.0-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: leapfrog-py-deploy.yaml on mrc-ide/frogger

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_py-1.0.0-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for leapfrog_py-1.0.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 d7d0536c70b8df7716a57fd119da5449f98da0f9f552828f8430b03f84f826d8
MD5 4d83a3b2359ddfea23d452352424d558
BLAKE2b-256 19c7890d62d66551969bc4f0de5cc561548ee251d1bdf99c62f89f65a349988e

See more details on using hashes here.

Provenance

The following attestation bundles were made for leapfrog_py-1.0.0-cp314-cp314-macosx_10_15_x86_64.whl:

Publisher: leapfrog-py-deploy.yaml on mrc-ide/frogger

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_py-1.0.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: leapfrog_py-1.0.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 134.0 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for leapfrog_py-1.0.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 ddec033aadda4ccfcf46719eb08ec477b09b5d07388af2a5dd04b1c13336adc3
MD5 420635df2d2db4ce8449aef7dfa5444a
BLAKE2b-256 0087d91c5a8853f4d58c356ea5bd04012abce0a3b36cf7ce587fb7e2fe46f091

See more details on using hashes here.

Provenance

The following attestation bundles were made for leapfrog_py-1.0.0-cp313-cp313-win_amd64.whl:

Publisher: leapfrog-py-deploy.yaml on mrc-ide/frogger

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_py-1.0.0-cp313-cp313-win32.whl.

File metadata

  • Download URL: leapfrog_py-1.0.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 121.9 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_py-1.0.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 c3efc6affb6a53cb249ac36884ad2841a5dde50cc7a55e272b9654d2a377c7b4
MD5 5ac726795133a2b007176e4bebca3c9a
BLAKE2b-256 a532f1e42d46a3833dee3367dfee665a69086e1a43e13bc673aa3785fc3b89c1

See more details on using hashes here.

Provenance

The following attestation bundles were made for leapfrog_py-1.0.0-cp313-cp313-win32.whl:

Publisher: leapfrog-py-deploy.yaml on mrc-ide/frogger

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_py-1.0.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for leapfrog_py-1.0.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 23d90cb837333cb51438b68432767613f1ce827df72a5115ba0459866d793588
MD5 27245e62d9d7ae1ebdca1c0dcf4bd83f
BLAKE2b-256 853bfa453e02a24572be3b9533b827ce54b0dbebda444b1de154b29ac1a2a12d

See more details on using hashes here.

Provenance

The following attestation bundles were made for leapfrog_py-1.0.0-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: leapfrog-py-deploy.yaml on mrc-ide/frogger

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_py-1.0.0-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for leapfrog_py-1.0.0-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 992ac2e075d2ccffaaf774f6b84aedd746482d61ad30cfc88fcc15a347c39849
MD5 21983aca3bf7a4b2863073b4667cd755
BLAKE2b-256 75308964ba6eed1ab170b3a189752a0e5e1f45904a502304c12f0c965b4e16a6

See more details on using hashes here.

Provenance

The following attestation bundles were made for leapfrog_py-1.0.0-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: leapfrog-py-deploy.yaml on mrc-ide/frogger

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_py-1.0.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for leapfrog_py-1.0.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3ce0327e2c1ef01526d7d1045d05233672a5f6c9a62739e1fd5de2b4d982900e
MD5 2ef677f5fd7c6cdfdb08e08e0b4135f4
BLAKE2b-256 72e72265567fae18f03d1ef35bb032781c1b917099be85405f8746dc9b6f52e5

See more details on using hashes here.

Provenance

The following attestation bundles were made for leapfrog_py-1.0.0-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: leapfrog-py-deploy.yaml on mrc-ide/frogger

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_py-1.0.0-cp313-cp313-macosx_10_14_x86_64.whl.

File metadata

File hashes

Hashes for leapfrog_py-1.0.0-cp313-cp313-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 89c65bbde1c85e53ee84fd47eb879fa688f1a1f85e40e4df711f2dea438edd79
MD5 d135e90d1f04cf0f2c069de5950553b4
BLAKE2b-256 3aac247d3bc9e47bf38c3892186c29e96065f3cf10471a90591e57348995a998

See more details on using hashes here.

Provenance

The following attestation bundles were made for leapfrog_py-1.0.0-cp313-cp313-macosx_10_14_x86_64.whl:

Publisher: leapfrog-py-deploy.yaml on mrc-ide/frogger

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_py-1.0.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: leapfrog_py-1.0.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 134.0 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for leapfrog_py-1.0.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 53d25908f61872e547d8bb50db1cfddba9a499483e7720d574c6c850eee3b404
MD5 3b8a2cc9f8cfd85823955ca036016dd7
BLAKE2b-256 baed099d6afedddfc93b298d71868e4b98fc7edfff53539217f67183d1c0abf6

See more details on using hashes here.

Provenance

The following attestation bundles were made for leapfrog_py-1.0.0-cp312-cp312-win_amd64.whl:

Publisher: leapfrog-py-deploy.yaml on mrc-ide/frogger

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_py-1.0.0-cp312-cp312-win32.whl.

File metadata

  • Download URL: leapfrog_py-1.0.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 121.9 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_py-1.0.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 d96cdaf9bee951bc90a011ff10e73c467fa6780c00ce83f0fc5ad84f7b5c842b
MD5 aea3229fa70c1e93f92ef2ad9b517854
BLAKE2b-256 32133a8eacada27b6cf62bca8414d093e68e06ab91b38ad62d9cba0ad67719bd

See more details on using hashes here.

Provenance

The following attestation bundles were made for leapfrog_py-1.0.0-cp312-cp312-win32.whl:

Publisher: leapfrog-py-deploy.yaml on mrc-ide/frogger

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_py-1.0.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for leapfrog_py-1.0.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 da11328d84808014822cfd063f3e59bcb2f65512eca727f6dd688e13c6679d0d
MD5 26b280fe289acb279318d8b899a31a6c
BLAKE2b-256 8bf445c979224a839fbff2570f0392e3e831fe2e68ef9ce3e6d2c14bc5a1669c

See more details on using hashes here.

Provenance

The following attestation bundles were made for leapfrog_py-1.0.0-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: leapfrog-py-deploy.yaml on mrc-ide/frogger

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_py-1.0.0-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for leapfrog_py-1.0.0-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 fcb5e53b157632914e64454bdbb0b24405fc19e674da0c7b6951d90b3d4baf9a
MD5 fcae97e020b8fc62e3a32fc4ff09b37a
BLAKE2b-256 9091dec4385a6a090de16a6eac73fe48ca3c39fbf338b3f8a4fe27add9288148

See more details on using hashes here.

Provenance

The following attestation bundles were made for leapfrog_py-1.0.0-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: leapfrog-py-deploy.yaml on mrc-ide/frogger

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_py-1.0.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for leapfrog_py-1.0.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 01b2e0eaab9119342077067c3695966cee3253618a174b4ec491adc005eafe95
MD5 c5557041a7fabc437c8806252f15d80b
BLAKE2b-256 767b18f9b551ab551a7be7ec9b1cdf6079f297675282d2f536a30dc566aa574e

See more details on using hashes here.

Provenance

The following attestation bundles were made for leapfrog_py-1.0.0-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: leapfrog-py-deploy.yaml on mrc-ide/frogger

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_py-1.0.0-cp312-cp312-macosx_10_14_x86_64.whl.

File metadata

File hashes

Hashes for leapfrog_py-1.0.0-cp312-cp312-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 87e64e6659e507ac928ce0e93aa6c00e50e426f4112d24622acb6d678d31802f
MD5 95e4417b4c7c448cd8dfd38cdd4f946c
BLAKE2b-256 8ad69a9dbbb74ff365b9707ab22cbee5c39d4730c28154518c50e4f0749f7c93

See more details on using hashes here.

Provenance

The following attestation bundles were made for leapfrog_py-1.0.0-cp312-cp312-macosx_10_14_x86_64.whl:

Publisher: leapfrog-py-deploy.yaml on mrc-ide/frogger

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_py-1.0.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: leapfrog_py-1.0.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 134.2 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for leapfrog_py-1.0.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 9e01b8e16d00055ec10457e88f371cdbbe070797b09c5beb59e48aed9af53249
MD5 a3d3963a79ce530a7cce731772d0e051
BLAKE2b-256 c756f50ef17c88fd820a26f5904ee02978d96856a0348a59f6862940a1a5237a

See more details on using hashes here.

Provenance

The following attestation bundles were made for leapfrog_py-1.0.0-cp311-cp311-win_amd64.whl:

Publisher: leapfrog-py-deploy.yaml on mrc-ide/frogger

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_py-1.0.0-cp311-cp311-win32.whl.

File metadata

  • Download URL: leapfrog_py-1.0.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 121.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_py-1.0.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 f003977e6e3df23abaf42b24c948316d5b3f8de5af6bc38f0dee623e78b681c5
MD5 59a8cacfc96fe8a8882f4983d072091e
BLAKE2b-256 1ff76ae090b6bc3cae3c90e8e22a188b947438318085afbeeb44c174279e294e

See more details on using hashes here.

Provenance

The following attestation bundles were made for leapfrog_py-1.0.0-cp311-cp311-win32.whl:

Publisher: leapfrog-py-deploy.yaml on mrc-ide/frogger

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_py-1.0.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for leapfrog_py-1.0.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4ef3187acf89561687cdada3674c6216cf27ba5bf417aadacaa5908394d6edac
MD5 3df9774581fa60aab1187d62892de79b
BLAKE2b-256 bb8fbb814437d8d7ea34328de280e3e2706bf2e04aaa0035c28fd51c8b38772a

See more details on using hashes here.

Provenance

The following attestation bundles were made for leapfrog_py-1.0.0-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: leapfrog-py-deploy.yaml on mrc-ide/frogger

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_py-1.0.0-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for leapfrog_py-1.0.0-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 07dda4d78eaedcb58c3482a61b8fc68924af5c20b9116ecdd6c64688c7b1781c
MD5 5b60258143ede10d40e996e6ff4f2a20
BLAKE2b-256 a040c8242abccc9969ccad7d2251c7aa442f7670728c159d2ab8f76d2b9f837d

See more details on using hashes here.

Provenance

The following attestation bundles were made for leapfrog_py-1.0.0-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: leapfrog-py-deploy.yaml on mrc-ide/frogger

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_py-1.0.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for leapfrog_py-1.0.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fa99d9dcf73ed8862b470ec85630447929d770d0b9f46a3d85b54296c47ac0ee
MD5 8f5befdf34de44ee7b11b1db57d36236
BLAKE2b-256 54b6b5596961fef005e1926d37cd22e5250a3194d14f2f4369a5f9e85a38604c

See more details on using hashes here.

Provenance

The following attestation bundles were made for leapfrog_py-1.0.0-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: leapfrog-py-deploy.yaml on mrc-ide/frogger

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_py-1.0.0-cp311-cp311-macosx_10_14_x86_64.whl.

File metadata

File hashes

Hashes for leapfrog_py-1.0.0-cp311-cp311-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 335e9f19cfb1f69823d55e0553b664ebe484869c5f2895f609b2c6e724e95cac
MD5 68ec03ac6a7de955b8b8d7a32adea4ce
BLAKE2b-256 b685884677ff11380882c9decc713d2b90778ed2476054e6fd582a8da019fd31

See more details on using hashes here.

Provenance

The following attestation bundles were made for leapfrog_py-1.0.0-cp311-cp311-macosx_10_14_x86_64.whl:

Publisher: leapfrog-py-deploy.yaml on mrc-ide/frogger

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_py-1.0.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: leapfrog_py-1.0.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 134.3 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for leapfrog_py-1.0.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 ca8f9acb3ea6c89a15f3bffe64a38e9909428b1d36c526a6cd2035af69700453
MD5 f9ee62d6d4406a4e5273148e00c9295a
BLAKE2b-256 13d518a86fc136fcd13819f84bb1c849c166c233449750498c9ee9dc14fa9f60

See more details on using hashes here.

Provenance

The following attestation bundles were made for leapfrog_py-1.0.0-cp310-cp310-win_amd64.whl:

Publisher: leapfrog-py-deploy.yaml on mrc-ide/frogger

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_py-1.0.0-cp310-cp310-win32.whl.

File metadata

  • Download URL: leapfrog_py-1.0.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 121.9 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_py-1.0.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 9352b3ec8419b84e2a722f479b913e3cc2ebce7166dd9586ec181a8b4e11f604
MD5 b870ceefeae29ae2d057ff8347cb2b39
BLAKE2b-256 899a3b20ee18cd8a9f980abfa0e903324232ae56300bc229f578d19497a8f51c

See more details on using hashes here.

Provenance

The following attestation bundles were made for leapfrog_py-1.0.0-cp310-cp310-win32.whl:

Publisher: leapfrog-py-deploy.yaml on mrc-ide/frogger

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_py-1.0.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for leapfrog_py-1.0.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5e36ad204f82f77d08f2469ed43bd321ddaeaa14208111bf3ecf2e803ca43309
MD5 8ef5721e9bb9336f64dcc5e67abc5338
BLAKE2b-256 5e7ac079c2567e2c82733924da145ae2d455bcee6faeb10985629bb048becb56

See more details on using hashes here.

Provenance

The following attestation bundles were made for leapfrog_py-1.0.0-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: leapfrog-py-deploy.yaml on mrc-ide/frogger

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_py-1.0.0-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for leapfrog_py-1.0.0-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 90ab36185d8f09116a528b1720ccb885163eee15ed037569d8d529873e50c25d
MD5 ce5b515007e2a6f3ca6a460bd22ca5ad
BLAKE2b-256 ee4be382fbc09261e63aef1e094fc1b7e32879ae18b702f16256ae9e7fb20111

See more details on using hashes here.

Provenance

The following attestation bundles were made for leapfrog_py-1.0.0-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: leapfrog-py-deploy.yaml on mrc-ide/frogger

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_py-1.0.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for leapfrog_py-1.0.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b4a2491d34deaa454c9cb3242d75df71bd80751e6c32d63f962f812401131d37
MD5 8ea9153fa271508f2954d7653a2445f6
BLAKE2b-256 8b3b52674dba9ed5d39abc818e94e849f98f3c564f674b75a56f60a0213ac254

See more details on using hashes here.

Provenance

The following attestation bundles were made for leapfrog_py-1.0.0-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: leapfrog-py-deploy.yaml on mrc-ide/frogger

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_py-1.0.0-cp310-cp310-macosx_10_14_x86_64.whl.

File metadata

File hashes

Hashes for leapfrog_py-1.0.0-cp310-cp310-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 508049df5e3ffa9e468c0602c344567865560bb97ee95d9477242a51c44b2a5a
MD5 bfe81e3414837549c062648d64bddd2e
BLAKE2b-256 23ee306f9a4db44eba53786365b89c41fdee9be589bde5b9abd6b7f41e64b455

See more details on using hashes here.

Provenance

The following attestation bundles were made for leapfrog_py-1.0.0-cp310-cp310-macosx_10_14_x86_64.whl:

Publisher: leapfrog-py-deploy.yaml on mrc-ide/frogger

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_py-1.0.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: leapfrog_py-1.0.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 134.7 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for leapfrog_py-1.0.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 b0c16d06c98d038a5dc8b8d74683f4ed235ad36d977a1cc49e8571864e7adea7
MD5 6a9f53d5a40d703805bc112073f344bc
BLAKE2b-256 62b3ea97e81bd82cc927f21db7c27186f7bdb5800426447544031b19377da0c8

See more details on using hashes here.

Provenance

The following attestation bundles were made for leapfrog_py-1.0.0-cp39-cp39-win_amd64.whl:

Publisher: leapfrog-py-deploy.yaml on mrc-ide/frogger

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_py-1.0.0-cp39-cp39-win32.whl.

File metadata

  • Download URL: leapfrog_py-1.0.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 122.3 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for leapfrog_py-1.0.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 56712e2ec6b1b73cd379d236e88a3e932959823e916747b650c5fad2d8d21ca1
MD5 c9a8a3cac0f8fb34ef437e7b5a66d0af
BLAKE2b-256 cecbbc973f52688b026e89af01682cf157c7a5d054b1120420c324f6cf646523

See more details on using hashes here.

Provenance

The following attestation bundles were made for leapfrog_py-1.0.0-cp39-cp39-win32.whl:

Publisher: leapfrog-py-deploy.yaml on mrc-ide/frogger

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_py-1.0.0-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for leapfrog_py-1.0.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6931e066022426fd4decd0ae5b9746b5690acc125353037bcf9b644c4dba902f
MD5 d3b32b0d24482b1ad18f5b65ee2fd3cf
BLAKE2b-256 a2563fd8bc1c1d666348603bba24e4cfca44c594560391fc59a501d4d89c5102

See more details on using hashes here.

Provenance

The following attestation bundles were made for leapfrog_py-1.0.0-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: leapfrog-py-deploy.yaml on mrc-ide/frogger

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_py-1.0.0-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for leapfrog_py-1.0.0-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d713df7aa20bdba21152be5a16522f903edef941f506dcd6da4f641dd4ed979f
MD5 cda994ac3173cc1257142f62e1a00abe
BLAKE2b-256 af23075119c280ae920380d7e2a72ddae973ec9220c4dce1e8bb3bdd2b36cf09

See more details on using hashes here.

Provenance

The following attestation bundles were made for leapfrog_py-1.0.0-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: leapfrog-py-deploy.yaml on mrc-ide/frogger

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_py-1.0.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for leapfrog_py-1.0.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4b0670cd28970e1a6fba378b7e12089196b9a9fe1b0351c46dfbfb48a75ed336
MD5 c533db8fe1d51eae95a714307a8a6eb9
BLAKE2b-256 2b7cc22f1ba20f38c1d5d5c1b7dcc1db99eb1c172162e7ca974efb05d07046e8

See more details on using hashes here.

Provenance

The following attestation bundles were made for leapfrog_py-1.0.0-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: leapfrog-py-deploy.yaml on mrc-ide/frogger

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_py-1.0.0-cp39-cp39-macosx_10_14_x86_64.whl.

File metadata

File hashes

Hashes for leapfrog_py-1.0.0-cp39-cp39-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 333125c2837e1e344771d75942e5582e8bab2c142359b9ad33ed97c22dc80d77
MD5 5059bb0c5e87b772eca6574427a79c61
BLAKE2b-256 688dcefc32bbd9494758763acca625532c248dda72fdbd11cc630a0b2727051d

See more details on using hashes here.

Provenance

The following attestation bundles were made for leapfrog_py-1.0.0-cp39-cp39-macosx_10_14_x86_64.whl:

Publisher: leapfrog-py-deploy.yaml on mrc-ide/frogger

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_py-1.0.0-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: leapfrog_py-1.0.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 134.6 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for leapfrog_py-1.0.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 3ca9d2a5efbd200aa99355f49493610561d8e9bc35eafe1f7ed164cbf4be7faf
MD5 82ae9503111d068904d3b76fac918272
BLAKE2b-256 fe97ea1f115dbc40053702fa2d657eb587f954b8bd9a53290a013a64aa8d2c16

See more details on using hashes here.

Provenance

The following attestation bundles were made for leapfrog_py-1.0.0-cp38-cp38-win_amd64.whl:

Publisher: leapfrog-py-deploy.yaml on mrc-ide/frogger

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_py-1.0.0-cp38-cp38-win32.whl.

File metadata

  • Download URL: leapfrog_py-1.0.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 122.2 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for leapfrog_py-1.0.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 29eb141035a9ce2f59e9893a731f46cb5bfb5f2360346d0d5d502fc0b7664928
MD5 5fb22c543f342979afdea3750153dbe3
BLAKE2b-256 3c908deb763a16ec7419a9eadd327f31c138b28865186d78fda5e53ca5fe985c

See more details on using hashes here.

Provenance

The following attestation bundles were made for leapfrog_py-1.0.0-cp38-cp38-win32.whl:

Publisher: leapfrog-py-deploy.yaml on mrc-ide/frogger

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_py-1.0.0-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for leapfrog_py-1.0.0-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 048b15208a22330ac1b6b24b8aec3966fde8b6b76534d263643893a0d21f89ac
MD5 d19b9491612dc680dc0567ae1553cb21
BLAKE2b-256 2475bc9aa3e4672b531553985ae6d9c1648e45425e757bceb934d25445625095

See more details on using hashes here.

Provenance

The following attestation bundles were made for leapfrog_py-1.0.0-cp38-cp38-musllinux_1_2_x86_64.whl:

Publisher: leapfrog-py-deploy.yaml on mrc-ide/frogger

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_py-1.0.0-cp38-cp38-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for leapfrog_py-1.0.0-cp38-cp38-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f6e69b2ad121a7ebf8ecc57e2937f482cba4a4fa438a65149146b7a11950f00d
MD5 ff33d4bd5134906173f8eb10861881bf
BLAKE2b-256 aa005819f103fd740a0b6a3d42313c8bff16f831fe8f1b820d23230e4c3f5192

See more details on using hashes here.

Provenance

The following attestation bundles were made for leapfrog_py-1.0.0-cp38-cp38-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: leapfrog-py-deploy.yaml on mrc-ide/frogger

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_py-1.0.0-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for leapfrog_py-1.0.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3be09b6d9ded819b6dabe562165fd3725856a0a1abf358243156c28769558d3f
MD5 72d2a8eee22546f788ded919ad9a4108
BLAKE2b-256 8848c51a7325ee54ee722880f3dafd05f3995d9853acdf39cbabbe528df82b30

See more details on using hashes here.

Provenance

The following attestation bundles were made for leapfrog_py-1.0.0-cp38-cp38-macosx_11_0_arm64.whl:

Publisher: leapfrog-py-deploy.yaml on mrc-ide/frogger

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_py-1.0.0-cp38-cp38-macosx_10_14_x86_64.whl.

File metadata

File hashes

Hashes for leapfrog_py-1.0.0-cp38-cp38-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 63df411722f255b22e4e66fa6c5ebb843cbda0a14a9fd065f2917354f6798da9
MD5 00f869d35002763e6ffbccb2b3b8d4c1
BLAKE2b-256 df778f4cef707b03db778386be84e94666ae8c06c84130f4a6c8776587471538

See more details on using hashes here.

Provenance

The following attestation bundles were made for leapfrog_py-1.0.0-cp38-cp38-macosx_10_14_x86_64.whl:

Publisher: leapfrog-py-deploy.yaml on mrc-ide/frogger

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