Skip to main content

The spatial networks impact assessment library

Project description

Tutorials | Issues

snail

PyPI version Build License

🤔 What is this?

This is a Python package to help with analysis of the potential impacts of climate hazards and other perils on infrastructure networks.

Installation

Install using pip:

pip install nismod-snail

This should bring all dependencies with it. If any of these cause difficulties, try using a conda environment:

conda env create -n snail_env \
    python=3.11 geopandas shapely rasterio python-igraph
conda activate snail_env
pip install nismod-snail

If all worked okay, you should be able to run python and import snail:

$ python
>>> import snail
>>> help(snail)
Help on package snail:

NAME
    snail - snail - the spatial networks impact assessment library

Using the snail command

Once installed, you can use snail directly from the command line.

Split features on a grid defined by its transform, width and height:

snail split \
    --features input.shp \
    --transform 1 0 -180 0 -1 90 \
    --width 360 \
    --height 180 \
    --output split.gpkg

Split features on a grid defined by a GeoTIFF, optionally adding the values from each raster band to each split feature as a new attribute:

snail split \
    --features lines.geojson \
    --raster gridded_data.tif \
    --attribute \
    --output split_lines_with_raster_values.geojson

Split multiple vector feature files along the grids defined by multiple raster files, attributing all raster values:

snail process -fs features.csv -rs rasters.csv

Where at a minimum, each CSV has a column path with the path to each file.

Transform

A note on transform - these six numbers define the transform from i,j cell index (column/row) coordinates in the rectangular grid to x,y geographic coordinates, in the coordinate reference system of the input and output files. They effectively form the first two rows of a 3x3 matrix:

| x |   | a  b  c | | i |
| y | = | d  e  f | | j |
| 1 |   | 0  0  1 | | 1 |

In cases without shear or rotation, a and e define scaling or grid cell size, while c and f define the offset or grid upper-left corner:

| x_scale 0       x_offset |
| 0       y_scale y_offset |
| 0       0       1        |

See rasterio/affine and GDAL Raster Data Model for more documentation.

Development

Clone this repository using GitHub Desktop or on the command line:

git clone git@github.com:nismod/snail.git

Change directory into the root of the project:

cd snail

To create and activate a conda environment with snail's dependencies installed:

conda env create -f environment.yml
conda activate snail-dev

Run this to install the source code as a package:

pip install .

If you're working on snail itself, install it as "editable" along with test and development packages:

pip install -e .[dev]

Run tests using pytest and pytest-cov to check coverage:

pytest --cov=snail --cov-report=term-missing

Run a formatter (black) to fix code formatting:

black src/snail

When working on the tutorial notebooks, it is recommended to install and configure nbstripout so data and outputs are not committed in the notebook files:

nbstripout --install

C++ library

The C++ library in extension/src contains the core routines to find intersections of lines with raster grids.

Before working on the C++ library, fetch source code for Catch2 unit testing library (this is included as a git submodule):

git submodule update --init --recursive

Build the library and run tests:

cmake -Bbuild ./extension
cmake --build build/
./build/run_tests

Run code style auto-formatting:

