Skip to main content

No project description provided

Project description

leapfrog-py

PyPI - Version PyPI - Python Version


Table of Contents

Installation

pip install leapfrog-py

Usage

You can use leapfrog-py to run a leapfrog simulation in two ways. Run for multiple years using:

from leapfrog_py import run_leapfrog

run_leapfrog(parameters)

This will run from 1970 to 2030 inclusive by default with 10 HIV time steps per year. You can also run for a single year using:

from leapfrog_py import set_initial_state, project_single_year

set_initial_state(parameters, state)
for i in range(1, 61):
    project_single_year(i, parameters, state)

Parameters and state are both dictionaries of numpy arrays.

Development

Prerequisites

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

I use hatch to manage the project, but this should work without it if you prefer.

If you're using an IDE you might need to set the Python interpreter to the one in the hatch virtual environment. See instructions for VSCode here.

We use Eigen for linear algebra library, install this on linux

sudo apt-get install libeigen3-dev

on windows download from https://eigen.tuxfamily.org/index.php?title=Main_Page, extract the archive and build and install it using cmake. From the extracted dir:

mkdir build
cd build
cmake ..
cmake --build . --target install

Building, installing and running tests

Use hatch

hatch shell
hatch run install
hatch run test
hatch run cov
hatch run install_and_test
hatch run lint:fmt
hatch run lint:style
hatch run lint:typing
hatch run lint:all

To build with pipx

pipx run build

Or simply (in a virtualenv, ideally)

pip install .

License

leapfrog-py is distributed under the terms of the 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 Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

leapfrog_py-0.0.1-pp310-pypy310_pp73-win_amd64.whl (2.3 MB view details)

Uploaded PyPy Windows x86-64

leapfrog_py-0.0.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.3 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

leapfrog_py-0.0.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl (2.2 MB view details)

Uploaded PyPy macOS 11.0+ ARM64

leapfrog_py-0.0.1-pp310-pypy310_pp73-macosx_10_15_x86_64.whl (2.2 MB view details)

Uploaded PyPy macOS 10.15+ x86-64

leapfrog_py-0.0.1-pp39-pypy39_pp73-win_amd64.whl (2.3 MB view details)

Uploaded PyPy Windows x86-64

leapfrog_py-0.0.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.3 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

leapfrog_py-0.0.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl (2.2 MB view details)

Uploaded PyPy macOS 11.0+ ARM64

leapfrog_py-0.0.1-pp39-pypy39_pp73-macosx_10_15_x86_64.whl (2.2 MB view details)

Uploaded PyPy macOS 10.15+ x86-64

leapfrog_py-0.0.1-pp38-pypy38_pp73-win_amd64.whl (2.3 MB view details)

Uploaded PyPy Windows x86-64

leapfrog_py-0.0.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.3 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

leapfrog_py-0.0.1-pp38-pypy38_pp73-macosx_11_0_arm64.whl (2.2 MB view details)

Uploaded PyPy macOS 11.0+ ARM64

leapfrog_py-0.0.1-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (2.2 MB view details)

Uploaded PyPy macOS 10.9+ x86-64

leapfrog_py-0.0.1-cp312-cp312-win_amd64.whl (2.3 MB view details)

Uploaded CPython 3.12 Windows x86-64

leapfrog_py-0.0.1-cp312-cp312-win32.whl (2.2 MB view details)

Uploaded CPython 3.12 Windows x86

leapfrog_py-0.0.1-cp312-cp312-musllinux_1_2_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ x86-64

