Skip to main content

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.

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.5.tar.gz (34.3 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.5-cp315-cp315t-win_amd64.whl (43.9 kB view details)

Uploaded CPython 3.15tWindows x86-64

platerecipy-2.0.5-cp315-cp315t-win32.whl (42.4 kB view details)

Uploaded CPython 3.15tWindows x86

platerecipy-2.0.5-cp315-cp315t-musllinux_1_2_x86_64.whl (214.6 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ x86-64

platerecipy-2.0.5-cp315-cp315t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (175.7 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

platerecipy-2.0.5-cp315-cp315t-macosx_11_0_arm64.whl (43.8 kB view details)

Uploaded CPython 3.15tmacOS 11.0+ ARM64

platerecipy-2.0.5-cp315-cp315-win_amd64.whl (43.9 kB view details)

Uploaded CPython 3.15Windows x86-64

platerecipy-2.0.5-cp315-cp315-win32.whl (42.4 kB view details)

Uploaded CPython 3.15Windows x86

platerecipy-2.0.5-cp315-cp315-musllinux_1_2_x86_64.whl (214.6 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ x86-64

platerecipy-2.0.5-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (175.6 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

platerecipy-2.0.5-cp315-cp315-macosx_11_0_arm64.whl (43.8 kB view details)

Uploaded CPython 3.15macOS 11.0+ ARM64

platerecipy-2.0.5-cp314-cp314t-win_amd64.whl (43.9 kB view details)

Uploaded CPython 3.14tWindows x86-64

platerecipy-2.0.5-cp314-cp314t-win32.whl (42.4 kB view details)

Uploaded CPython 3.14tWindows x86

platerecipy-2.0.5-cp314-cp314t-musllinux_1_2_x86_64.whl (214.6 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

platerecipy-2.0.5-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (175.6 kB view details)

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

platerecipy-2.0.5-cp314-cp314t-macosx_11_0_arm64.whl (43.9 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

platerecipy-2.0.5-cp314-cp314-win_amd64.whl (43.9 kB view details)

Uploaded CPython 3.14Windows x86-64

platerecipy-2.0.5-cp314-cp314-win32.whl (42.4 kB view details)

Uploaded CPython 3.14Windows x86

platerecipy-2.0.5-cp314-cp314-musllinux_1_2_x86_64.whl (214.6 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

platerecipy-2.0.5-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (175.6 kB view details)

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

platerecipy-2.0.5-cp314-cp314-macosx_11_0_arm64.whl (43.8 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

platerecipy-2.0.5-cp313-cp313-win_amd64.whl (43.4 kB view details)

Uploaded CPython 3.13Windows x86-64

platerecipy-2.0.5-cp313-cp313-win32.whl (41.9 kB view details)

Uploaded CPython 3.13Windows x86

platerecipy-2.0.5-cp313-cp313-musllinux_1_2_x86_64.whl (214.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

platerecipy-2.0.5-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (175.6 kB view details)

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

platerecipy-2.0.5-cp313-cp313-macosx_11_0_arm64.whl (43.8 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

platerecipy-2.0.5-cp312-cp312-win_amd64.whl (43.4 kB view details)

Uploaded CPython 3.12Windows x86-64

platerecipy-2.0.5-cp312-cp312-win32.whl (41.9 kB view details)

Uploaded CPython 3.12Windows x86

platerecipy-2.0.5-cp312-cp312-musllinux_1_2_x86_64.whl (214.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

platerecipy-2.0.5-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (175.6 kB view details)

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

platerecipy-2.0.5-cp312-cp312-macosx_11_0_arm64.whl (43.8 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

platerecipy-2.0.5-cp311-cp311-win_amd64.whl (43.4 kB view details)

Uploaded CPython 3.11Windows x86-64

platerecipy-2.0.5-cp311-cp311-win32.whl (41.9 kB view details)

Uploaded CPython 3.11Windows x86

platerecipy-2.0.5-cp311-cp311-musllinux_1_2_x86_64.whl (214.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

platerecipy-2.0.5-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (175.6 kB view details)

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

platerecipy-2.0.5-cp311-cp311-macosx_11_0_arm64.whl (43.8 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

platerecipy-2.0.5-cp310-cp310-win_amd64.whl (43.4 kB view details)

Uploaded CPython 3.10Windows x86-64

platerecipy-2.0.5-cp310-cp310-win32.whl (41.9 kB view details)

Uploaded CPython 3.10Windows x86

platerecipy-2.0.5-cp310-cp310-musllinux_1_2_x86_64.whl (214.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

platerecipy-2.0.5-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (175.6 kB view details)

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

platerecipy-2.0.5-cp310-cp310-macosx_11_0_arm64.whl (43.8 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

platerecipy-2.0.5-cp39-cp39-win_amd64.whl (43.4 kB view details)

Uploaded CPython 3.9Windows x86-64

platerecipy-2.0.5-cp39-cp39-win32.whl (41.9 kB view details)

Uploaded CPython 3.9Windows x86

platerecipy-2.0.5-cp39-cp39-musllinux_1_2_x86_64.whl (214.6 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

platerecipy-2.0.5-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (175.6 kB view details)

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

platerecipy-2.0.5-cp39-cp39-macosx_11_0_arm64.whl (43.8 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

File details

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

File metadata

  • Download URL: platerecipy-2.0.5.tar.gz
  • Upload date:
  • Size: 34.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for platerecipy-2.0.5.tar.gz
Algorithm Hash digest
SHA256 5ccdfb3486d05bf70bba55faffe581891a3e98d8628b852ef4bdda5b75915987
MD5 cdacf9459afd4b3cd221b4d71447a3f2
BLAKE2b-256 d6766d9c23134452443b0301c0e5bd9b31b2b240b8160ce445acb215801a966e

See more details on using hashes here.

File details

Details for the file platerecipy-2.0.5-cp315-cp315t-win_amd64.whl.

File metadata

File hashes

Hashes for platerecipy-2.0.5-cp315-cp315t-win_amd64.whl
Algorithm Hash digest
SHA256 8bc8871d66b1c840152feb3543f20bdbebf5b83aea47568e319dbe429a0924ea
MD5 6454d5edd3ab3721a9ab40c0a25a48dd
BLAKE2b-256 cab77f71c50447454185663975d5763b74f2f4e7d668da7ffcf538faa7c28ef9

See more details on using hashes here.

File details

Details for the file platerecipy-2.0.5-cp315-cp315t-win32.whl.

File metadata

  • Download URL: platerecipy-2.0.5-cp315-cp315t-win32.whl
  • Upload date:
  • Size: 42.4 kB
  • Tags: CPython 3.15t, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for platerecipy-2.0.5-cp315-cp315t-win32.whl
Algorithm Hash digest
SHA256 bd4c8477a6f0d7e32f3eabec93da0e4630d8af9b922b01d7fecc9200f5eb1765
MD5 578c5df74c0f375e98bdbd5c29fe5838
BLAKE2b-256 7414bb1ec40e5330eddf29830be35b3cd066a655441a74cb7f408f560a484ae3

See more details on using hashes here.

File details

Details for the file platerecipy-2.0.5-cp315-cp315t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for platerecipy-2.0.5-cp315-cp315t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5b263af97aeeec4fd93d01f6697bc9424adc5d703c088c8ae994ebc7eb7affe3
MD5 29c2dd21d04349364ba9f0c27d0b4e85
BLAKE2b-256 3cd50c46a136c232a819b67cca995d9d589926a2eccb1b3bcad80d70330a1fc1

See more details on using hashes here.

File details

Details for the file platerecipy-2.0.5-cp315-cp315t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for platerecipy-2.0.5-cp315-cp315t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6a5849f1550c9881bc77e3dea97281ec9c6704104bf4d2e590e4162c2b0e45cd
MD5 041a8b4647569f640bad04a5ee4c7203
BLAKE2b-256 1ae7c2c53721397468e10aa8b4f320f146c3781e7fc01fd3b5cdc990775c78e9

See more details on using hashes here.

File details

Details for the file platerecipy-2.0.5-cp315-cp315t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for platerecipy-2.0.5-cp315-cp315t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6eb37e5e40bcc736cfbf2ff72524295f5ce9efb32a4f8960d93972ea8462efc2
MD5 a8712cad5eab4f166f2e92bcea48c9bc
BLAKE2b-256 e493449ae5f3095cc8cd0e44fd36101bccfdab27259c7d3fed02f65329ba0309

See more details on using hashes here.

File details

Details for the file platerecipy-2.0.5-cp315-cp315-win_amd64.whl.

File metadata

File hashes

Hashes for platerecipy-2.0.5-cp315-cp315-win_amd64.whl
Algorithm Hash digest
SHA256 7c7a20e565e7313f73e6e4cfdbc44c18a9c37c77f30f96c5f28698fbb1957fc6
MD5 a1cfc6c35f984a4309c7fd479b1b2fec
BLAKE2b-256 81975fcd9927ac0b3d8821c516511eabb059e89a126f760cd8de8539f4578fe6

See more details on using hashes here.

File details

Details for the file platerecipy-2.0.5-cp315-cp315-win32.whl.

File metadata

  • Download URL: platerecipy-2.0.5-cp315-cp315-win32.whl
  • Upload date:
  • Size: 42.4 kB
  • Tags: CPython 3.15, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for platerecipy-2.0.5-cp315-cp315-win32.whl
Algorithm Hash digest
SHA256 feb5f0fcc58b088f6069e7bc6760e7c7019191b82b38e7877d8b0d32c9b3d490
MD5 145bb176f1ab1f7025817acb903495ec
BLAKE2b-256 4f2f4175e7962eeeb18e0cf6fa92c36df3c68179698435d41ef913ce4ceea75e

See more details on using hashes here.

File details

Details for the file platerecipy-2.0.5-cp315-cp315-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for platerecipy-2.0.5-cp315-cp315-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6798000787cb83a1038939998abef1f30a30b26a9218efa2604aaba7c2620a2a
MD5 dcb2c43fdba811ab5ac0f786cc84362d
BLAKE2b-256 1d1e7059aea0a10c395da6984fcdb7227dfe2b8a670921c14442591a7b6eb133

See more details on using hashes here.

File details

Details for the file platerecipy-2.0.5-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for platerecipy-2.0.5-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 37bd887e8bfac6095473d7e86ee235550b19f1a13cd8ab2dcf95b2fc8720ccca
MD5 81fc8a9fe94a8aeb6e81120c613bc88e
BLAKE2b-256 948cb2a8ec544baf6a3efa678c13a465657ca5b10b70fbdf1dbd6ea4f5976635

See more details on using hashes here.

File details

Details for the file platerecipy-2.0.5-cp315-cp315-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for platerecipy-2.0.5-cp315-cp315-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 552afad404f2f3a625945d5c6cd9a3a51c7aa24528140ba36d857c53798bd504
MD5 5334194d2c0b87fad56fabc7035dbc54
BLAKE2b-256 39da58cd327e7bc72ce22b603f4443db40af10aab3783869c39d668d49bee02f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for platerecipy-2.0.5-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 66e550fe96a8692abd3a6c688b691c0d063355031cc6a1cec067434b872d2aef
MD5 6d6aa0e0897aed1e0c2940b229543c8e
BLAKE2b-256 717ee87e32499dbe54b1eaf9ff93d91f398ef663d7db97580c1176e4b0a5279f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: platerecipy-2.0.5-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 42.4 kB
  • Tags: CPython 3.14t, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for platerecipy-2.0.5-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 0c14eedf5f45abab3c0b1ee4ed66680cb88534ea53cdb7bb6452c48656166433
MD5 d2811499c6a9b22c484647485a59ce55
BLAKE2b-256 48fa948ab86d84fcb283dc3ff8a647bdb19577016e76c6845672688e73c44a92

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for platerecipy-2.0.5-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 347a906195d543e4919f2e73db94357ab592beed78e7ddf813e7b042b0589e5d
MD5 2afba352ea5c0403916987e1e7dd5471
BLAKE2b-256 bd04da06c2a35eee24d7f2c2854069baefa7dd6d6b5aec3284d58ae806ad5b89

See more details on using hashes here.

File details

Details for the file platerecipy-2.0.5-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for platerecipy-2.0.5-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2efa89adb38d1d5d034beddc006f5883ee3aa2fad8cd379016fc0558525c21cd
MD5 a4e84545b90910b788d283ab38a7d8a6
BLAKE2b-256 40e97b08d72a0e732a638c5db7d022c6b9a55d830a5d730e14fef4e0e5b8ce1e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for platerecipy-2.0.5-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9ae9bbb8f95ef5f89f120830a5cb840482caaf3d19bc9c20392a5f02012a398e
MD5 41bdc4c0b8ca6958f315068e7d304c11
BLAKE2b-256 4b6340cc1971ca53da5a0ee7190539708403cbab7ed4ed880e5d9e9cf891bc28

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for platerecipy-2.0.5-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 b1aed66b2984c5ba10749de2340ee6294ee3ecf156de8f672e9df44c00f10ad6
MD5 540b31baf3f27fc9a88c89d1921ff4e5
BLAKE2b-256 a475e387f072d28b304bb6dac9462ca0f203454aae01bc221a4186215a2b3482

See more details on using hashes here.

File details

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

File metadata

  • Download URL: platerecipy-2.0.5-cp314-cp314-win32.whl
  • Upload date:
  • Size: 42.4 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for platerecipy-2.0.5-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 6e771426d844d56886e6a9db9d05f33fe8167b75976e92b38f18179055e4a94b
MD5 9d194c39b93699962aa061f6d78274fd
BLAKE2b-256 af81a7b1526c45cdc602c6ccd4c0e1dff6d78fd2579055fa8d57e373cf4666e2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for platerecipy-2.0.5-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 03b0e15311983cddc9e65925d948c1e47caa5e4b3e5570b8ae8c668039b5509d
MD5 2ca130aab156acef0ea85bf4f4f9e574
BLAKE2b-256 fd0e1013ac66cd68c57709b189566d3d00196e5b6482c777b94b861aad9a9dc4

See more details on using hashes here.

File details

Details for the file platerecipy-2.0.5-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for platerecipy-2.0.5-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0f3a08dcb17c8aed64f115e8b4e7443a31f683622545b6fb8b69a2d0ac83d193
MD5 fd97997002b20ffc6b661f26e7cf4d96
BLAKE2b-256 6e6c1b9d53da4bb84ab8baeae93edfb00e09bd936043083ee96cf558038eb3b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for platerecipy-2.0.5-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dd15a5c57106e070cd25fd7ba2dcaad75b0268f53e266a7ee1d29d84a60b3074
MD5 b16236e2b1bccc906895eefaefbe6dfd
BLAKE2b-256 3c6bb0e31c98cf83e7af09fe8e90fa2cfffd3662cd45cc229d1f8bc0013b56bb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for platerecipy-2.0.5-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 adbda7b06ce9f1baef580cac189e25477413b956f7afb96fe85fac1023ebfb10
MD5 7c5d2ba17558be79a588abcf99aa2145
BLAKE2b-256 76806e569558395c427ebf4005207ccf827ff14de95a21594459a2163f05e517

See more details on using hashes here.

File details

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

File metadata

  • Download URL: platerecipy-2.0.5-cp313-cp313-win32.whl
  • Upload date:
  • Size: 41.9 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for platerecipy-2.0.5-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 e30e6bd1165be8ee71556de1ca740486f3fc853c21cb45fc1e823745e4b3d01a
MD5 ff1e5161ba2e8136339604b04af832d1
BLAKE2b-256 348b011115eb31e63c6a9d7634776d6e2f652b27d5e37a6240b3a6b4b5e92dcd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for platerecipy-2.0.5-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 998589554f5e3bfa88a43f6f3f75780a5f4d61f2b8e25270f649b633b0f8cc3f
MD5 eb91246394d48f1c1650e2af3ed5ec89
BLAKE2b-256 a85d8ef06a011e999d2267d400311988850aaf03b933d24ee8660d02ff780efe

See more details on using hashes here.

File details

Details for the file platerecipy-2.0.5-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for platerecipy-2.0.5-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ead76895b293eacbdd36128939d3c9b11a76a092892ed98ddbc5a8c628b39f54
MD5 01bed057dd776503a7ac622e20a4a072
BLAKE2b-256 3cfe8b4e496d235569d66f792f2d5802c1ad2ed27c2ead2e2e15665ab74c14b5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for platerecipy-2.0.5-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b3dd48336cd73f8e7c616c605948cf85867da71b03af4f2a56c5f929bb62d518
MD5 2952b9483e6f5004adfbac24c965d35b
BLAKE2b-256 a41092f51c21ca1c0a8d1b39103fefe8c32e3145e1224109e4efb21af4078b66

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for platerecipy-2.0.5-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 62f8890a01b1a3d77e649b7684b4c216ec4de29940243dfb863d7e5cd7fd1497
MD5 fee505a67e0e9321d8d51ebf28624467
BLAKE2b-256 815e94712155e26a45d6a04b7daf0983f5dfe7e96591956d8e0898a30747677b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: platerecipy-2.0.5-cp312-cp312-win32.whl
  • Upload date:
  • Size: 41.9 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for platerecipy-2.0.5-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 b264fe48eefa420d84685dda026c6fd8288672afd0ff005a1003cf71851aff7b
MD5 33c460e58b766be36d84e71409b00e16
BLAKE2b-256 e6ff12311750a616761121152259fdcf6b1eea6dca3f87f65b227b36e85a50d3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for platerecipy-2.0.5-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a762b07c9c235da2002438abdf3cb0b5b6d4cf9e70a7438ff198c92be5359f3c
MD5 90392c964b8c5002fca0553b3d7a9f53
BLAKE2b-256 8df8d52d5718f8e2577c5eb335247bdd26a10a3a4e191f021f91729c8294e166

See more details on using hashes here.

File details

Details for the file platerecipy-2.0.5-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for platerecipy-2.0.5-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 be240b3adb93087ab00edd73523c06dbb51429560ca9c720d8f3dea619db3291
MD5 43ec79d0a7508514b6f3cf0dcde95abd
BLAKE2b-256 e0a5b1aa6261cd7e8e7549b7c0d35d5424c1e8c5aefb3aa881ce03ca63fdbe57

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for platerecipy-2.0.5-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 594eea0c0e28b3bfeb07fad3217e57fff9f09e45fff4be67072e6f7f1ca70490
MD5 50632f78bce5b10260f4f9837e1156b3
BLAKE2b-256 3ec2b9bdc55dbfb720aec25124345bceb18fed203315f4304f75bbc55fd8d78d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for platerecipy-2.0.5-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 0afc46c336d6e470a2a8d5344e36c68e67c3f481f7d3209b868b2acfa7cccb12
MD5 63ed89ee714a1e32fb30df9c056a735a
BLAKE2b-256 3a2cd9e0847f148593e1d265669a13342f85a31f8ad0f79c8332018d6f7e8fb5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: platerecipy-2.0.5-cp311-cp311-win32.whl
  • Upload date:
  • Size: 41.9 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for platerecipy-2.0.5-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 dc113cbdd20fa5e8766a6f2dccce68de66e7159dffeacf4f2d1cdb3021ae79cc
MD5 891e595fa01357df381dd1cded0f2111
BLAKE2b-256 4cd8fb110158b2f1515f24bf6c5caca686efa9539da498ab98c9d4f9701a910f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for platerecipy-2.0.5-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 66972315fdbf5e4e9292784516d48e7e77e68fb6bb4f19195f532c67475e8f9e
MD5 6a250cd2dc00c07534fdbf85b3b36951
BLAKE2b-256 468c3f53d69f2b41dc5018da2f765dfabe547ab3dd061fde7caf3a445b4b5b3b

See more details on using hashes here.

File details

Details for the file platerecipy-2.0.5-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for platerecipy-2.0.5-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e30d1f52409e92e6fc6be58af9ddf314b71e49ec9d596a312961d76f64f3ff26
MD5 4dafed23ee93f0825c68e2d59d8f5fcc
BLAKE2b-256 9429876b35237bbcba0cf6193c1e7bcb43136be92e08ae8df6f91ca49113c64e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for platerecipy-2.0.5-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6ecfe318c0034cda57c0e2b2260ec41b28b4784a03876a592027f5080a66067f
MD5 cec517e577f1ccf76357cd9cc2be870a
BLAKE2b-256 3fafd8e8eb15feccb1cbffec968afc387a11bb35afaa1711b1c7d704ce650c23

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for platerecipy-2.0.5-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 41109e4e4830599d2f9f3b541ae38dab68cd9496bb77108b6b61596a8feffbad
MD5 8b5f88592c4064873d473ac07cd2f2e3
BLAKE2b-256 36b540f83fcfe672d81ef791c25e83bf5aa3d25199ee873aba7d150024405664

See more details on using hashes here.

File details

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

File metadata

  • Download URL: platerecipy-2.0.5-cp310-cp310-win32.whl
  • Upload date:
  • Size: 41.9 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for platerecipy-2.0.5-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 e7f717e52873ad624694c00b490f377a785f9db4f238c2e431ad099ba45f689f
MD5 b7e03685e8e7c81f154366d7e9f8dee5
BLAKE2b-256 dcf69990f2db60e62792f5105fb280e045838173cf7f82cf1f246e9e0e6825e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for platerecipy-2.0.5-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e7771b39738bc313023068bc7510e63c8b1b4b0ada118e1a3bd5dc112d59711d
MD5 954941f5df4265686a56e83f48fe6246
BLAKE2b-256 7e05762edf47da684e37bd6a79440669c05626dc9e9cd24016566251a786048c

See more details on using hashes here.

File details

Details for the file platerecipy-2.0.5-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for platerecipy-2.0.5-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a1fdb41a01eb1308f51a027acf2d52703a812b581c3c7b7908965d347c6ee875
MD5 4fe4af6ecad0bd7038002efcb9956a77
BLAKE2b-256 a2733e670e83be2ed768e58e4107199c49e2ed235459d3554c4770604c64dbd2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for platerecipy-2.0.5-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fff9fbafa24d71b099a4d061cb861b0522e8996995ec147cff8bc0651275c104
MD5 9bae19525245c899ae01dda332c759ae
BLAKE2b-256 081528606fe5c7478b2a2835d1855dfbeb9cbed80995cd4b90f6b1160f204aba

See more details on using hashes here.

File details

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

File metadata

  • Download URL: platerecipy-2.0.5-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 43.4 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for platerecipy-2.0.5-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 d72a8a4b5b72c1b3702d25348daba5bd83f8f4470ddfad30549dfdd59ee205ef
MD5 8bcf4968fb33ad19953d5396e7ef8a5b
BLAKE2b-256 743bf7b1e90fd132c335d4ca49cd083233c4fdf2d1d6233231d1cbfa3e799a3c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: platerecipy-2.0.5-cp39-cp39-win32.whl
  • Upload date:
  • Size: 41.9 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for platerecipy-2.0.5-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 0e88ff8283e71552b3b8b03e602ad88a27ecb8ee517d71e1784290f6e2cac955
MD5 e89a4f7330f4a2059ec38905394b9b81
BLAKE2b-256 0b5cfcf477e89065227d52ffd268685419edfd81d814f388024245f224ce982b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for platerecipy-2.0.5-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4713bad33f0e5414e2c5f12082a76557146841725ac7f8cda7fbf6c3ba397d99
MD5 ecf29bddb3538f09b05293d285ae9ecc
BLAKE2b-256 f1320456eea1158cd3921850ca7aa904d93a4306c62c8460b1541f1d742284bd

See more details on using hashes here.

File details

Details for the file platerecipy-2.0.5-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for platerecipy-2.0.5-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 132068b2f46274496092c337fd206e82d68de47555671c83aa7fe1beb0ec01ef
MD5 fafda996b6fbce250785cd6e2de4831a
BLAKE2b-256 a02a57985a47b1677bea0d93cf9ae572b3a885d8d9e5d18856d61e448f6c8a73

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for platerecipy-2.0.5-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 12c71340915bb77e0a8c089580848462fdd5682865411e73d952b013de164bcf
MD5 1fa6f58d98f88d562dcdeb9b718552d1
BLAKE2b-256 9525a02b81cf2f3dd774c2935b00455e473b3b9a6c2712c7c66c34d023699b1b

See more details on using hashes here.

Release history Release notifications | RSS feed

This release

2.0.5 This release

46 files

2.0.3

41 files

2.0.2

41 files

2.0.1

41 files

1.2.2

1 file

1.2.0

1 file

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page