clang-format -i extension/src/*.{cpp,hpp}

Run lints and checks:

clang-tidy --checks 'cppcoreguidelines-*' extension/src/*.{cpp,hpp}

This may need some includes for pybind11 - which will vary depending on your python installation. For example, with python via miniconda:

clang-tidy --checks 'cppcoreguidelines-*' extension/src/* -- \
    -I/home/username/miniconda3/include/python3.11/ \
    -I./pybind11/include/

Or with C++ headers installed on a Linux machine:

clang-tidy --checks 'cppcoreguidelines-*' extension/src/* -- \
    -std=c++14  \
    -I/usr/include/x86_64-linux-gnu/c++/11 \
    -I/usr/include/c++/11 \
    -I{$PWD}/extension/extern/pybind11/include \
    -I/usr/include/python3.10

Integration of C++ and Python using pybind11

The snail.core.intersections module is built using pybind11 with scikit-build-core (see docs)

  • extension/src/intersections.cpp defines the module interface using the PYBIND11_MODULE macro
  • pyproject.toml defines the build requirements for snail, which includes pybind11 and scikit-build-core

Acknowledgments

MIT License

Copyright (c) 2020-23 Tom Russell and all snail contributors

This library is developed by researchers in the Oxford Programme for Sustainable Infrastructure Systems at the University of Oxford, funded by multiple research projects.

This research received funding from the FCDO Climate Compatible Growth Programme. The views expressed here do not necessarily reflect the UK government's official policies.

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

nismod_snail-0.5.4.tar.gz (1.5 MB view details)

Uploaded Source

Built Distributions

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

nismod_snail-0.5.4-pp310-pypy310_pp73-win_amd64.whl (89.1 kB view details)

Uploaded PyPyWindows x86-64

nismod_snail-0.5.4-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (114.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

nismod_snail-0.5.4-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (120.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

nismod_snail-0.5.4-pp310-pypy310_pp73-macosx_11_0_arm64.whl (83.9 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

nismod_snail-0.5.4-pp39-pypy39_pp73-win_amd64.whl (89.2 kB view details)

Uploaded PyPyWindows x86-64

nismod_snail-0.5.4-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (113.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

nismod_snail-0.5.4-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (120.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

nismod_snail-0.5.4-pp39-pypy39_pp73-macosx_11_0_arm64.whl (83.8 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

nismod_snail-0.5.4-pp38-pypy38_pp73-win_amd64.whl (89.3 kB view details)

Uploaded PyPyWindows x86-64

nismod_snail-0.5.4-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (113.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

nismod_snail-0.5.4-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (120.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

nismod_snail-0.5.4-pp38-pypy38_pp73-macosx_11_0_arm64.whl (83.9 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

nismod_snail-0.5.4-cp312-cp312-win_amd64.whl (90.7 kB view details)

Uploaded CPython 3.12Windows x86-64

nismod_snail-0.5.4-cp312-cp312-win32.whl (82.4 kB view details)

Uploaded CPython 3.12Windows x86

nismod_snail-0.5.4-cp312-cp312-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

nismod_snail-0.5.4-cp312-cp312-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

nismod_snail-0.5.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (115.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

nismod_snail-0.5.4-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (122.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

nismod_snail-0.5.4-cp312-cp312-macosx_11_0_arm64.whl (83.8 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

nismod_snail-0.5.4-cp312-cp312-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_11_0_universal2.whl (154.8 kB view details)

Uploaded CPython 3.12macOS 10.9+ x86-64macOS 11.0+ ARM64macOS 11.0+ universal2 (ARM64, x86-64)

nismod_snail-0.5.4-cp311-cp311-win_amd64.whl (90.7 kB view details)

Uploaded CPython 3.11Windows x86-64

nismod_snail-0.5.4-cp311-cp311-win32.whl (82.1 kB view details)

Uploaded CPython 3.11Windows x86

nismod_snail-0.5.4-cp311-cp311-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

nismod_snail-0.5.4-cp311-cp311-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

nismod_snail-0.5.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (115.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

nismod_snail-0.5.4-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (122.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

nismod_snail-0.5.4-cp311-cp311-macosx_11_0_arm64.whl (85.3 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

nismod_snail-0.5.4-cp311-cp311-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_11_0_universal2.whl (157.4 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64macOS 11.0+ ARM64macOS 11.0+ universal2 (ARM64, x86-64)

nismod_snail-0.5.4-cp310-cp310-win_amd64.whl (89.3 kB view details)

Uploaded CPython 3.10Windows x86-64

nismod_snail-0.5.4-cp310-cp310-win32.whl (81.3 kB view details)

Uploaded CPython 3.10Windows x86

nismod_snail-0.5.4-cp310-cp310-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

nismod_snail-0.5.4-cp310-cp310-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

nismod_snail-0.5.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (114.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

nismod_snail-0.5.4-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (121.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

nismod_snail-0.5.4-cp310-cp310-macosx_11_0_arm64.whl (83.7 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

nismod_snail-0.5.4-cp310-cp310-macosx_10_9_universal2.macosx_10_9_x86_64.macosx_11_0_arm64.whl (154.5 kB view details)

Uploaded CPython 3.10macOS 10.9+ universal2 (ARM64, x86-64)macOS 10.9+ x86-64macOS 11.0+ ARM64

nismod_snail-0.5.4-cp39-cp39-win_amd64.whl (89.5 kB view details)

Uploaded CPython 3.9Windows x86-64

nismod_snail-0.5.4-cp39-cp39-win32.whl (81.4 kB view details)

Uploaded CPython 3.9Windows x86

nismod_snail-0.5.4-cp39-cp39-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

nismod_snail-0.5.4-cp39-cp39-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

nismod_snail-0.5.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (114.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

nismod_snail-0.5.4-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (121.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

nismod_snail-0.5.4-cp39-cp39-macosx_11_0_arm64.whl (83.8 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

nismod_snail-0.5.4-cp39-cp39-macosx_10_9_universal2.macosx_10_9_x86_64.macosx_11_0_arm64.whl (154.5 kB view details)

Uploaded CPython 3.9macOS 10.9+ universal2 (ARM64, x86-64)macOS 10.9+ x86-64macOS 11.0+ ARM64

nismod_snail-0.5.4-cp38-cp38-win_amd64.whl (89.3 kB view details)

Uploaded CPython 3.8Windows x86-64

nismod_snail-0.5.4-cp38-cp38-win32.whl (81.2 kB view details)

Uploaded CPython 3.8Windows x86

nismod_snail-0.5.4-cp38-cp38-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

nismod_snail-0.5.4-cp38-cp38-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

nismod_snail-0.5.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (113.8 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

nismod_snail-0.5.4-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (121.1 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686

nismod_snail-0.5.4-cp38-cp38-macosx_11_0_arm64.whl (83.6 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

nismod_snail-0.5.4-cp38-cp38-macosx_11_0_arm64.macosx_10_9_universal2.macosx_10_9_x86_64.whl (154.2 kB view details)

Uploaded CPython 3.8macOS 10.9+ universal2 (ARM64, x86-64)macOS 10.9+ x86-64macOS 11.0+ ARM64

File details

Details for the file nismod_snail-0.5.4.tar.gz.

File metadata

  • Download URL: nismod_snail-0.5.4.tar.gz
  • Upload date:
  • Size: 1.5 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for nismod_snail-0.5.4.tar.gz
Algorithm Hash digest
SHA256 47498a2fce260d9c8b5ffac3d82e465917a4f61e41312963b581494f9ac454e0
MD5 49def0b27e895c1f759d67c6d955586e
BLAKE2b-256 e582e168e35ca4ae3bafb01dcdc61ea3619c944bcbc890a948141e106a98501b

See more details on using hashes here.

Provenance

The following attestation bundles were made for nismod_snail-0.5.4.tar.gz:

Publisher: package.yml on nismod/snail

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

File details

Details for the file nismod_snail-0.5.4-pp310-pypy310_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for nismod_snail-0.5.4-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 df286251fce094d095cf5269926ad25c2a4f17ca727613d6a6d611e78b40e7a7
MD5 c54dc49df4d28879b5d005e703855b07
BLAKE2b-256 c0bfe9c6f4a777c2bbf5d09c98da7aafc8654dbb957b2f5ab125c6fd3a368b37

See more details on using hashes here.

Provenance

The following attestation bundles were made for nismod_snail-0.5.4-pp310-pypy310_pp73-win_amd64.whl:

Publisher: package.yml on nismod/snail

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

File details

Details for the file nismod_snail-0.5.4-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for nismod_snail-0.5.4-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e6f2b9aaa98ed3698188f89898885f24feb86ca877d9d6a47a629667deb4276b
MD5 3166475c7eb32dd8814532a797ba5097
BLAKE2b-256 e9af72ba7bac6f6a134ff76bbaa6223ac4b6d2c866864e33444ad34092ac62e5

See more details on using hashes here.

Provenance

The following attestation bundles were made for nismod_snail-0.5.4-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: package.yml on nismod/snail

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

File details

Details for the file nismod_snail-0.5.4-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for nismod_snail-0.5.4-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 08dd690fc084f1e659613329fe130f5daa41cc75f5fe0eee60818aa4459db3c3
MD5 5c847e8732c703666fe1d788a3c30360
BLAKE2b-256 a283f1c6a294e444b0ff419b0ef71558819ce4d6d003118213fffbe517a6ebe7

See more details on using hashes here.

Provenance

The following attestation bundles were made for nismod_snail-0.5.4-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: package.yml on nismod/snail

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

File details

Details for the file nismod_snail-0.5.4-pp310-pypy310_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for nismod_snail-0.5.4-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a668f6010ea570a4f5fe69fcbbd101b82fe69cd263245949ee3d1330f5642e4f
MD5 394a257fe14000ee755469c6503f72c8
BLAKE2b-256 83238851e841ceb6d3ac3cdabf31ea32b1c157021a800d4e0630a3ec7f4301bf

See more details on using hashes here.

Provenance

The following attestation bundles were made for nismod_snail-0.5.4-pp310-pypy310_pp73-macosx_11_0_arm64.whl:

Publisher: package.yml on nismod/snail

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

File details

Details for the file nismod_snail-0.5.4-pp39-pypy39_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for nismod_snail-0.5.4-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 a7d18942c224cfe3f3bf74ef0738ad967ffc44de2f2a7c0b43a76a30ec3cd334
MD5 c705ba6e684c585cde6d13d2c70199ed
BLAKE2b-256 19ec2b76fa246e298a55d316779d3e733918f661562d1646e37be08f3df55605

See more details on using hashes here.

Provenance

The following attestation bundles were made for nismod_snail-0.5.4-pp39-pypy39_pp73-win_amd64.whl:

Publisher: package.yml on nismod/snail

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

File details

Details for the file nismod_snail-0.5.4-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for nismod_snail-0.5.4-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8ed7a2ab97c92409a79c7dbe8660467005c7136aa3f95b66386c1e10382d6e08
MD5 1bd862d5bc2f9e732cf3c0bc380ad759
BLAKE2b-256 700efbf5c0f94f4054f109b2620b78047a59044898a18617d4469e1616dffeb6

See more details on using hashes here.

Provenance

The following attestation bundles were made for nismod_snail-0.5.4-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: package.yml on nismod/snail

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

File details

Details for the file nismod_snail-0.5.4-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for nismod_snail-0.5.4-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2a1705a5dde385c2ee652343076cbe3cc9fc470c357f9923b961f2ef9d3fd72f
MD5 929a874a75034b272547e9db73bcd9ef
BLAKE2b-256 cd4a58473b657b38da195ff55466fa11435f98603dfe00305a81a279a4798e3a

See more details on using hashes here.

Provenance

The following attestation bundles were made for nismod_snail-0.5.4-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: package.yml on nismod/snail

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

File details

Details for the file nismod_snail-0.5.4-pp39-pypy39_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for nismod_snail-0.5.4-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 60607601e89302f3647f824f9f94e4e9021b8a92fc6d38cead493f10020fe432
MD5 25d7c217c0248d108551869b28d94b32
BLAKE2b-256 3cac3853a697e7918d9f14a5bac05a452c888f0ee4d3fb03b0c6013a22f13b80

See more details on using hashes here.

Provenance

The following attestation bundles were made for nismod_snail-0.5.4-pp39-pypy39_pp73-macosx_11_0_arm64.whl:

Publisher: package.yml on nismod/snail

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

File details

Details for the file nismod_snail-0.5.4-pp38-pypy38_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for nismod_snail-0.5.4-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 ab2bdf2486099a8e20264b5324ec3dc38ace8a1189ca585480c33e5506c1b916
MD5 85257e4222f96c049bec29f15f897735
BLAKE2b-256 7f3415b61a9b6edccf2aa2a31826c55387feca2821067f1325efa8b3aa3cf866

See more details on using hashes here.

Provenance

The following attestation bundles were made for nismod_snail-0.5.4-pp38-pypy38_pp73-win_amd64.whl:

Publisher: package.yml on nismod/snail

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

File details

Details for the file nismod_snail-0.5.4-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for nismod_snail-0.5.4-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b820e820b17f95ea1433fb640b959758e01f3339b98cb77bd6cf8f8f8be0ed72
MD5 0f50b73c3cb73468597a95d1193412f4
BLAKE2b-256 016cd27d4f3f240acea9524894351840b00c0df5e1350e7a8622c74ea135174c

See more details on using hashes here.

Provenance

The following attestation bundles were made for nismod_snail-0.5.4-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: package.yml on nismod/snail

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

File details

Details for the file nismod_snail-0.5.4-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for nismod_snail-0.5.4-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 22bf2714104059cac18467939a3ffed76e52f42162bae14a4b3b286417a3b5ce
MD5 1d4923c57912aa61aed8ad7a58a5091c
BLAKE2b-256 514646063c7b5139a9c6746121c7cf5ce3af9e5bfd543868ec15d5d73cc024bf

See more details on using hashes here.

Provenance

The following attestation bundles were made for nismod_snail-0.5.4-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: package.yml on nismod/snail

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

File details

Details for the file nismod_snail-0.5.4-pp38-pypy38_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for nismod_snail-0.5.4-pp38-pypy38_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b6545b4ce2c20618368612cce30e425b1f9c98e57308837f6a859f8072f3a4d3
MD5 69e95db7c6a9ad707472ce46b26319b1
BLAKE2b-256 7f5fb6f9502e7301b0e1377482e76e56bb41eeab3ddc0c3c1de1d295faedd161

See more details on using hashes here.

Provenance

The following attestation bundles were made for nismod_snail-0.5.4-pp38-pypy38_pp73-macosx_11_0_arm64.whl:

Publisher: package.yml on nismod/snail

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

File details

Details for the file nismod_snail-0.5.4-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for nismod_snail-0.5.4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 1f6deb1bacce285a61544554c65bee3dc33a33322593855fa6f18dc2e39620eb
MD5 bb6d34bf8d9ddb3abf7dcd6b19637860
BLAKE2b-256 36ab92120e637903629f17258571357940c68b456c9dfdc1d34f6ddfd2e0eee3

See more details on using hashes here.

Provenance

The following attestation bundles were made for nismod_snail-0.5.4-cp312-cp312-win_amd64.whl:

Publisher: package.yml on nismod/snail

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

File details

Details for the file nismod_snail-0.5.4-cp312-cp312-win32.whl.

File metadata

  • Download URL: nismod_snail-0.5.4-cp312-cp312-win32.whl
  • Upload date:
  • Size: 82.4 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for nismod_snail-0.5.4-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 717d1fd405a25e7c594bce3d42ef29efdd8cd80318bbf6fd2046d999d538beb6
MD5 fa796c5d615090ca3d476e3b2a2afca2
BLAKE2b-256 de5311edd8e89bf4402bb00eb5eaa7036f42d8062f5840a35dac481adac8e059

See more details on using hashes here.

Provenance

The following attestation bundles were made for nismod_snail-0.5.4-cp312-cp312-win32.whl:

Publisher: package.yml on nismod/snail

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

File details

Details for the file nismod_snail-0.5.4-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for nismod_snail-0.5.4-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7adefe3bfd9867206c38682558ed2234360aa2f3ab40c445cbc78020fd250f18
MD5 0e9682c00ac6d91fd0a09b96fbe14668
BLAKE2b-256 624b531d8e6ef116a40255f1f2886d0dbe7f565b4fbadeb8be5240150bb550f0

See more details on using hashes here.

Provenance

The following attestation bundles were made for nismod_snail-0.5.4-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: package.yml on nismod/snail

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

File details

Details for the file nismod_snail-0.5.4-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for nismod_snail-0.5.4-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 bd05e6fd00d2d3231aa4813912cd890bac58e99bcaac695aede8fbfa1412aba0
MD5 9c15dc45592ff26b717b5b959da0b59e
BLAKE2b-256 0d7c5bc20e1ae30bbb45ed3d792462357bad610dbe7d11fb13ba3784f2654d21

See more details on using hashes here.

Provenance

The following attestation bundles were made for nismod_snail-0.5.4-cp312-cp312-musllinux_1_2_i686.whl:

Publisher: package.yml on nismod/snail

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

File details

Details for the file nismod_snail-0.5.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for nismod_snail-0.5.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0e300510d71c8dc91ebaaea9a9cfd7fdc83e3be45b6dcc80ec3e39d749663458
MD5 a94b294ccfcdc75829a7de4c951f9d9a
BLAKE2b-256 83bf4d6332131155b71ef6bab66259120cda4aa81c1004fb3510c1c51e1fe622

See more details on using hashes here.

Provenance

The following attestation bundles were made for nismod_snail-0.5.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: package.yml on nismod/snail

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

File details

Details for the file nismod_snail-0.5.4-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for nismod_snail-0.5.4-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 21eb20b4879bc4718b7d2f59ea4a3b11da773a3f131a65d9f07ac5f59c46c5b8
MD5 229b58e0ca8ec33447d697145cb9af9c
BLAKE2b-256 3059be6821549b89a57b2454dab467bff4eed818631813332e8d52fe5948c7ab

See more details on using hashes here.

Provenance

The following attestation bundles were made for nismod_snail-0.5.4-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: package.yml on nismod/snail

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

File details

Details for the file nismod_snail-0.5.4-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for nismod_snail-0.5.4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 add8a90875d8a11e71924c1dbc2b9dc2a8fe15ca7e3200844f7b597b01928611
MD5 a9761b1f9ccd2e5df62d427548d1dfe4
BLAKE2b-256 3c237325cd3084bfd1cf1820bb0c0df127e970fd4797ffcffd6f97727030656e

See more details on using hashes here.

Provenance

The following attestation bundles were made for nismod_snail-0.5.4-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: package.yml on nismod/snail

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

File details

Details for the file nismod_snail-0.5.4-cp312-cp312-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_11_0_universal2.whl.

File metadata

File hashes

Hashes for nismod_snail-0.5.4-cp312-cp312-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_11_0_universal2.whl
Algorithm Hash digest
SHA256 b09061ee6a3d35e1b110c4bbcc3ee731002ab3350d7f36a4e0bbca87f28bea49
MD5 feb194c690c7bdeb404c74d220c9166c
BLAKE2b-256 bb6c26b50b94ab0081f75d68a81a936773473f35b62dad80c888502c93aa97f1

See more details on using hashes here.

Provenance

The following attestation bundles were made for nismod_snail-0.5.4-cp312-cp312-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_11_0_universal2.whl:

Publisher: package.yml on nismod/snail

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

File details

Details for the file nismod_snail-0.5.4-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for nismod_snail-0.5.4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 3e5a6f52180e4145da9fc20dbb3a32707c2d53ed3afbc443c3edff33cfde11bb
MD5 864bff196c8539473ec61dcfd4272ba5
BLAKE2b-256 254c81a6b3fef52695778801875f1fdd414436995833043d6fb5c5e050ee0746

See more details on using hashes here.

Provenance

The following attestation bundles were made for nismod_snail-0.5.4-cp311-cp311-win_amd64.whl:

Publisher: package.yml on nismod/snail

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

File details

Details for the file nismod_snail-0.5.4-cp311-cp311-win32.whl.

File metadata

  • Download URL: nismod_snail-0.5.4-cp311-cp311-win32.whl
  • Upload date:
  • Size: 82.1 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for nismod_snail-0.5.4-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 f828155caf8051df5db8f54981b2dd41df4cc0ea5db18328ea3facbb9471ae11
MD5 6b1df4225678c79c0abfaf21cf678d88
BLAKE2b-256 f895400d715d6664dc61fd43347e202e4c56518291204ebce3560bcff043b42e

See more details on using hashes here.

Provenance

The following attestation bundles were made for nismod_snail-0.5.4-cp311-cp311-win32.whl:

Publisher: package.yml on nismod/snail

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

File details

Details for the file nismod_snail-0.5.4-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for nismod_snail-0.5.4-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b32ef9eb5a809a7468b5ed55655cf1b6a6a10401a2bfe8777e0a1c235562b959
MD5 ef593ee526a8374e319dcd643569a278
BLAKE2b-256 9a6dd70fc18517b0ef0f8f3203cc6f3df2ff2b17fee288eca49767b01c654e56

See more details on using hashes here.

Provenance

The following attestation bundles were made for nismod_snail-0.5.4-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: package.yml on nismod/snail

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

File details

Details for the file nismod_snail-0.5.4-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for nismod_snail-0.5.4-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 063e59a932868235cd8ac73a031172f3b7eafb62d1950e00b6b99f179627763f
MD5 256ede0ee4e0cfa0c8f73e0fda94e38d
BLAKE2b-256 1bd1103495be11b3a8e8d856c62a06975226bd90f780260a15a540ab46ece6f0

See more details on using hashes here.

Provenance

The following attestation bundles were made for nismod_snail-0.5.4-cp311-cp311-musllinux_1_2_i686.whl:

Publisher: package.yml on nismod/snail

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

File details

Details for the file nismod_snail-0.5.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for nismod_snail-0.5.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e6b4718799da16dc4d36b5c56a9d8feacaed262f0ca3d92f2fb0bd0bc18964c1
MD5 ae0091f58e4de7327587e9c9e275f766
BLAKE2b-256 e494f0b05713dc7f0fd794a9b8450eaffb7ccf39d171000d566f606903acfffe

See more details on using hashes here.

Provenance

The following attestation bundles were made for nismod_snail-0.5.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: package.yml on nismod/snail

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

File details

Details for the file nismod_snail-0.5.4-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for nismod_snail-0.5.4-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4e3d33e2372804224ee8232cccd8392a6f05fe216f20ad618c4f1b149248ce57
MD5 44c0754e3ead5f19700745d909c10b14
BLAKE2b-256 58eb51b0bf543932b2ac4ef72932f0a07ad050f6f17339d7ab07d48a8f4bd050

See more details on using hashes here.

Provenance

The following attestation bundles were made for nismod_snail-0.5.4-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: package.yml on nismod/snail

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

File details

Details for the file nismod_snail-0.5.4-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for nismod_snail-0.5.4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f48aca947ebf6c97d027180b6a6ca541e54e023184a039616f6acea9f0c372d2
MD5 097b03b1df02da00cd33ea6efd1f5078
BLAKE2b-256 8a337cfb420b82ae8e04557c991de3a65060dc9f1ad20743ab434da98a266cde

See more details on using hashes here.

Provenance

The following attestation bundles were made for nismod_snail-0.5.4-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: package.yml on nismod/snail

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

File details

Details for the file nismod_snail-0.5.4-cp311-cp311-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_11_0_universal2.whl.

File metadata

File hashes

Hashes for nismod_snail-0.5.4-cp311-cp311-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_11_0_universal2.whl
Algorithm Hash digest
SHA256 1eee2c7a338f5683f3d709dc713e079e43f21e8a299d8b2fafb4772054cebe65
MD5 2f722ce26bc7176dd265a477d371bbd7
BLAKE2b-256 a993a834ec4580ec2f336d20fa76a72a7190e76433d69fd6a1fa18ce01a4def4

See more details on using hashes here.

Provenance

The following attestation bundles were made for nismod_snail-0.5.4-cp311-cp311-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_11_0_universal2.whl:

Publisher: package.yml on nismod/snail

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

File details

Details for the file nismod_snail-0.5.4-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for nismod_snail-0.5.4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 16d775e85e87f78630c261461c329133cdb9f0ad11b1315f07c1d7e60d6d632a
MD5 9a66ef1e69a5c77fe588b95ed3851069
BLAKE2b-256 e549497f538cedf7a462812744b2e6752e4bf2dc04b5bbbaacd453530191fc24

See more details on using hashes here.

Provenance

The following attestation bundles were made for nismod_snail-0.5.4-cp310-cp310-win_amd64.whl:

Publisher: package.yml on nismod/snail

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

File details

Details for the file nismod_snail-0.5.4-cp310-cp310-win32.whl.

File metadata

  • Download URL: nismod_snail-0.5.4-cp310-cp310-win32.whl
  • Upload date:
  • Size: 81.3 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for nismod_snail-0.5.4-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 126989146c8a5305444d33bae9e48f4527629bedf8b1b722c7d5924a16c22043
MD5 b255d9984e887e245d2dbc20f27eadd7
BLAKE2b-256 34bcc90d1cd6fd694dba9449322f944c0dbb40adc6be4298ff561262537c3669

See more details on using hashes here.

Provenance

The following attestation bundles were made for nismod_snail-0.5.4-cp310-cp310-win32.whl:

Publisher: package.yml on nismod/snail

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

File details

Details for the file nismod_snail-0.5.4-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for nismod_snail-0.5.4-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b0bc55465d912c3abf4812b6428c54a29ac94963151d5feb8ebd5e29a4ace136
MD5 9b509534235a800503d78ba099014964
BLAKE2b-256 2f70a6147550cfc4ad598a5d7cf73dce4f9f70ed593ab1327cc34e38261c8e89

See more details on using hashes here.

Provenance

The following attestation bundles were made for nismod_snail-0.5.4-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: package.yml on nismod/snail

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

File details

Details for the file nismod_snail-0.5.4-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for nismod_snail-0.5.4-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a71a24c1348a8e140dd79c932849c28234104ebae5b319f5c627b20331d425b4
MD5 d1216162c8a49536bbf8b5dd83097925
BLAKE2b-256 d40c065b79ad9773ea8e34c0bba1d71690cf81a88909daf904ecd6d70ff7b920

See more details on using hashes here.

Provenance

The following attestation bundles were made for nismod_snail-0.5.4-cp310-cp310-musllinux_1_2_i686.whl:

Publisher: package.yml on nismod/snail

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

File details

Details for the file nismod_snail-0.5.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for nismod_snail-0.5.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d9a1a012858441503bb2ccae34390c5a0723cef9589da1309d0b9ff1a99ccae5
MD5 fe5b58196601128b73b5f316bedd7235
BLAKE2b-256 bf118e72714daf099165f5b0cb9767b578b541e95a5bcf36b36c1b36c2bef44e

See more details on using hashes here.

Provenance

The following attestation bundles were made for nismod_snail-0.5.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: package.yml on nismod/snail

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

File details

Details for the file nismod_snail-0.5.4-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for nismod_snail-0.5.4-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a763902606a4e5da625a9d62d3a660335b978ff6820061358d1253611a873973
MD5 17e65eeba7a1bc8c15c3faabd6eb0609
BLAKE2b-256 1f51a603bf75f66ceae8335099b1ef55dbc6751db94f4f8db4e4bd914a08ac0a

See more details on using hashes here.

Provenance

The following attestation bundles were made for nismod_snail-0.5.4-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: package.yml on nismod/snail

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

File details

Details for the file nismod_snail-0.5.4-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for nismod_snail-0.5.4-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 469d7c1a3295a6e22bdc52f3997dffd6144ff59cd50e58f3aa28d1f795523c07
MD5 524418ea24e4c6304010f4767b9fc882
BLAKE2b-256 a37d7b80bb6912597c634f8526219b523f0b63964f7a189011c8611c79e9d14c

See more details on using hashes here.

Provenance

The following attestation bundles were made for nismod_snail-0.5.4-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: package.yml on nismod/snail

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

File details

Details for the file nismod_snail-0.5.4-cp310-cp310-macosx_10_9_universal2.macosx_10_9_x86_64.macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for nismod_snail-0.5.4-cp310-cp310-macosx_10_9_universal2.macosx_10_9_x86_64.macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ad720737d0edee1eb682f739a74910171f983bcf25962c93114184757e41f07a
MD5 f59183032958bb00ba6e26c7f89b5a4c
BLAKE2b-256 faca1b1ab8efb9b8f7e53fe2ec8b99058331f15a51ba1922beeb9a1574624065

See more details on using hashes here.

Provenance

The following attestation bundles were made for nismod_snail-0.5.4-cp310-cp310-macosx_10_9_universal2.macosx_10_9_x86_64.macosx_11_0_arm64.whl:

Publisher: package.yml on nismod/snail

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

File details

Details for the file nismod_snail-0.5.4-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: nismod_snail-0.5.4-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 89.5 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for nismod_snail-0.5.4-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 0c56c13e9be35b676b7f41a2e435ff1af12e76cd2cf819bd2fb9f347e365af3e
MD5 2dc4f4509cee522ee2a89f6bd96cd816
BLAKE2b-256 3bcee2b6e841fbf4fc3d401135c0a27ceffb57805b6bfb80ab73b95504df9696

See more details on using hashes here.

Provenance

The following attestation bundles were made for nismod_snail-0.5.4-cp39-cp39-win_amd64.whl:

Publisher: package.yml on nismod/snail

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

File details

Details for the file nismod_snail-0.5.4-cp39-cp39-win32.whl.

File metadata

  • Download URL: nismod_snail-0.5.4-cp39-cp39-win32.whl
  • Upload date:
  • Size: 81.4 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for nismod_snail-0.5.4-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 4040776c2385f4144b02986bdfc3fa82cce8b668839829e6389da7edc1083d0a
MD5 ef0f1d43600e4796edae9ae8717ec115
BLAKE2b-256 8776e1b674040630280d93a98c0449032c52ba2b2340b09a0dc5fe41e69be5d1

See more details on using hashes here.

Provenance

The following attestation bundles were made for nismod_snail-0.5.4-cp39-cp39-win32.whl:

Publisher: package.yml on nismod/snail

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

File details

Details for the file nismod_snail-0.5.4-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for nismod_snail-0.5.4-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5e345ed7d267e31ebcb39aa5b4482744ca754c23a560ff219f6e75a91ca796b3
MD5 3d9e024e0672e76fa2ab469194949cca
BLAKE2b-256 9ba40625cc1bd1754f8079b7d5a7c71931c7e0e884902262f0a68b6a292a002f

See more details on using hashes here.

Provenance

The following attestation bundles were made for nismod_snail-0.5.4-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: package.yml on nismod/snail

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

File details

Details for the file nismod_snail-0.5.4-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for nismod_snail-0.5.4-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1adb5d02a608c6505d8ac139f9ba95e43c21b2b244f27d790a7ec5c9b65f9760
MD5 1c99e80dc4c67466abca24ec2fac354b
BLAKE2b-256 aec80a9e954aa05031a1c438990f6ed8ac6761f995ecffadb23cbeb784e66286

See more details on using hashes here.

Provenance

The following attestation bundles were made for nismod_snail-0.5.4-cp39-cp39-musllinux_1_2_i686.whl:

Publisher: package.yml on nismod/snail

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

File details

Details for the file nismod_snail-0.5.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for nismod_snail-0.5.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 79388ab638c2cbc8f9b5f0814a297d6c3339f3cbf38a9d63a34496fa2b67a827
MD5 4e6650d40fce8b8fb664bd859bbb9683
BLAKE2b-256 4b422b443a2224bb067aa715bf5ebf0650ab7b56b2b574a43b0a23aa615e9590

See more details on using hashes here.

Provenance

The following attestation bundles were made for nismod_snail-0.5.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: package.yml on nismod/snail

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

File details

Details for the file nismod_snail-0.5.4-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for nismod_snail-0.5.4-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f4361f8b441c2572493e161ff200f1529c6ee3168b76ccfff085c436b442a3dd
MD5 373b9fa1731a5c7eb2453d0ce003bc1f
BLAKE2b-256 4703623a7fccd10b2a513da6016d7e511ec1306d68d4f8a5ad89831f451aaeef

See more details on using hashes here.

Provenance

The following attestation bundles were made for nismod_snail-0.5.4-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: package.yml on nismod/snail

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

File details

Details for the file nismod_snail-0.5.4-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for nismod_snail-0.5.4-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3fcd618e4755fa45c2d84a2e12004bfa29ea43d34d9f38411f7ccda433b3fa6a
MD5 1e01862abc438bac6d3804199ec14fde
BLAKE2b-256 17eb6be2eaed9ba23b826fd701919e763e16f40757184b02d5c2a2ce45966eef

See more details on using hashes here.

Provenance

The following attestation bundles were made for nismod_snail-0.5.4-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: package.yml on nismod/snail

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

File details

Details for the file nismod_snail-0.5.4-cp39-cp39-macosx_10_9_universal2.macosx_10_9_x86_64.macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for nismod_snail-0.5.4-cp39-cp39-macosx_10_9_universal2.macosx_10_9_x86_64.macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 495155d90909063e16de2e2dec8f86d1535132870b28ff70da006db9583228cd
MD5 f34e4b819d283c8ac80c65fe87c82f23
BLAKE2b-256 6cc00557375af84f26befddf86a7bec94449e74de3c79d1869056c3479ffc739

See more details on using hashes here.

Provenance

The following attestation bundles were made for nismod_snail-0.5.4-cp39-cp39-macosx_10_9_universal2.macosx_10_9_x86_64.macosx_11_0_arm64.whl:

Publisher: package.yml on nismod/snail

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

File details

Details for the file nismod_snail-0.5.4-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: nismod_snail-0.5.4-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 89.3 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for nismod_snail-0.5.4-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 6e7c9d9ebb6b21eb9a72d513573b4f1d97f1fab697b6ed491e08697e95471d15
MD5 bcb52ce9437cff0cb8ea59ede7911355
BLAKE2b-256 ff34862580490d0a313ac1c643aa232a65d693d6c1d6129a80b408cfb4b09f2c

See more details on using hashes here.

Provenance

The following attestation bundles were made for nismod_snail-0.5.4-cp38-cp38-win_amd64.whl:

Publisher: package.yml on nismod/snail

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

File details

Details for the file nismod_snail-0.5.4-cp38-cp38-win32.whl.

File metadata

  • Download URL: nismod_snail-0.5.4-cp38-cp38-win32.whl
  • Upload date:
  • Size: 81.2 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for nismod_snail-0.5.4-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 c1343b46e7eafdcf128997d75cd9ec288a6d40abf513a6e1398bcf2ace6a7192
MD5 c12ee24032cd7f0f1d7ce144e0d7e83d
BLAKE2b-256 271ceee7b12e77a4dbc94207b646ceb65668d0f1323fe1182add7434bc8213ae

See more details on using hashes here.

Provenance

The following attestation bundles were made for nismod_snail-0.5.4-cp38-cp38-win32.whl:

Publisher: package.yml on nismod/snail

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

File details

Details for the file nismod_snail-0.5.4-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for nismod_snail-0.5.4-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 819f6ea7f7c0d664a5304234d81b2cb747cb1d9fa50396aa094313a3cfbef216
MD5 e6686f156fd1da5dfe32cd657a0b49b1
BLAKE2b-256 2a193a89e8e898dd0822294f9c150710e47fce066bf53ef835181f55d7ffab1f

See more details on using hashes here.

Provenance

The following attestation bundles were made for nismod_snail-0.5.4-cp38-cp38-musllinux_1_2_x86_64.whl:

Publisher: package.yml on nismod/snail

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

File details

Details for the file nismod_snail-0.5.4-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for nismod_snail-0.5.4-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 23789225fe6ee464a4a12655c9fc9d9bd034c2644c701d11216fbf261b6001fa
MD5 b7b0df79627e70fcedfac8d4d19fffaa
BLAKE2b-256 e99bf5e91c970cb90bf920dfe2904c445923c65d9f20c53e55b58e5fa0f09c61

See more details on using hashes here.

Provenance

The following attestation bundles were made for nismod_snail-0.5.4-cp38-cp38-musllinux_1_2_i686.whl:

Publisher: package.yml on nismod/snail

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

File details

Details for the file nismod_snail-0.5.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for nismod_snail-0.5.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6201a246ccb0705bce75087800e8c8f0061cd610c7ba3ada0059b6ce2fd2a6ec
MD5 a70ffcbb7b812e21c5dee8dd83522c07
BLAKE2b-256 cf66f5760bf3f4933f7b040b9a71c8b968fcd1fbc1f48ba900bc0688a0ab13c5

See more details on using hashes here.

Provenance

The following attestation bundles were made for nismod_snail-0.5.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: package.yml on nismod/snail

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

File details

Details for the file nismod_snail-0.5.4-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for nismod_snail-0.5.4-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9bec1fd68894a955dce1bfbc10ba8ce224e4bcb22837e09df107ab86ae4ef521
MD5 e47d797a0aeb3a73092b8e2df392da14
BLAKE2b-256 d3ac5f4a86e9104bf50501ee2414ed16daa45523b09cf1eeee27dab06cef4ce7

See more details on using hashes here.

Provenance

The following attestation bundles were made for nismod_snail-0.5.4-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: package.yml on nismod/snail

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

File details

Details for the file nismod_snail-0.5.4-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for nismod_snail-0.5.4-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0c7b672678f3607e7cdfb9aad91d41659b06b2dd0e1dc5d544fa0535f5cdee7b
MD5 d57c2e8c6bbe0429cbf57d1fa4434af7
BLAKE2b-256 ee5a13e363b7625af7fb7a5708ea5d791bbf0330651d276509aa0470b41773bc

See more details on using hashes here.

Provenance

The following attestation bundles were made for nismod_snail-0.5.4-cp38-cp38-macosx_11_0_arm64.whl:

Publisher: package.yml on nismod/snail

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

File details

Details for the file nismod_snail-0.5.4-cp38-cp38-macosx_11_0_arm64.macosx_10_9_universal2.macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for nismod_snail-0.5.4-cp38-cp38-macosx_11_0_arm64.macosx_10_9_universal2.macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4391041b0881c8add56184cabd60ada6422cf00be157ce099a195e73af493c06
MD5 2f0f11bfff8128eda0b6533906c15269
BLAKE2b-256 44b09fdaa39c351712491c815b47e94b959f9ac3b72c44a09e433f54c1e2ee94

See more details on using hashes here.

Provenance

The following attestation bundles were made for nismod_snail-0.5.4-cp38-cp38-macosx_11_0_arm64.macosx_10_9_universal2.macosx_10_9_x86_64.whl:

Publisher: package.yml on nismod/snail

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