Skip to main content

PLATE RECognition In PYthon

Project description

logo

platerecipy: a package for PLATE RECognition In PYthon

platerecipy is a tool for detecting candidate plates on global geophysical datasets. It analyzes the surface to identify diffuse and non-conforming regions, as well as regions with low confidence in plate assignment.

Supported platforms

Though platerecipy is fundamentally a Python package, it also relies on backend functionalities that are implemented in C. Linux is the main operating system for platerecipy. However, expect for a number of optimizations (e.g., multithreaded C functions), platerecipy is now available via pip on Windows systems.

Installation

Version releases are made available on PyPI so that platerecipy can be installed using pip on the shell as follows:

pip install platerecipy

User guide

platerecipy's documentation is moved to platerecipy.readthedocs.io!

For a detailed explanation and illustration of platerecipy's core functionalities, please refer to:

Javaheri, P., & Lowman, J. P. (2026). A random walker algorithm for plate boundary detection in spherical mantle convection models and global geophysical data sets: Application to Euler vector determination. Journal of Geophysical Research: Solid Earth, 131, e2025JB032259. https://doi.org/10.1029/2025JB032259

As a demonstration, assuming a given input_xs, input_ys, input_zs, and
input_field (all numpy arrays), using platerecipy is as simple as follows:

from platerecipy.model import PlateModel
from platerecipy.grid import SphericalGrid

input_xs    = # to be specified ...
input_ys    = # to be specified ...
input_zs    = # to be specified ...
input_field = # to be specified ...

# generating a consistent grid for interpolation
grid = SphericalGrid(input_xs, input_ys, input_zs)

# interpolating an input field
field = grid.interpolate_field(input_field)

# initializing a plate model
m = PlateModel(grid)

# stacking the interpolated field
m.stack_field(field, take_log=True)

# finding plates on the stacked field
m.find_plates(
    boundary_quantile     = 0.9,            # threshold for the boundaries 
    separation_tolerance  = 4*3.1416/180.,  # 4 degrees for separation tolerance
    RW_beta               = 200,            # RW beta (for feature sharpness)
    min_marker_size       = 100             # to filter out micro plates
)

# outputting as a ParaView readable .vtk file
from platerecipy import io
io.save_as_vtk(m)

Citing platerecipy

If this package has been useful to your research, please cite the original paper:

Javaheri, P., & Lowman, J. P. (2026). A random walker algorithm for plate boundary detection in spherical mantle convection models and global geophysical data sets: Application to Euler vector determination. Journal of Geophysical Research: Solid Earth, 131, e2025JB032259. https://doi.org/10.1029/2025JB032259