leapfrog_py-0.0.1-cp312-cp312-musllinux_1_2_i686.whl (3.4 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

leapfrog_py-0.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

leapfrog_py-0.0.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (2.3 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ i686

leapfrog_py-0.0.1-cp312-cp312-macosx_11_0_arm64.whl (2.2 MB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

leapfrog_py-0.0.1-cp312-cp312-macosx_10_9_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.12 macOS 10.9+ x86-64

leapfrog_py-0.0.1-cp311-cp311-win_amd64.whl (2.3 MB view details)

Uploaded CPython 3.11 Windows x86-64

leapfrog_py-0.0.1-cp311-cp311-win32.whl (2.2 MB view details)

Uploaded CPython 3.11 Windows x86

leapfrog_py-0.0.1-cp311-cp311-musllinux_1_2_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ x86-64

leapfrog_py-0.0.1-cp311-cp311-musllinux_1_2_i686.whl (3.4 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

leapfrog_py-0.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

leapfrog_py-0.0.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (2.3 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686

leapfrog_py-0.0.1-cp311-cp311-macosx_11_0_arm64.whl (2.2 MB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

leapfrog_py-0.0.1-cp311-cp311-macosx_10_9_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

leapfrog_py-0.0.1-cp310-cp310-win_amd64.whl (2.3 MB view details)

Uploaded CPython 3.10 Windows x86-64

leapfrog_py-0.0.1-cp310-cp310-win32.whl (2.2 MB view details)

Uploaded CPython 3.10 Windows x86

leapfrog_py-0.0.1-cp310-cp310-musllinux_1_2_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ x86-64

leapfrog_py-0.0.1-cp310-cp310-musllinux_1_2_i686.whl (3.4 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

leapfrog_py-0.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

leapfrog_py-0.0.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (2.3 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686

leapfrog_py-0.0.1-cp310-cp310-macosx_11_0_arm64.whl (2.2 MB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

leapfrog_py-0.0.1-cp310-cp310-macosx_10_9_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

leapfrog_py-0.0.1-cp39-cp39-win_amd64.whl (2.2 MB view details)

Uploaded CPython 3.9 Windows x86-64

leapfrog_py-0.0.1-cp39-cp39-win32.whl (2.2 MB view details)

Uploaded CPython 3.9 Windows x86

leapfrog_py-0.0.1-cp39-cp39-musllinux_1_2_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ x86-64

leapfrog_py-0.0.1-cp39-cp39-musllinux_1_2_i686.whl (3.4 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

leapfrog_py-0.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

leapfrog_py-0.0.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (2.3 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686

leapfrog_py-0.0.1-cp39-cp39-macosx_11_0_arm64.whl (2.2 MB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

leapfrog_py-0.0.1-cp39-cp39-macosx_10_9_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

leapfrog_py-0.0.1-cp38-cp38-win_amd64.whl (2.3 MB view details)

Uploaded CPython 3.8 Windows x86-64

leapfrog_py-0.0.1-cp38-cp38-win32.whl (2.2 MB view details)

Uploaded CPython 3.8 Windows x86

leapfrog_py-0.0.1-cp38-cp38-musllinux_1_2_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ x86-64

leapfrog_py-0.0.1-cp38-cp38-musllinux_1_2_i686.whl (3.4 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ i686

leapfrog_py-0.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

leapfrog_py-0.0.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (2.3 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686

leapfrog_py-0.0.1-cp38-cp38-macosx_11_0_arm64.whl (2.2 MB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

leapfrog_py-0.0.1-cp38-cp38-macosx_10_9_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

File details

Details for the file leapfrog_py-0.0.1-pp310-pypy310_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for leapfrog_py-0.0.1-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 61a7fb4cf62ec0ece658467354664e52ed02811d0007752f54e78dc28731fb4a
MD5 dc7d47b2ecba8241f0f836c808aec1a9
BLAKE2b-256 454bb19e98729dceab59d4e5bfef0d76cf7a87fdf1130a577ad0bb634405510f

See more details on using hashes here.

File details

Details for the file leapfrog_py-0.0.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for leapfrog_py-0.0.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 99c918106bd645f38f808d93732834453ccc87970238c407cf30da61fcfa5c02
MD5 8eaea92006e483f09fd1ac8f2a7b17b9
BLAKE2b-256 5689909c5177c528ef207c73d8b0a257f66514e8a957db5bbf1f0987cd3e2fdd

See more details on using hashes here.

File details

Details for the file leapfrog_py-0.0.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for leapfrog_py-0.0.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 505275e387938516567999aa864dbac08de47db7a44405c439eab56b694a462f
MD5 17287eb06daec82034f285c584373a62
BLAKE2b-256 c7f431a750b5db3672a730ea51e8599c5d2a2bac5eff7035e9858acdeb825b6e

See more details on using hashes here.

File details

Details for the file leapfrog_py-0.0.1-pp310-pypy310_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for leapfrog_py-0.0.1-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 61df784b55181e5a6045c1ee4f55dda5534cdea587c5b30222490fba00b00830
MD5 39a0dc64bf54554dd6547711e96ffbdf
BLAKE2b-256 0ce4e3bdda5fa5c7f3a13e56f4a6a2fd695dccdc8b0186ca88ad77ee3986a818

See more details on using hashes here.

File details

Details for the file leapfrog_py-0.0.1-pp39-pypy39_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for leapfrog_py-0.0.1-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 8086ba8ba66f84566619aff0eab03d88a760f174222bb50c42d62ae663b68654
MD5 57a3bf09bfcfcd343083f51579b4c374
BLAKE2b-256 de127f433af9e27e7cfa558d39ccfc804c0c06e2ae953c5ed8563a2e17750d72

See more details on using hashes here.

File details

Details for the file leapfrog_py-0.0.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for leapfrog_py-0.0.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8e134515abadf4152d1a7d7f4bb1d40f62ef12f38692efc14840cb81ca1b9030
MD5 da995be42dd17ef34ca2fc348b443382
BLAKE2b-256 4402a346f7595aac1bbe48ad064e81c74368c3f0821a565f9e3baa126c31b9c5

See more details on using hashes here.

File details

Details for the file leapfrog_py-0.0.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for leapfrog_py-0.0.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cc7e8c889bbb922159f5b156f565b75870733f4015fe673872a8b05b43fbae90
MD5 cd80cf5c99fb9341a89e6a7780e4496d
BLAKE2b-256 0e168bbd489237fe51c820a4d3ff2f9f346325d22a5bd96a4f275c84108af09f

See more details on using hashes here.

File details

Details for the file leapfrog_py-0.0.1-pp39-pypy39_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for leapfrog_py-0.0.1-pp39-pypy39_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 bd15447fd8f9fa5c73cb6c0204f02ff36f347f55499f8a3fa4b7e22ec1504282
MD5 eb3f732e8a7a1de6e00610a5e47e2957
BLAKE2b-256 7f47257da089c9aea910f6730f7b2473b03e791d4bb4ece8abc0b0ee3abbb396

See more details on using hashes here.

File details

Details for the file leapfrog_py-0.0.1-pp38-pypy38_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for leapfrog_py-0.0.1-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 f2e0acfa7169583a9c2e72b2c89011d2b6c65e6acd6645724ed3915e17e4f111
MD5 4e588a87f5fc77918113ed72b5d779ed
BLAKE2b-256 a2d9b70cd95ed1a1f23674425643d40daf455deec40f3cb9df4670e05bf7f58f

See more details on using hashes here.

File details

Details for the file leapfrog_py-0.0.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for leapfrog_py-0.0.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 907800624b1a5c43f07210a41068806c247511786430cd6a7db276a8c1c86315
MD5 774f055d8bbf2234e09b9e0d55d7daaa
BLAKE2b-256 9760ad3ee36cb4dbb175cc3d89cfe5814ddd47aa30f5c141fbba841b64b9a85a

See more details on using hashes here.

File details

Details for the file leapfrog_py-0.0.1-pp38-pypy38_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for leapfrog_py-0.0.1-pp38-pypy38_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e392bbf6c41dd35052e5572c0c79ea985b8a4cf0e81994ebccc7baa284ab8876
MD5 adab3bfbd53fad48aa003ab112399f6a
BLAKE2b-256 cfc229ecc0cc8ceb870488a4df30eb318f868f0c67d67c7382d3d1a12f2b227a

See more details on using hashes here.

File details

Details for the file leapfrog_py-0.0.1-pp38-pypy38_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for leapfrog_py-0.0.1-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 920daa59a6eb2ea31b3267e46d64c02be27727bdc80b468bd45e969ebfdb57fe
MD5 45a4ec6237c5a97cee2bd1b61446164e
BLAKE2b-256 c3b1a719ddda92defa796d58c89df7ba5b10507d8934cdc9cd2ea3200b3e15e1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for leapfrog_py-0.0.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 1cc4b5e2c5978507a1ea6f02c4512ad078786e0fa1d78df2bf51dfd34acbd1f6
MD5 36b1381907d8682441f3048165f9257d
BLAKE2b-256 f61cdd92f206985af734809908c2d964e8dd873e41af5e130f8d78e6c21d9316

See more details on using hashes here.

File details

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

File metadata

  • Download URL: leapfrog_py-0.0.1-cp312-cp312-win32.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.4

File hashes

Hashes for leapfrog_py-0.0.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 a878bbf4286bc3654c4981ee979d29de5839c546057305c04b4c0ab7005181d6
MD5 759e5631e46b709bfeedc19285f1f1c0
BLAKE2b-256 1db9d9dc43c4e78b93d4f3671edfdae3156443169c17e5cbcf942f9b0be2c442

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for leapfrog_py-0.0.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 326ce2959932a189cd2e5f15585e992a1f326ea1c541417b6dc3681d18911c5a
MD5 6566674dd19d63328fade17fd03459b5
BLAKE2b-256 1e6f676752c9322757b65ddee3b00b567ca62103b0e2d43d8f7f3593de409ca6

See more details on using hashes here.

File details

Details for the file leapfrog_py-0.0.1-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for leapfrog_py-0.0.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 299a6ffb20a309c9e961557b522f6d9b7dcf49af0d5cb85a48b13a78df1c6848
MD5 8d93a785a3b3fc2c94d9692bd4e257a3
BLAKE2b-256 ec308fc84c1867856909d317a6ae07bcf57dc861d62041942b35720beed9625f

See more details on using hashes here.

File details

Details for the file leapfrog_py-0.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for leapfrog_py-0.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cec97e87f0335f1bce0e70d31f3ccc97f6f48c361b873d40101a3989a0a48b5b
MD5 c7a382d5fe1d76a2dee7f205061d77ce
BLAKE2b-256 ec0437c14f989aa4909ec12794ad2c0fe3bc9b0f004c7b037b94a0a760f41f7c

See more details on using hashes here.

File details

Details for the file leapfrog_py-0.0.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for leapfrog_py-0.0.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 afa70a53068d77596cd4eef806c4d5bf4ca7e4a784cdcb6a104eaf1eb2b48520
MD5 29d4dd442a135a52b6ef31c761acf970
BLAKE2b-256 2e5611a77197cbcaf5ebda0ed04e67f056fc0dbbf2e79ba3ef01eed1f6df4cea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for leapfrog_py-0.0.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6ed1c67eced13920caff5890c04ec7ff89d70ec8de7472a2e80cde7e2756f7f2
MD5 caaff1ab088fce747893a235aa64b7e9
BLAKE2b-256 8a7af9eed3e6bd6e79ea6368af5ce69758991ce8d135bcd3ec6e67dab6b015fa

See more details on using hashes here.

File details

Details for the file leapfrog_py-0.0.1-cp312-cp312-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for leapfrog_py-0.0.1-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 bc9b74984711158570652c2062104fd1ee8879804708e4557189bae8c7aa8408
MD5 a805d51a463ca12a662585634299795a
BLAKE2b-256 bf3d63f41ba5ab9cb07ab641be25ffe6bd8b29a964407eb29f03f402ebf1898b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for leapfrog_py-0.0.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 7f17035b15740fd7c78645c5ed4e823663de6f62fa3dec0f85de496f97940a23
MD5 4d2e4751c01c31ae53181b1122b2a84a
BLAKE2b-256 2c87d6ac51978fc6de870998c1a98044eab356558e037ef2f69ac6c26600b7ae

See more details on using hashes here.

File details

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

File metadata

  • Download URL: leapfrog_py-0.0.1-cp311-cp311-win32.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.4

File hashes

Hashes for leapfrog_py-0.0.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 1096fae2a36464da01972ee0f4e63a2f8a6073e868985bd3772279425256ae8f
MD5 81fa54a66e530f9e99e470c708bd8a77
BLAKE2b-256 070ffa952be93cd304bd9bf97973eed3be1e75ab20eebde731a0d2512eed33f5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for leapfrog_py-0.0.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d4de0b3c78e7d5009e38efc4580b12a3bb9ca6b675c63116fe9768d4cb07716f
MD5 ec861ae788083c8c4bd2e0ed24d4ffad
BLAKE2b-256 40436e64f5e3803284a524a8740bd611399efd78be12c255e387d00898b0f13a

See more details on using hashes here.

File details

Details for the file leapfrog_py-0.0.1-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for leapfrog_py-0.0.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2d850c4cfa1eadfb98675d25e15dfebc7a399abaf7eedf0802b05916f3b27822
MD5 9daefff5a822c43f4bf9a422f6481373
BLAKE2b-256 909cc0be60828c142bd85b6e64e984fac671a8b61583215115437c22b9593ff4

See more details on using hashes here.

File details

Details for the file leapfrog_py-0.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for leapfrog_py-0.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0424794e4ec2e70e58e0d5370efe20a943f4a2192cfa154a40b04ebd5d47ccb7
MD5 15e48aaebb9ca41a8569c5cf55a1131c
BLAKE2b-256 ef2c13e1aee4674659e74bc9ab3753ad38ce632ddb066e0ad5abfcaa1eef1843

See more details on using hashes here.

File details

Details for the file leapfrog_py-0.0.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for leapfrog_py-0.0.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d3658f49c9b772d8a44baf8af7a4b8c8a87df46fce215e916a8f34933403f502
MD5 816cfa029caf529135831114ae308a3e
BLAKE2b-256 a2f768082cf339ec3486ab56450df9055508f28f997809719d8471576abb5d71

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for leapfrog_py-0.0.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6bcb04462868ff7b0a52df3051b8b92e9e1b5d2ee6e9c3c0c1f88a760364bb32
MD5 f39003315423a9d92ece37715084c402
BLAKE2b-256 c4c34ce2b92a3da9427834414855e3c007ab4c11c1ac6c0c2feb8b985d7be4ef

See more details on using hashes here.

File details

Details for the file leapfrog_py-0.0.1-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for leapfrog_py-0.0.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b73c1c24781db292df81dc40ff14e6ab60182016d75615ac17faf569e2ee5a2d
MD5 5eec43778d1aa41f9e7608c1ee74ded4
BLAKE2b-256 a691070039708829b6480979effe3120a9e3b438523b132e8be5d9d316e1d168

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for leapfrog_py-0.0.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 59100c21a7e1b6997b9a7ca4c3a0583069ffcec976bdd9c41938dde3b537e1f8
MD5 35f7922f5bb84f9ce923e7453f426370
BLAKE2b-256 c5e519beea5a5c64d47722b7a8775baea0d53167972c887b54056e8c036f9183

See more details on using hashes here.

File details

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

File metadata

  • Download URL: leapfrog_py-0.0.1-cp310-cp310-win32.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.4

File hashes

Hashes for leapfrog_py-0.0.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 34bdcaf0d892eee4f62709e635bd3079ad0cee0ca3045124618d19daf88d17bd
MD5 b67c695c3a5055502b261ab4eb5affe8
BLAKE2b-256 74dbac704a18cc95e97742febf8dd822ba08760e1339d29eeb7322814583e7ff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for leapfrog_py-0.0.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 aac49f6c20fa774cd0bc1b842f43a51d01090fa2152b9735b621ceb2db01ebcf
MD5 a0f46b7eca0b6d145f5315003f0e7848
BLAKE2b-256 4cf3f6ce306a07e1a3601a1830e45259f9f0b54a3450ab25953268572bd13aff

See more details on using hashes here.

File details

Details for the file leapfrog_py-0.0.1-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for leapfrog_py-0.0.1-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4988924a1659a06f74af52eabbc1c3f7d3c741815f9feba8a0a0c8d8447b31ca
MD5 4245f207046d94ee123ee758706800e6
BLAKE2b-256 8062f9f676f91658b0bfa901758a60b817b615341a47115d9ed84702a593c18d

See more details on using hashes here.

File details

Details for the file leapfrog_py-0.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for leapfrog_py-0.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 436603cfaab05340c61a3686a8430c3f22dd3955cb521a9133546692c44b2f54
MD5 c9ae28cb2b49d87f1d1a75ca8c506c32
BLAKE2b-256 d3cac892dd7d456dc70100e8b5f003b0e3a0226c1d7ffb62e9c16ca34a067a62

See more details on using hashes here.

File details

Details for the file leapfrog_py-0.0.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for leapfrog_py-0.0.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 78dee35c95711cd7c4f6b141b5ec32cefa919c48bb9f321f4f2a34eb0b1776e0
MD5 02c04cbfba407d1ff70a46e0cecf219c
BLAKE2b-256 47fe57408c822fd8a70f99657119e127fdf22c97fadf7b3b0debac2c5bf1dde5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for leapfrog_py-0.0.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 adcbfc6f89caaf7e163a1c7f97169ad33955f46be51617cbc2b4c0868c708b8e
MD5 39e0256228a913d8843daac42f59da94
BLAKE2b-256 b1140f9850f2f115c4f074dd144f1027b8fc3846704e4e472469939224b6e17e

See more details on using hashes here.

File details

Details for the file leapfrog_py-0.0.1-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for leapfrog_py-0.0.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 71fa31aeab971f3ad94db1836b7c3e20f4b981366372c86770603b0eb8948530
MD5 53bdc80e88e511f82d88465a66280201
BLAKE2b-256 27dd27afcfd54f3be6aa19d5e752666b2c55ec3c3c4f6939c47f23b0dba19018

See more details on using hashes here.

File details

Details for the file leapfrog_py-0.0.1-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for leapfrog_py-0.0.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 25d77a4cc651d8e028e946f583084e86c0208d9c15b110e8a7a0d83946689166
MD5 ea37cf835cfd19de85b81766d8d7e594
BLAKE2b-256 b58967f705fcb30979361b1ece662e68ac04200204fecb25b0381c11baf06c12

See more details on using hashes here.

File details

Details for the file leapfrog_py-0.0.1-cp39-cp39-win32.whl.

File metadata

  • Download URL: leapfrog_py-0.0.1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.4

File hashes

Hashes for leapfrog_py-0.0.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 8591c1f94f05816078a885484b1be739b437604b6265b7a205f349ff9b0cbdbe
MD5 3c662666c16aeec6dbccd1a47fa923ee
BLAKE2b-256 987f9b0795d05feceae33bf24771be2b4fc5d4a51a0179aabbf8f0d066518c3a

See more details on using hashes here.

File details

Details for the file leapfrog_py-0.0.1-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for leapfrog_py-0.0.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 704518cb0459e387f35e44d4c7ed23d25e3e9bde2d3682ba057a18e0b02abe68
MD5 19b8cb6db98bf900e05fb992d47f255a
BLAKE2b-256 c136dc0257d620b57121bb6b4a8890b5d3d5b6c5dad21f0a140fe2627cdbfb20

See more details on using hashes here.

File details

Details for the file leapfrog_py-0.0.1-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for leapfrog_py-0.0.1-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 248cf02741d858855556daf1245fe1ff967c80ad9df0841125f2b7b15a88bd34
MD5 89453ada082cc473d3e9cfa19c318a42
BLAKE2b-256 c12f1d7e625932c73286a3f1414d28938a403a6038ecf3d6182a281404e610c4

See more details on using hashes here.

File details

Details for the file leapfrog_py-0.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for leapfrog_py-0.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e9011c86016a4406fef9e5ae5395ea802e51452aca9af04f80b80cac2a768cdd
MD5 6ade535bcb681bbcb3b0054df1bcf4a1
BLAKE2b-256 4822473a69400ed6ddf6b5a8b6794c6da061dffa9ef3106b9a855b50c823467b

See more details on using hashes here.

File details

Details for the file leapfrog_py-0.0.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for leapfrog_py-0.0.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7db4bac7db11bacec824f2001c2893534f48fa4fe158a3117e2f9d15833b8b81
MD5 ec5b21c644c3bdc1d1f52de37ed3dad1
BLAKE2b-256 3761c2bb0a3db66df51f2c81b7112d4e2d193593fdc50bd25aa8c8272ad18452

See more details on using hashes here.

File details

Details for the file leapfrog_py-0.0.1-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for leapfrog_py-0.0.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 63d2552fd3a7ee404ce3d7a28bea168efe1551cfb86e689311073d8cf7ff256a
MD5 04e3a85ad0b7dbcf8b5b62e65dd0f71f
BLAKE2b-256 2315edd9ec451eca8996a4fa9c9c52172d7a9d84ea1892e9d6cc24dfd80a9408

See more details on using hashes here.

File details

Details for the file leapfrog_py-0.0.1-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for leapfrog_py-0.0.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3719ec2ce241db88a219bb1744527a01727a880351231d314c97e4724ec0518e
MD5 ebc0bbe8efa3ac49c6ec91e0e4fc8e8d
BLAKE2b-256 827ead50a8a4d1871c23ee9d04d81eb8a1a83ba7bbfe0f0787e1c17928cdece3

See more details on using hashes here.

File details

Details for the file leapfrog_py-0.0.1-cp38-cp38-win_amd64.whl.

File metadata

File hashes

Hashes for leapfrog_py-0.0.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 8c0b0a079fb6df48d39417225f62feddc7457f29d791dacc3466b5ab3ee3a124
MD5 62d0351baf4b8aef1da2b643a9cf7b6e
BLAKE2b-256 c937b0ca547615fac74c7dc3dd58a0e11f1980418062d7ea0cd7fe0c77a3da78

See more details on using hashes here.

File details

Details for the file leapfrog_py-0.0.1-cp38-cp38-win32.whl.

File metadata

  • Download URL: leapfrog_py-0.0.1-cp38-cp38-win32.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.4

File hashes

Hashes for leapfrog_py-0.0.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 845008ab2ddb92b1c535bee596930395e94d842d7833973294f7f77848e6945a
MD5 68036c657d5f460628cd0d848909cc3d
BLAKE2b-256 f3f2694c1e3ebe614bed5739d9b6dcb89a336d4a71a35f46591f3774bf913e8d

See more details on using hashes here.

File details

Details for the file leapfrog_py-0.0.1-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for leapfrog_py-0.0.1-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bdcc7073c97dfdcd4fe36ddff5c2cce01b473454ec863458b8d7bd83fe674d84
MD5 d030dcf58fe93d7ca4f3c46717eae002
BLAKE2b-256 b61ded0b2907018e63e086683e134538b74bbe12540332285d55e6ae24667bc2

See more details on using hashes here.

File details

Details for the file leapfrog_py-0.0.1-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for leapfrog_py-0.0.1-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b6355435bf477b2fa30c210d67833cd60192ecfbbaf44bfc42b42e29a5380bd1
MD5 02e76540574878296cb77528ad5c498c
BLAKE2b-256 be7451016ccc573b5bf83c43003c7cd55c732bd20880d2b19a46c27801cbf968

See more details on using hashes here.

File details

Details for the file leapfrog_py-0.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for leapfrog_py-0.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 be2caec46619b97a59916d5c7e2b895dff4ed31e091d4e1eb5d8b8ca522bcc6b
MD5 b54b14c1c6701f2e5fc5b8b36606e684
BLAKE2b-256 13aa1f4ebe9057d172fd27630798cfe6ab5476a3bfb178021864e0c271992468

See more details on using hashes here.

File details

Details for the file leapfrog_py-0.0.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for leapfrog_py-0.0.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e5971b63987c02cfdb0a4afc222922c2211de661e96aab67659658118bc15aab
MD5 f1313479cf823db0d8ca121738233dac
BLAKE2b-256 f611e66c3ec167b5e6acf921eec7d74640cdd1a5f3511e6feb006be5ca4de837

See more details on using hashes here.

File details

Details for the file leapfrog_py-0.0.1-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for leapfrog_py-0.0.1-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7c416a9236b7a4f4f238fde20cb8cd2e27c31c31e73b7d9c8e0127d89043e9a5
MD5 cd8e5a362bc9c6a13f9202e1bb363451
BLAKE2b-256 460c2c56bea66eb3dcf5a395a90361bd79d9307ac9a9477021b7d6d9dde81e81

See more details on using hashes here.

File details

Details for the file leapfrog_py-0.0.1-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for leapfrog_py-0.0.1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3d8928fc5babf29cf4b161525ba2ef58905fc98e91960fcc5008efe32f77ca19
MD5 cf31b375bb50b9b86087b768bf6fe5ce
BLAKE2b-256 4b1156a49b155342c5c05e2676d48349ade2c234ba57d736c8c01247c54b7d24

See more details on using hashes here.

Supported by

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