Skip to main content

This package is applied to calculate thermal indicators for human biometeorology. The available thermal indicators are Physiological Equivalent Temperature (PET), modified Physiological Equivalent Temperature (mPET), Predicted Mean Vote (PMV), Standard Effective Temperature* (SET*) and Universal Thermal Climate Index (UTCI) in this package. An additional function named GlobalRadiation_Tmrt is appended in the package for applying G, N, and Omega to calculate Tmrt from part of original RayMan model code.

Project description

Biometeo

This package is applied to calculate thermal indicators for human biometeorology. The available thermal indicators are:

  • Physiological Equivalent Temperature (PET)
  • modified Physiological Equivalent Temperature (mPET)
  • Predicted Mean Vote (PMV)
  • Standard Effective Temperature* (SET*)
  • Universal Thermal Climate Index (UTCI) An additional function named Tmrt_calc is appended in the package to calculate Tmrt from part of original RayMan model code. The simplest approach is only the given solar constant which is related to the local target time and coordinate information including longitude, latitude, and elevation above sea level. The more accurate approach adds global radiation or cloud cover ratio as a variable, while the third approach also includes respectively or assembly additional variables, such as sky view factor, diffuse radiation, and fish eye photo.

Fisheye image analysis is available as an optional feature (see Installation below), providing Sky View Factor (SVF) computation and per-minute solar shading detection from hemispherical photographs.

Installation

$ pip install biometeo

To enable fisheye image analysis (requires pysolar and Pillow):

$ pip install biometeo[fisheye]

Usage

>>> import biometeo
>>> biometeo.mPET(Ta=25, VP=1000, Tmrt=10, v=0)
{'mPET': 20.058999999999866, 'Tcore': 36.56291404743782, 'Tsk_mm': 27.783887684830514, 'Tcl': 26.14411160697839, 'vpts': 29.47963395940036, 'wetsk': 1.0, 'icl': 0.4566093750000002, 'sk_wetted_mm': 0.4394076400546515, 'metabolic_rate': 148.0444953458826, 'wet_sum': 1.6077299882974372, 'convective_flux': 1.683534767054222, 'radiative_flux': -118.78405426047928, 'respiratory_flux': -8.226275136496405, 'energy_balance': 24.325430704258586}

>>> biometeo.Tmrt_calc(Ta=25, RH=10, v=0, longitude=25, latitude=100, sea_level_height=2)
{'Tmrt': 14.796488889048646, 'VP': 3.1620239690859724, 'Imax': 28.629196494701546, 'Gmax': 53.80503898831193, 'Dmax': 25.175842493610382, 'Itat': 28.629196494701546, 'Gtat': 53.80503898831193, 'A': 311.10490647667797, 'Eu': 419.4826669406604, 'Es': 441.198660290955, 'Tob': 21.122122697010358}

>>> biometeo.PMV(Ta=25, VP=1000, v=0, Tmrt=10)
{'PMV': 17.792051916371374, 'Teq': 605.45449764547, 'hclo': 122.70790874039338}

>>> biometeo.VP_RH_exchange(Ta=25, VP=1000)
{'RH': 3162.5313716045744}

>>> biometeo.UTCI(Ta=20.0, VP=12.5, v=0.341, Tmrt=20.0)
20.00801686910818

Fisheye SVF and solar shading (requires biometeo[fisheye]):

>>> import biometeo, datetime
>>> svf, timeseries = biometeo.fisheye_svf(
...     image_path='photo.jpg',
...     target_date=datetime.date(2026, 3, 22),
...     latitude=25.055,
...     longitude=121.611,
...     draw_and_save=False
... )
>>> svf
0.6234
>>> timeseries[0]
{'Datetime': ..., 'Time_Str': '00:00', 'Date': '2026-03-22', 'Solar_Altitude': -..., 'Solar_Azimuth': ..., 'SVF': 0.6234, 'Is_Shaded': False}
>>> intervals = biometeo.extract_shading_intervals(timeseries)
>>> biometeo.save_shading_intervals_csv(intervals, 'shading_report.csv', svf, '2026-03-22')

Input and Outputs