@article{platerecipy,
author = {Javaheri, P. and Lowman, J. P.},
title = {{A random walker algorithm for plate boundary detection in spherical mantle convection models and global geophysical data sets: Application to Euler vector determination}},
journal = {Journal of Geophysical Research: Solid Earth},
volume = {131},
number = {3},
pages = {e2025JB032259},
keywords = {plate tectonics, plate modeling, Euler vector, diffuse zones, mantle convection, strain-rate},
doi = {https://doi.org/10.1029/2025JB032259},
url = {https://agupubs.onlinelibrary.wiley.com/doi/abs/10.1029/2025JB032259},
eprint = {https://agupubs.onlinelibrary.wiley.com/doi/pdf/10.1029/2025JB032259},
note = {e2025JB032259 2025JB032259},
year = {2026}
}

as well as the software version:

P. Javaheri. (2025). pjavaheri/platerecipy: Release of version 1.0.0 (v1.0.0). Zenodo. https://doi.org/10.5281/zenodo.15625716

@software{p_javaheri_2025_15625716,
  author       = {P. Javaheri},
  title        = {pjavaheri/platerecipy: Release of version 1.0.0},
  month        = jun,
  year         = 2025,
  publisher    = {Zenodo},
  version      = {v1.0.0},
  doi          = {10.5281/zenodo.15625716},
  url          = {https://doi.org/10.5281/zenodo.15625716},
}

Please note that platerecipy is a platform under development. Depending on your installed version, the software version citation should point to the most recent prior release on Zenodo.


Developed by Pejvak Javaheri, pejvak.javaheri@mail.utoronto.ca.

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

platerecipy-2.0.3.tar.gz (35.0 kB view details)

Uploaded Source

Built Distributions

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

platerecipy-2.0.3-cp314-cp314t-win_amd64.whl (51.7 kB view details)

Uploaded CPython 3.14tWindows x86-64

platerecipy-2.0.3-cp314-cp314t-win32.whl (46.8 kB view details)

Uploaded CPython 3.14tWindows x86

platerecipy-2.0.3-cp314-cp314t-musllinux_1_2_x86_64.whl (75.1 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

platerecipy-2.0.3-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (76.0 kB view details)

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

platerecipy-2.0.3-cp314-cp314t-macosx_11_0_arm64.whl (46.4 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

platerecipy-2.0.3-cp314-cp314-win_amd64.whl (51.7 kB view details)

Uploaded CPython 3.14Windows x86-64

platerecipy-2.0.3-cp314-cp314-win32.whl (46.8 kB view details)

Uploaded CPython 3.14Windows x86

platerecipy-2.0.3-cp314-cp314-musllinux_1_2_x86_64.whl (75.1 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

platerecipy-2.0.3-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (76.0 kB view details)

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

platerecipy-2.0.3-cp314-cp314-macosx_11_0_arm64.whl (46.4 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

platerecipy-2.0.3-cp313-cp313-win_amd64.whl (50.9 kB view details)

Uploaded CPython 3.13Windows x86-64

platerecipy-2.0.3-cp313-cp313-win32.whl (46.1 kB view details)

Uploaded CPython 3.13Windows x86

platerecipy-2.0.3-cp313-cp313-musllinux_1_2_x86_64.whl (75.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

platerecipy-2.0.3-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (76.0 kB view details)

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

platerecipy-2.0.3-cp313-cp313-macosx_11_0_arm64.whl (46.4 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

platerecipy-2.0.3-cp312-cp312-win_amd64.whl (50.9 kB view details)

Uploaded CPython 3.12Windows x86-64

platerecipy-2.0.3-cp312-cp312-win32.whl (46.1 kB view details)

Uploaded CPython 3.12Windows x86

platerecipy-2.0.3-cp312-cp312-musllinux_1_2_x86_64.whl (75.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

platerecipy-2.0.3-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (76.0 kB view details)

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

platerecipy-2.0.3-cp312-cp312-macosx_11_0_arm64.whl (46.4 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

platerecipy-2.0.3-cp311-cp311-win_amd64.whl (50.9 kB view details)

Uploaded CPython 3.11Windows x86-64

platerecipy-2.0.3-cp311-cp311-win32.whl (46.1 kB view details)

Uploaded CPython 3.11Windows x86

platerecipy-2.0.3-cp311-cp311-musllinux_1_2_x86_64.whl (75.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

platerecipy-2.0.3-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (75.9 kB view details)

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

platerecipy-2.0.3-cp311-cp311-macosx_11_0_arm64.whl (46.4 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

platerecipy-2.0.3-cp310-cp310-win_amd64.whl (50.9 kB view details)

Uploaded CPython 3.10Windows x86-64

platerecipy-2.0.3-cp310-cp310-win32.whl (46.1 kB view details)

Uploaded CPython 3.10Windows x86

platerecipy-2.0.3-cp310-cp310-musllinux_1_2_x86_64.whl (75.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

platerecipy-2.0.3-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (75.9 kB view details)

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

platerecipy-2.0.3-cp310-cp310-macosx_11_0_arm64.whl (46.4 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

platerecipy-2.0.3-cp39-cp39-win_amd64.whl (50.8 kB view details)

Uploaded CPython 3.9Windows x86-64

platerecipy-2.0.3-cp39-cp39-win32.whl (46.1 kB view details)

Uploaded CPython 3.9Windows x86

platerecipy-2.0.3-cp39-cp39-musllinux_1_2_x86_64.whl (75.0 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

platerecipy-2.0.3-cp39-cp39-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (75.9 kB view details)

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

platerecipy-2.0.3-cp39-cp39-macosx_11_0_arm64.whl (46.4 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

platerecipy-2.0.3-cp38-cp38-win_amd64.whl (50.8 kB view details)

Uploaded CPython 3.8Windows x86-64

platerecipy-2.0.3-cp38-cp38-win32.whl (46.0 kB view details)

Uploaded CPython 3.8Windows x86

platerecipy-2.0.3-cp38-cp38-musllinux_1_2_x86_64.whl (74.8 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

platerecipy-2.0.3-cp38-cp38-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (75.7 kB view details)

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

platerecipy-2.0.3-cp38-cp38-macosx_11_0_arm64.whl (46.1 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

File details

Details for the file platerecipy-2.0.3.tar.gz.

File metadata

  • Download URL: platerecipy-2.0.3.tar.gz
  • Upload date:
  • Size: 35.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for platerecipy-2.0.3.tar.gz
Algorithm Hash digest
SHA256 c51dc85da274f0c89a2b9758c2f134e694e063e7ed934f657a4fe06ac4c9ed1f
MD5 0872fa73073060cee079f54c63c9d20c
BLAKE2b-256 272ce9ef682c529d2415cf07f1704c5e25c9e8cef3c1d06eb29fe16113f6b091

See more details on using hashes here.

File details

Details for the file platerecipy-2.0.3-cp314-cp314t-win_amd64.whl.

File metadata

File hashes

Hashes for platerecipy-2.0.3-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 e8e117b5418a72d2d6c9819dd986f06df4b50d92f5351f12293f547600dd6317
MD5 ad6c460287dddf2c82e661343b99ccec
BLAKE2b-256 7c6c717446807ec06b7c2fc8ada6a1d531772c6e3cb0f72aef009a51386c3c40

See more details on using hashes here.

File details

Details for the file platerecipy-2.0.3-cp314-cp314t-win32.whl.

File metadata

  • Download URL: platerecipy-2.0.3-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 46.8 kB
  • Tags: CPython 3.14t, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for platerecipy-2.0.3-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 21973feed3a3e00b8ecad0892e43eaaf04146cd81766864e95504620a7d61c99
MD5 580a6afeea0c227a68587d62d4cda4d6
BLAKE2b-256 40e343b6d25ebaf13115d3753c0f86b94b945b04dfe5f5d36b19ce53e20780ad

See more details on using hashes here.

File details

Details for the file platerecipy-2.0.3-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for platerecipy-2.0.3-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 811c13a83d626e6172d7f5ec42a302adac3d9e4d3800023231381a865affa598
MD5 1553e9835821fa4d59285cffec09a9ea
BLAKE2b-256 e74cd04ea957270662c1c6d515ee4473b4a6ed213d2e18cfe755ebf3c53113bf

See more details on using hashes here.

File details

Details for the file platerecipy-2.0.3-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for platerecipy-2.0.3-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 ee99b8f0dabb8fb6723bc611b1384bb57c0d4c170a5dd43917425e08cfeaa05b
MD5 3f4b24f1330b9a12a5f03c3448659133
BLAKE2b-256 80c6232770cd1a33981083be816f1ed736137c65a280df1e3ebc176eaefe5c0f

See more details on using hashes here.

File details

Details for the file platerecipy-2.0.3-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for platerecipy-2.0.3-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 978f3400ecba03861ef5195264cf74c9bb92df0900126939a1e0201f491b1502
MD5 90308236eca55aafb1f44c1ec0dbc041
BLAKE2b-256 255949b1bd185a92b93ba9a4e9d6ff1cc15979ff3cf03819d96065d38fe770ce

See more details on using hashes here.

File details

Details for the file platerecipy-2.0.3-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for platerecipy-2.0.3-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 89e85f25fa9101af52a8205f46d0842b283b19ea73cb46f39be1fe20a5cf7c21
MD5 fea8cae6d2ede286002da87ade20c28e
BLAKE2b-256 a02866d3ffc6a1ee29054ae9ed46a23beb5471463ec5c0734609f562921feb81

See more details on using hashes here.

File details

Details for the file platerecipy-2.0.3-cp314-cp314-win32.whl.

File metadata

  • Download URL: platerecipy-2.0.3-cp314-cp314-win32.whl
  • Upload date:
  • Size: 46.8 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for platerecipy-2.0.3-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 e9c1783bf17a06d54f31e307428c9f214dc4bb6e553b5d70650706e337d0db3a
MD5 d5d72a4b811f757bab00859f824ab535
BLAKE2b-256 1531e43916dbc7ad66be789ebc4c7007570e94ece40f0b022e870523dddf8291

See more details on using hashes here.

File details

Details for the file platerecipy-2.0.3-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for platerecipy-2.0.3-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6c04220fa87970858407a2bd451ab13d987604adeb60f8932221b82afbc465fc
MD5 7ee3b6dc093dfdee8e01fcb353551c91
BLAKE2b-256 70384b0dca3e0ee861c1ef3a92c9b9fa9a21b0b26a701d86ee0242c2d3e43442

See more details on using hashes here.

File details

Details for the file platerecipy-2.0.3-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for platerecipy-2.0.3-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 ff09ec9333db916f8d0e756588dea6188d522b69596d150cf396770fbf17ef0b
MD5 d3044e52200bbe2923aac437b577f0af
BLAKE2b-256 e865560ca34895982db928412a5e1fcbefc00cd0e684e94cdbf33dbd817280b7

See more details on using hashes here.

File details

Details for the file platerecipy-2.0.3-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for platerecipy-2.0.3-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e74aa384f39779c3ae2dfe2b1da224a23db76b3feb71e37c6508499f145723bd
MD5 639c3e39473eec4c667f1e239b5ce300
BLAKE2b-256 498453cb86957e8d94a11ca54c2ea50fe30a9a1147f3a2493c0ed8bcbebfaa73

See more details on using hashes here.

File details

Details for the file platerecipy-2.0.3-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for platerecipy-2.0.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 08148af436ebbc57de49b9f577ff420c9b5408b31b8cd69d2313499013e5380f
MD5 e344ba2b48324ab946a6ed127851d020
BLAKE2b-256 182b3af8699d2d58888872b3aca40c9363ed1b5d62ea552a20083dd02b66ec65

See more details on using hashes here.

File details

Details for the file platerecipy-2.0.3-cp313-cp313-win32.whl.

File metadata

  • Download URL: platerecipy-2.0.3-cp313-cp313-win32.whl
  • Upload date:
  • Size: 46.1 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for platerecipy-2.0.3-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 e4984567f851d545b87ace279e31b656435cb5b3ae816760c8fc3b2f5f42032e
MD5 58b30a862530c77b2a1e78add9d6c108
BLAKE2b-256 b4960a39c1ec81a61815883c13a6a426d7f220b7eb531352503dee596efe0af1

See more details on using hashes here.

File details

Details for the file platerecipy-2.0.3-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for platerecipy-2.0.3-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5028dae487a12a7f6567086f6472be6de372710aa794ebc5d6d9a9eb24dd9511
MD5 09b918c3001b68bad69b0fc977221bc7
BLAKE2b-256 8c906a153fe0f9c52253b5b4967babc2ce04454ab7ce55234e68ea2e5edc649d

See more details on using hashes here.

File details

Details for the file platerecipy-2.0.3-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for platerecipy-2.0.3-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 c12160331b44a91f60a5d2427ad69d7613e561746c0b573f499e4fc4b15453ec
MD5 80a32586e6997c43f02fd8ce02d83add
BLAKE2b-256 35b3cb1f0667bb561c5b594ce11aa2462394548277f9f2882cb2a5394c693b37

See more details on using hashes here.

File details

Details for the file platerecipy-2.0.3-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for platerecipy-2.0.3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e8bf34dd2079c1778643589c715ade6b6367b3a469c499b7e08b88ba3d80aed6
MD5 5f8270891bf3fd8ab14f6fc9aa3ec150
BLAKE2b-256 e94d056af076e4e8ba60e25e75a202c2db057e117f249217d52b5ddd1e3e77cd

See more details on using hashes here.

File details

Details for the file platerecipy-2.0.3-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for platerecipy-2.0.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 5fbf4fb571fe18726df8a28ed81cd43e65d445a6fa519d2228cd0ca684378da1
MD5 9a6ed8f48cfab4a6bc4990999f041cfd
BLAKE2b-256 281387297324206e1e896a72da2e87f8ec8aee6fc0f55085056bf935f5cab9cb

See more details on using hashes here.

File details

Details for the file platerecipy-2.0.3-cp312-cp312-win32.whl.

File metadata

  • Download URL: platerecipy-2.0.3-cp312-cp312-win32.whl
  • Upload date:
  • Size: 46.1 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for platerecipy-2.0.3-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 923418ca2fe9f580630abc20736854ee132aa49fd33425d791ee9e2ad46b6f5e
MD5 fa0d60d8217877dee91eaa11e40dc805
BLAKE2b-256 fb1d747815e0e1ea3422e48eb5148e989f9fd73f7e213365e29271d25097d202

See more details on using hashes here.

File details

Details for the file platerecipy-2.0.3-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for platerecipy-2.0.3-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 697fc14da5ef3c13e298b67bcae77b43d45b89a806333d1482c3711632eb6309
MD5 9bb0240084ae50f39cfc60d14707c186
BLAKE2b-256 04f4d81b64ff68bc6da07a8da1290e375ed10d5b85a3b2bbb6b4d3262095a371

See more details on using hashes here.

File details

Details for the file platerecipy-2.0.3-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for platerecipy-2.0.3-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 d49c33fca251dd5111ba939cadd8cf18c0f21d0d1e2078126d8a027aab2f201b
MD5 a812e395cd7021655d4e574aac1a1fa7
BLAKE2b-256 84249974d97065c342ebf26b35c81b66ed2872969a5dc8a5d8884446a3fa62d4

See more details on using hashes here.

File details

Details for the file platerecipy-2.0.3-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for platerecipy-2.0.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e138aec2775a0ba91e440fee3ce43954e1c430af987efb67df1a9f588ffb7b55
MD5 dd9b4b466ec3886a3bfc6607bd0d0dd8
BLAKE2b-256 4e12bfada492968218b700827a64eb5b3ee39c84f108858e6e8e696a0a83eb88

See more details on using hashes here.

File details

Details for the file platerecipy-2.0.3-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for platerecipy-2.0.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 fbc8a3e739ff2f09b8561decd0476677fcb678a523e1c933ba44cd30f280456a
MD5 98fffffc9f98bafcc7c0a0bedb205e28
BLAKE2b-256 1fde76b23bf2b373de5eba795f01fed4bcd132630d9a255fa74a465a15ab0368

See more details on using hashes here.

File details

Details for the file platerecipy-2.0.3-cp311-cp311-win32.whl.

File metadata

  • Download URL: platerecipy-2.0.3-cp311-cp311-win32.whl
  • Upload date:
  • Size: 46.1 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for platerecipy-2.0.3-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 5a6fd81fbc8da1420f15b06e0343a20eb11d52fe95feb4943b56b2334430e805
MD5 772b4f60235356aa01ff4a61c69b964a
BLAKE2b-256 049d9d36614aa173b02fdd032274fa3354f0904d1d2590ddc20469f6d4665706

See more details on using hashes here.

File details

Details for the file platerecipy-2.0.3-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for platerecipy-2.0.3-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3a0ac4567e5cb9fb1b91903fa5d577bbfbec57fa9bf84ddcab3ea71806dd00d3
MD5 0031b8240d347643c993af261e529629
BLAKE2b-256 fee9a60f255df76a3a8059f393d6f7acd077e22a010081aa0a61b549ec5b93c2

See more details on using hashes here.

File details

Details for the file platerecipy-2.0.3-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for platerecipy-2.0.3-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 792c840c10cba6060dbe5ce5dd9ec2aac0b4b678f5c3de33272d4da4ae430b4c
MD5 298104b064b008a8a338ceabdfce8dfc
BLAKE2b-256 6332a1cb4e6041b3bcb25bf491723d81215f616b26de97ac689da0d31ab129bc

See more details on using hashes here.

File details

Details for the file platerecipy-2.0.3-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for platerecipy-2.0.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 451da5d641edeec19e30db27d84864d64147da2fdfb66798de97f6cd483acf31
MD5 deaa84b4061ce46ea34c09d33ca11962
BLAKE2b-256 8b87b50334e04fc98791e8bea2072e7455799756852f56faafd5a6d7cb5247ae

See more details on using hashes here.

File details

Details for the file platerecipy-2.0.3-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for platerecipy-2.0.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 d64fc428ff62ed9c65237f878a6f9db91c9512b910abb8f96f662e36d39acfc7
MD5 7a0d735e7d544a6b2911a42419e696b9
BLAKE2b-256 a0089037e172477f93d34cab4f33740911ce464c542ca5c5dc9f196a8680819f

See more details on using hashes here.

File details

Details for the file platerecipy-2.0.3-cp310-cp310-win32.whl.

File metadata

  • Download URL: platerecipy-2.0.3-cp310-cp310-win32.whl
  • Upload date:
  • Size: 46.1 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for platerecipy-2.0.3-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 abe1ecb1bcbba4e5d5398c5ae3eb22c0783389a4793ce20c96823909fce5c496
MD5 9c579d64fa9cc97e4e8b9f82a0b512aa
BLAKE2b-256 010889af06e853d2848e7415e4e7ba1f5225894059a7a8a4bed2df4cefa874ca

See more details on using hashes here.

File details

Details for the file platerecipy-2.0.3-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for platerecipy-2.0.3-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 273b361c72aa746e6548d92829641d4cdfd96a17c888c83c52f297e8ed9681b1
MD5 308bee2354422c555de270d7646521ca
BLAKE2b-256 7014ae14002f27e9300e4110224b96fa4ebba3c50e758932977d06e57f06dec6

See more details on using hashes here.

File details

Details for the file platerecipy-2.0.3-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for platerecipy-2.0.3-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 3c4ece87d8e292dc79fb462acc5313e612bca3f06f18a51c58bf49a89bcdd340
MD5 1fdd53de92a371023a60253379c57709
BLAKE2b-256 e32f364568adfa13010a3a6d5d7188e93d9ab195b339d3475aa47b748c58ae7a

See more details on using hashes here.

File details

Details for the file platerecipy-2.0.3-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for platerecipy-2.0.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d719d15181aaa5e8ad77a87f13c9b59c7ba7b97d5fe704676de31f08cf807fe4
MD5 750bb21759446105ecd1b894c2235f68
BLAKE2b-256 203ce5a64c5aa7eeb5cb7f5ebc7188af0fa824cb6edae21baa96f2003a2ea9e3

See more details on using hashes here.

File details

Details for the file platerecipy-2.0.3-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: platerecipy-2.0.3-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 50.8 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for platerecipy-2.0.3-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 c0bfef9e9b421d0e12cd560d72450bed48dc122e5abefc638217eff6686066a3
MD5 4d2c2b42756c4e18ff360a53fde8ee26
BLAKE2b-256 a9039830986405ba9d8abd99afc94aed183cb67bfe154b2037fac74230100fe5

See more details on using hashes here.

File details

Details for the file platerecipy-2.0.3-cp39-cp39-win32.whl.

File metadata

  • Download URL: platerecipy-2.0.3-cp39-cp39-win32.whl
  • Upload date:
  • Size: 46.1 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for platerecipy-2.0.3-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 ccb233199d6e37ea0652fb780d0d2c2b33b4c7aa44ac3ca01567386572b41c5d
MD5 025bf41d71e6870274a077250815d36c
BLAKE2b-256 645145ba5d2efc4808d7fa746b768d1a8305c54466c1919ae50fa1f536ffb332

See more details on using hashes here.

File details

Details for the file platerecipy-2.0.3-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for platerecipy-2.0.3-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e4db3eea858a0509828f3fa2bced56c327a840969aef49c0ee326f8a1674000f
MD5 b585775f9b6a7d116622290da683563b
BLAKE2b-256 274b242574a5eae3d51616bcda1ea4c5b0514b32ffe1da32eef5359b7e16966d

See more details on using hashes here.

File details

Details for the file platerecipy-2.0.3-cp39-cp39-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for platerecipy-2.0.3-cp39-cp39-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 0ea8e7c5b978ea9609181022083b63ffd8b403ad5fd607b3c04fe149d8064504
MD5 f7d5b78873b809d97db20a44069e25c6
BLAKE2b-256 07189dfa3acb13bf6dbad14cad960104607fa0ea402b5f9b0cbaf674cc11ab33

See more details on using hashes here.

File details

Details for the file platerecipy-2.0.3-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for platerecipy-2.0.3-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 99107db228e74bcaa7d5b699ed2bf88dbbabe2c02d646d5f0664a43e8af94a03
MD5 90655a99fd6d22182dbc61b0d9fb729a
BLAKE2b-256 37c0e408d17a244cbea0a1d75eb7c8187b9ca9cb066ba7743f7eea4324a8eef6

See more details on using hashes here.

File details

Details for the file platerecipy-2.0.3-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: platerecipy-2.0.3-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 50.8 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for platerecipy-2.0.3-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 a812d4e1725e6a050d8f69ce436f0a8bcc610caef0ec6ca85d35c1a9087fb1cd
MD5 6828f74f33fef7d967119112f3846022
BLAKE2b-256 723b6905134b4f78a47bf2479c0878d51a3e76ed7377893fa787650198a6c403

See more details on using hashes here.

File details

Details for the file platerecipy-2.0.3-cp38-cp38-win32.whl.

File metadata

  • Download URL: platerecipy-2.0.3-cp38-cp38-win32.whl
  • Upload date:
  • Size: 46.0 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for platerecipy-2.0.3-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 84b2eae0888c78c6f9f7df86b6368d2f8707cadb599c261adb17f620b8efb843
MD5 e600a4998cbc8e88996199ce6f57cf58
BLAKE2b-256 d969801a950f52b8a6f9574e6478737f490b5b8f4b8480df2f9a5d31ccc95321

See more details on using hashes here.

File details

Details for the file platerecipy-2.0.3-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for platerecipy-2.0.3-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f09a360113fb9d38ced4c8988e5ad37060fff079c7ceeb58d625c6b7689b49b9
MD5 84b9b901a42ac83bb608761872f9cb34
BLAKE2b-256 72f42c2a4e1d8b9daeb21934d2288c65a9c1b92c905d61ce5bc20f66ff5a061a

See more details on using hashes here.

File details

Details for the file platerecipy-2.0.3-cp38-cp38-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for platerecipy-2.0.3-cp38-cp38-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 fddb387d85e2d6c2e0db65d7ae51834f3f59c07954d93e72e19cee802c6f0ed8
MD5 faeed12fbe7898fc8969d2ea363e7d21
BLAKE2b-256 40c37b2d2e9d310188027ae2a5decedbb3ed449ad9585e74105a9e926960fd6d

See more details on using hashes here.

File details

Details for the file platerecipy-2.0.3-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for platerecipy-2.0.3-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ed139d80a660e44c146d56546b59ba75494b88f8e53a9f1cae99bf3d1cd639e2
MD5 f335ec2e36d214b9adab2a4458947db4
BLAKE2b-256 3ff399111547aec51741c6aa50efa78e9962170f9f545b133c60aeee3bfaedc2

See more details on using hashes here.

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