Fundamental inputs Optional inputs Defaults Outputs
Tmrt_calc Ta, RH, v1.1m, longitude, latitude, sea_level_height day_of_year, hour_of_day, timezone_offset, N, G, DGratio, Tob, ltf, alb, albhum, RedGChk, foglimit, bowen" now time, N=0, OmegaF=1.0, alb=0.3, albhum=0.3, RedGChk=False, foglimit=90, bowen=1.0 {Tmrt, VP, Imax, Gmax, Dmax, Itat, Gtat, A, Eu, Es, Tob}
VP_RH_exchange Ta, VP or RH {VP} or {RH}
v1m_cal WS, height v1.1m
PMV Ta, VP, v1.1m, Tmrt icl, work, ht, mbody, age, sex icl=0.6, work=80, ht=1.75, mbody=75, age=35, sex=1 (male) {PMV, Teq, hclo}
SET* Ta, RH, v1.1m, Tmrt icl, work, ht, mbody icl=0.9, work=80, ht=1.75, mbody=75 SET*
PET Ta, VP, v1.1m, Tmrt icl, work, ht, mbody, age, sex, pos icl=0.9, work=80, ht=1.75, mbody=75, age=35, sex=1(male), pos=1 (stand) {PET, Tcore, Tsk, Tcl, wetsk, metabolic_rate, respiratory_flux, convective_flux, radiative_flux, diffuse_flux, sweating_flux}
mPET Ta, VP, v1.1m, Tmrt icl, work, ht, mbody, age, sex, pos, auto_clo icl=0.9, work=80, ht=1.75, mbody=75, age=35, sex=1(male), pos=1 (stand), auto_clo=True {mPET, Tcore, Tsk_mm, 'Tcl, ‘vpts, wetsk, icl, sk_wetted_mm, metabolic_rate, wet_sum, convective_flux, radiative_flux, respiratory_flux, energy_balance}
UTCI Ta, VP, v1.1m, Tmrt UTCI
fisheye_svf image_path, target_date latitude, longitude, tz_hours, draw_and_save latitude=25.055, longitude=121.611, tz_hours=8, draw_and_save=True (svf, timeseries_data): svf (float), timeseries_data (list of dicts with Datetime, Time_Str, Date, Solar_Altitude, Solar_Azimuth, SVF, Is_Shaded)
extract_shading_intervals timeseries_data list of dicts with Start_DateTime, End_DateTime, Duration_Mins, SVF
save_shading_intervals_csv intervals, output_path, svf_value, date_str (writes CSV file)

Citation

The citation about Python package biometeo is still under reviewing. For use of the function or thermal indices in biometeo. The following citations are suggested. For applying Universal Thermal Climate Index (UTCI), the following scientific reports are suggested to be cited.

For calculation of Predicted Mean Vote (PMV), the following paper should be informed.

For using Outdoor Standard Effective Temperature (SET*), the following manuscript is suggested to be cited.

For application of Physiologically Equivalent Temperature (PET), the following paper is highly recommended to be cited.

  • Höppe, P. The physiological equivalent temperature - a universal index for the biometeorological assessment of the thermal environment. International Journal of Biometeorology 43, 71–75 (1999). http://link.springer.com/10.1007/s004840050118 .

For application of modified Physiologically Equivalent Temperature (mPET), the following papers are highly suggested to be cited.

For simulation of mean radiant temperature (Tmrt), the following two papers explain the mechanisms of Tmrt simulation in RayMan and also in Python package biometeo.

  • Matzarakis, A., Rutz, F. & Mayer, H. Modelling radiation fluxes in simple and complex environments—application of the rayman model. International Journal of Biometeorology 51, 323–334 (2007). https://doi.org/10.1007/s00484-006-0061-8 .
  • Matzarakis, A., Rutz, F. & Mayer, H. Modelling radiation fluxes in simple and complex environments: basics of the rayman model. International Journal of Biometeorology 54, 131–139 (2010). https://doi.org/10.1007/s00484-009-0261-0 .

For using exponent equation as reducing mechanism of wind speed from some height to 1.1 m, the following is the original literature.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

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

Built Distributions

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

biometeo-0.5.0-cp313-cp313-win_amd64.whl (830.7 kB view details)

Uploaded CPython 3.13Windows x86-64

biometeo-0.5.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (7.6 MB view details)

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

biometeo-0.5.0-cp313-cp313-macosx_15_0_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.13macOS 15.0+ x86-64

biometeo-0.5.0-cp313-cp313-macosx_14_0_arm64.whl (903.2 kB view details)

Uploaded CPython 3.13macOS 14.0+ ARM64

biometeo-0.5.0-cp312-cp312-win_amd64.whl (833.4 kB view details)

Uploaded CPython 3.12Windows x86-64

biometeo-0.5.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (7.5 MB view details)

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

biometeo-0.5.0-cp312-cp312-macosx_15_0_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.12macOS 15.0+ x86-64

biometeo-0.5.0-cp312-cp312-macosx_14_0_arm64.whl (1.9 MB view details)

Uploaded CPython 3.12macOS 14.0+ ARM64

biometeo-0.5.0-cp311-cp311-win_amd64.whl (865.0 kB view details)

Uploaded CPython 3.11Windows x86-64

biometeo-0.5.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (7.0 MB view details)

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

biometeo-0.5.0-cp311-cp311-macosx_15_0_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.11macOS 15.0+ x86-64

biometeo-0.5.0-cp311-cp311-macosx_14_0_arm64.whl (2.1 MB view details)

Uploaded CPython 3.11macOS 14.0+ ARM64

biometeo-0.5.0-cp310-cp310-win_amd64.whl (859.1 kB view details)

Uploaded CPython 3.10Windows x86-64

biometeo-0.5.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (6.4 MB view details)

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

biometeo-0.5.0-cp310-cp310-macosx_15_0_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.10macOS 15.0+ x86-64

biometeo-0.5.0-cp310-cp310-macosx_14_0_arm64.whl (983.4 kB view details)

Uploaded CPython 3.10macOS 14.0+ ARM64

biometeo-0.5.0-cp39-cp39-win_amd64.whl (859.9 kB view details)

Uploaded CPython 3.9Windows x86-64

biometeo-0.5.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (6.3 MB view details)

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

biometeo-0.5.0-cp39-cp39-macosx_15_0_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.9macOS 15.0+ x86-64

biometeo-0.5.0-cp39-cp39-macosx_14_0_arm64.whl (2.1 MB view details)

Uploaded CPython 3.9macOS 14.0+ ARM64

biometeo-0.5.0-cp38-cp38-win_amd64.whl (952.9 kB view details)

Uploaded CPython 3.8Windows x86-64

biometeo-0.5.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl (7.3 MB view details)

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

biometeo-0.5.0-cp38-cp38-macosx_15_0_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.8macOS 15.0+ x86-64

biometeo-0.5.0-cp38-cp38-macosx_14_0_arm64.whl (988.5 kB view details)

Uploaded CPython 3.8macOS 14.0+ ARM64

File details

Details for the file biometeo-0.5.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: biometeo-0.5.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 830.7 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.14

File hashes

Hashes for biometeo-0.5.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 cb3a64391750a32001f5f850d282dfe0914e652aed46cbf92efa67343441ea1c
MD5 f90ad2b0dfc665edb0613a3c5882cab2
BLAKE2b-256 b0b4affcf0fb3780c7ff42a39faacd38e057571a25fc7724cae1634af8bd39a9

See more details on using hashes here.

File details

Details for the file biometeo-0.5.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for biometeo-0.5.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 476ee53d9c380dc31cf1070adaa9962453d4cbd96a8a60db7357e3d3dfcda3d6
MD5 69b7e8556d1676d4f2e3747d4003c5dc
BLAKE2b-256 cb74868f357cb00c690037c7c91dba52f66cfe738dd22360e0d228d8ba518ee1

See more details on using hashes here.

File details

Details for the file biometeo-0.5.0-cp313-cp313-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for biometeo-0.5.0-cp313-cp313-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 71e98b5f8f5455b5a27301edfe2b399e9a1d735dc223170d6440688a7914fa1c
MD5 9b27a24db4ab41e01d4d9cc004c87cf1
BLAKE2b-256 93176cf65b6ea364286dc1c53dc7effe0a5386367cf383311c3e65825d9e5958

See more details on using hashes here.

File details

Details for the file biometeo-0.5.0-cp313-cp313-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for biometeo-0.5.0-cp313-cp313-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 0677a9e5a04c8d18cd2bd5b2485d0cb5674b1d53980440e555cbfc92b10f93ce
MD5 42adc606f65244413b6552275a2ed084
BLAKE2b-256 774eba6cf4e37516ba1d270dc61475956dc891b25e084bf689846da1133c5d44

See more details on using hashes here.

File details

Details for the file biometeo-0.5.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: biometeo-0.5.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 833.4 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.10

File hashes

Hashes for biometeo-0.5.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 db2b08ea4776ddd27d078a9635815b5a3ca87ecf04de401481fed42766b202de
MD5 fdb1732de82b82cbd420048c06ae5cea
BLAKE2b-256 60b4339ba07cacb95b49d2beeca63edc930ead1adafaf9f9b1a4e863b50cfa97

See more details on using hashes here.

File details

Details for the file biometeo-0.5.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for biometeo-0.5.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2a0ed4cb69666ad1a40ea343ed9ad9399c648eb0ff9dc22358d937cc0e31cad4
MD5 70c5d5f0287e0b8776bf08541f43e776
BLAKE2b-256 65415cf415ac8b039fef67ed599003799645a3447a7d7528379b050bf2b7131f

See more details on using hashes here.

File details

Details for the file biometeo-0.5.0-cp312-cp312-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for biometeo-0.5.0-cp312-cp312-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 f5d0d2969f2e96ff51ac4f6e386e26ed4e7b75a49040c0a5a0efd197951d930f
MD5 0eafa598ae42ad62e4fb1cd06cab3448
BLAKE2b-256 59980d619a510254de8f5051242b6e002296fac62e62ffa5e451a5bfce1dad91

See more details on using hashes here.

File details

Details for the file biometeo-0.5.0-cp312-cp312-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for biometeo-0.5.0-cp312-cp312-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 1db2731ad8836a161becc2b91b891d661e98e60db08b5f618e5d74d8acf1e062
MD5 15d064fb57211d1d105742896ced2e61
BLAKE2b-256 ba4fa77d5308270634d911b5237febf8d9997e970ef42732d653f05ab635ed17

See more details on using hashes here.

File details

Details for the file biometeo-0.5.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: biometeo-0.5.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 865.0 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.11.9

File hashes

Hashes for biometeo-0.5.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 793ddeef31fd4ff219bc2432d50bbeb1a86691125b9dce8a41c5e428402af3e2
MD5 6b675e61116261759f052c89a7e55470
BLAKE2b-256 83558ee5d71315396fa8af37372fc7978546713b8d41f5dfc8367d0d4770ecbf

See more details on using hashes here.

File details

Details for the file biometeo-0.5.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for biometeo-0.5.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f9642633f866fd7da104193d800a06d95a98829e07149fd3cc897cfb9bbb4228
MD5 f21bf81ceead6e723c8b36cda2e2bd25
BLAKE2b-256 c755046b204d020fea969b698c9a97229ddc496dd8b16d8c03ff5e847c1db177

See more details on using hashes here.

File details

Details for the file biometeo-0.5.0-cp311-cp311-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for biometeo-0.5.0-cp311-cp311-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 bb041378e25500c1cf74c754f7502638ff90fa5a3b2de30a97abf0a8e9ab5930
MD5 b16693ed64fe9fed53800982c144c3e7
BLAKE2b-256 1b408334e5b41d3ca96bd9c5ee47090d8ded1f9d8f047f01772188b7dc9ec838

See more details on using hashes here.

File details

Details for the file biometeo-0.5.0-cp311-cp311-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for biometeo-0.5.0-cp311-cp311-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 26860174b1963aaad280e9f0336a8754eeaa45220702667adaf93c9d0fdc0a5f
MD5 fc8bc2ec73e2387fd34546cc048639e0
BLAKE2b-256 ff5aedce3766a271613f6a1b6ae6ef515d4ee826c4ee3bfc77a06fcc19567794

See more details on using hashes here.

File details

Details for the file biometeo-0.5.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: biometeo-0.5.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 859.1 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.10.11

File hashes

Hashes for biometeo-0.5.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 76db072b2009d4b62cab0b3be11c9bf56c3b5f3414b554a8d787b6138a582348
MD5 67d470431719f4843cc82db5a02eefaf
BLAKE2b-256 3e6fae6f1d107d1473d00d2450ba409a0042f8d612fd54130dc0f53d890dc26e

See more details on using hashes here.

File details

Details for the file biometeo-0.5.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for biometeo-0.5.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f7111c0a66c3b9096712f0bae362b5bc091c5c6782678310c1365daf13cd6800
MD5 de435aa52f0dd9ca707168a93c6cabbd
BLAKE2b-256 0248c6e22937d9f15fcd7a6c5ea5beafc344f18cc6e718b3c598705fc917f533

See more details on using hashes here.

File details

Details for the file biometeo-0.5.0-cp310-cp310-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for biometeo-0.5.0-cp310-cp310-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 56e6c6d80b739a5291d4d6c42cf8b53b15af49012f977c8e7f620de305157e9c
MD5 2c65c610c6abe0275511560e5e802bac
BLAKE2b-256 447c94c00645dc11f9890a2ce9fdb2c0eed46c4b53d054fcbc5e1587b3295e77

See more details on using hashes here.

File details

Details for the file biometeo-0.5.0-cp310-cp310-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for biometeo-0.5.0-cp310-cp310-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 786be959645512ee165a2199473094a5092fa57cedcfecd415d0d83fdb307095
MD5 051dfc02c9bc611383e277d1a67dd57f
BLAKE2b-256 53b8e3c277b0cb787ea80133a61e2b9bceb8eb9171d8c0fddc9030eee6c59d42

See more details on using hashes here.

File details

Details for the file biometeo-0.5.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: biometeo-0.5.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 859.9 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.9.25

File hashes

Hashes for biometeo-0.5.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 07fe86e591ccc97662a734862c9b8b625c5b0f1e993100c0ed8d939a7f77f58c
MD5 9f368180dd0f816a78f6772c98670334
BLAKE2b-256 9c8de7d159664cf0f30c658b4420242b3e1258e6afe3816479623c15108d2469

See more details on using hashes here.

File details

Details for the file biometeo-0.5.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for biometeo-0.5.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 472f8dd8bb81396a396db51d095686531ff6b217adc003a1978b3996a17a5a32
MD5 60b5ef0dec22f8e2fe6b64988490f11b
BLAKE2b-256 c6bc42bb6423c7c5711dafd7fe1d009ac9ee5988a1a8f761121acbd9325026fe

See more details on using hashes here.

File details

Details for the file biometeo-0.5.0-cp39-cp39-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for biometeo-0.5.0-cp39-cp39-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 13b18eb7ee860e52b277a4405c12292e33ec63ec29f31b6626696d4ad0b7f1f9
MD5 86c945c1ac8af4ea7a8e75aaf8291422
BLAKE2b-256 5bdbf5cbd99974be061fda1b69a9077f3b47853b99e81b8862dc13fb1d02f7ea

See more details on using hashes here.

File details

Details for the file biometeo-0.5.0-cp39-cp39-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for biometeo-0.5.0-cp39-cp39-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 1c36ea7dbc9cb52fbef8447963bf9ad0c7ac86fd7867b73f3a40e2c8885fb990
MD5 2566ac9c93cfe63d074763619c0abe67
BLAKE2b-256 7b484c76674ee87adabfa49900f71bc3c799c3ee86084192a6ab43f7e0085b15

See more details on using hashes here.

File details

Details for the file biometeo-0.5.0-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: biometeo-0.5.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 952.9 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.8.20

File hashes

Hashes for biometeo-0.5.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 74e303af75a85a76e4234f7db6c2b71415741e6316323ae3820722b82a672b8c
MD5 5e13f14a90a46a064b8f484f06360f21
BLAKE2b-256 b3288caac979b61c448389e2c2caae0714ea0e5ee1226f6faa0171d3ba57b544

See more details on using hashes here.

File details

Details for the file biometeo-0.5.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for biometeo-0.5.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 95e3e3c22c7bcf49d32cae5339c95406982cb7e3cab1d4895ebb17af0458a585
MD5 25e54920d8a8df25abd092b6881d29f1
BLAKE2b-256 3d967abf709e356d9fec7b13e96cd98771b4323afca80c97515f36e4a202bead

See more details on using hashes here.

File details

Details for the file biometeo-0.5.0-cp38-cp38-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for biometeo-0.5.0-cp38-cp38-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 48f65082733b0de74ba5f418c274db1db2c6c8c06067229d509fa6692955061e
MD5 c0ccafb428288a1a75f85d4c7d69ae8b
BLAKE2b-256 7cdf8a9a4b08791a76abfc882fda7da5a3b860699d459cb393ecfcb8c2896efc

See more details on using hashes here.

File details

Details for the file biometeo-0.5.0-cp38-cp38-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for biometeo-0.5.0-cp38-cp38-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 444fd7937cb23df99c2a20d8ae7690e1bb32a9d12ce3d54854658016cce582db
MD5 6e2d82910b4f8e90ad412cb18df25fc7
BLAKE2b-256 eeb4928d3ebf1470d5660c3e7b3fb96425c7b486a37d7af7e036ae0b92de1156

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