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.1-cp313-cp313-win_amd64.whl (830.7 kB view details)

Uploaded CPython 3.13Windows x86-64

biometeo-0.5.1-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.1-cp313-cp313-macosx_15_0_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.13macOS 15.0+ x86-64

biometeo-0.5.1-cp313-cp313-macosx_14_0_arm64.whl (903.1 kB view details)

Uploaded CPython 3.13macOS 14.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

biometeo-0.5.1-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.1-cp312-cp312-macosx_15_0_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.12macOS 15.0+ x86-64

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

Uploaded CPython 3.12macOS 14.0+ ARM64

biometeo-0.5.1-cp311-cp311-win_amd64.whl (864.9 kB view details)

Uploaded CPython 3.11Windows x86-64

biometeo-0.5.1-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.1-cp311-cp311-macosx_15_0_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.11macOS 15.0+ x86-64

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

Uploaded CPython 3.11macOS 14.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

biometeo-0.5.1-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.1-cp310-cp310-macosx_15_0_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.10macOS 15.0+ x86-64

biometeo-0.5.1-cp310-cp310-macosx_14_0_arm64.whl (983.3 kB view details)

Uploaded CPython 3.10macOS 14.0+ ARM64

biometeo-0.5.1-cp39-cp39-win_amd64.whl (859.8 kB view details)

Uploaded CPython 3.9Windows x86-64

biometeo-0.5.1-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.1-cp39-cp39-macosx_15_0_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.9macOS 15.0+ x86-64

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

Uploaded CPython 3.9macOS 14.0+ ARM64

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

Uploaded CPython 3.8Windows x86-64

biometeo-0.5.1-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.1-cp38-cp38-macosx_15_0_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.8macOS 15.0+ x86-64

biometeo-0.5.1-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.1-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: biometeo-0.5.1-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.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 5bf6320200ca01e9911baa0b9e2373238f6d77e1beae30dfd4e341276154af17
MD5 99789317f5783193bed5416a6b9c4312
BLAKE2b-256 bdca7d206058e48137a97de98613d9407ccb90bbce599375c8436db58e6649b0

See more details on using hashes here.

File details

Details for the file biometeo-0.5.1-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.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 70d96552eca37d4edf0343b7b3b97b04389c54e6b1ed1253a53ea94a8b6b3680
MD5 d7a96f51e93478dbef94f132a64541a9
BLAKE2b-256 8131d37a2af17d495a543679e5af95af24344c4cc0636500afe1e5cfffa927f5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for biometeo-0.5.1-cp313-cp313-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 86ac24d669dc3feb725f25d8440b412505a80ee2cd848f8190133e0eb9a8399e
MD5 a5c284e0d0ddf8d028399e2e2eeedef1
BLAKE2b-256 2445d9e12e1562f49ff4bbabfdc6db2720adeb1862fab5fc095ebfcb82e620d6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for biometeo-0.5.1-cp313-cp313-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 0cbe706eb49a0775ab0877906c20c93cbe43ac8c8c5bcdbfb91a6ef3b5dcbdf6
MD5 ba3dc302fb767aa584cda6a4c6b0b90e
BLAKE2b-256 337bd52c6109b6763cb23b4a94770b5e54ac1c4e2d0c84938f1c6440f699126c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: biometeo-0.5.1-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.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 2f56762d1dfd0eeda4b47244242048bef7f7dd595028e886ef1ac9c7727926b3
MD5 f7acf0b79d89139c901767605f0545a7
BLAKE2b-256 90f12b61173a03c9f16b4f8c16a589cf1feb3d628990aee67ab13a3f9a344711

See more details on using hashes here.

File details

Details for the file biometeo-0.5.1-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.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9021db36756c48a6b405b5ac018ecd4e3c8cda13485b7100b9c8efd8f523ca11
MD5 1554743ab405f79d55dca09448d75841
BLAKE2b-256 f3872a702f9db41d02940f24a8d9d3664b1326348821c506915b737e65424eb4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for biometeo-0.5.1-cp312-cp312-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 a9ddd7c1318539be5c1e2ef5e140f93b5fae53e3af8345bd1db8cce617e9c735
MD5 4c248f18032295310ba2299c093e82db
BLAKE2b-256 89474ef30ec2f6a3eff8ab280bbb4dbe23c7b47dc5fbcfb093ac85e2ce1e4fcb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for biometeo-0.5.1-cp312-cp312-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 846e0e1ff601abd30585004c598102c69b6e11aa7c0b89c26f142006a01d89ea
MD5 dcc72b1d64c159474e4b66ea8303ce64
BLAKE2b-256 1aee21f94ea4f84e4a4fcbe3b78a6075f024f19cc30b7f4de433580d8f555187

See more details on using hashes here.

File details

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

File metadata

  • Download URL: biometeo-0.5.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 864.9 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.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 20c76bcc0cb9686aac2375a1c382ff667a8d58408e45c7cbe21814cbf7fbca67
MD5 b4aa13b2a868199cf6aed53d3d51bb3b
BLAKE2b-256 44258b40def5eb0b0994dafac46fcfc32181cf23bfe721be98cc00476333de13

See more details on using hashes here.

File details

Details for the file biometeo-0.5.1-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.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a8ad0bc6f760614364edf218a120fd53b7d45d913febb037a6e2c428aade49d8
MD5 0d6f6cb483d0898d77ffd95117cb6f8d
BLAKE2b-256 a13a56bcd9b5533111cd58a6c8df071c6ecc4815c8d392323fe63a94eb1909bc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for biometeo-0.5.1-cp311-cp311-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 7d7d16cdc483f48019e20fb4faf032fb5f9a1c63f456d1debf1e35a2095ae2bd
MD5 8da82ba924571d81fbf420d5419e77ad
BLAKE2b-256 961e4d62c468b721e0a5e58065efe71faae7e272b19ababcfbb4252fb43ec388

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for biometeo-0.5.1-cp311-cp311-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 9082d124ab60c9ddb0decae739b63e32215ea89162ed6136229adaed08838a7e
MD5 e0b0b8ef65fc1b4f4398d9f25388c19a
BLAKE2b-256 d02cee2de8c69a1cdeaa6fd21f1de717decab49dfd597f4a8b699f98ab56a986

See more details on using hashes here.

File details

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

File metadata

  • Download URL: biometeo-0.5.1-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.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 e14580f5a1c841963db9a062a0486ba47b401aa6f01146dab777fc2e888bafc2
MD5 00c6547f7622ad6bc8da3071d68e20f2
BLAKE2b-256 8d1303a92b2db596d469e19017f9e3af0eef0239a1ac13c0d6f16243410d3ac0

See more details on using hashes here.

File details

Details for the file biometeo-0.5.1-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.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 fc2ded4116e12505851159f98247cd5326805386786a254f7737a44d82cb6a93
MD5 234bffaca5d00b63942708141777b77f
BLAKE2b-256 8badb9cf918d115394d95889398a93a8280fed65cc39e351bd2d89a28f23f6c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for biometeo-0.5.1-cp310-cp310-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 1bb22f58e72f2a7ba2f5ed84a7ddaa487095449b993f161f118b5054057b5ed4
MD5 0dd59c7c0f871e097200388ddf1822dc
BLAKE2b-256 920c7af06e06272b1ebdd7e726f731a57357abcda4411263a2affd095b7470aa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for biometeo-0.5.1-cp310-cp310-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 1836eff4d434d5f305dbd96c88455de6ed718e02a63a9628ca865f6c669ecd18
MD5 ce074371c110f9c787de7a58b7fa91a0
BLAKE2b-256 28b3c0aa630898a71795cc1aab26fe2fc97f1332dfd26ac2fc1475721dcc439b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: biometeo-0.5.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 859.8 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.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 dcab748ccb8a23efc6ef43a1e1d26fdf1f2159396b9e8dfc427a6b38b7625b7b
MD5 12686f3c4b5f41899636367c418254e2
BLAKE2b-256 3fff1be0c7c37f935de3dcfde851f6178b26064312ef338c5fd0ba6620f2b9c3

See more details on using hashes here.

File details

Details for the file biometeo-0.5.1-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.1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1946eb76a032a727a8240da7a1e20136ad28bcae523eb725477866418df955c8
MD5 757d2e505445db19c5f511abca748843
BLAKE2b-256 f5c4e578d3053b58a8dec0f16b7de075be3d0f4d1d6046d8c719b950a2f634a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for biometeo-0.5.1-cp39-cp39-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 a2b6a408ded3d01c53bca5d0ed77112753d54934b93047e58a1e6ffb3ef13e46
MD5 a2a75acbc3e02032aed43926135ccc11
BLAKE2b-256 070d7063862ae92297248eb3dfbb8e675710d6118bb6b80f7f6233eec49d9f37

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for biometeo-0.5.1-cp39-cp39-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 dd3d3f7fb71859f4a4f3072688eea44409f0db4b1683a2410e4c17a09bb35cd5
MD5 7801eb541c0de294e381183a158a924b
BLAKE2b-256 da5025742bc9335c2b5f9696ca5b2716815ecbe9dae260d16a46467e004233f0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: biometeo-0.5.1-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.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 88299441c965f3335d21399ee246e17f5b251eb4ad583dc9cc25f95123d144d6
MD5 da1655106ce33efffca93c2d0dc56c3a
BLAKE2b-256 847a4ec11730fca3356b4755a5892528309fbdf394ffeabb4341ec9b40bc8e60

See more details on using hashes here.

File details

Details for the file biometeo-0.5.1-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.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a105965ddc8edf177b71f65a20a24d87c4d8026731318184127be74ff18f7761
MD5 82c50564ea74f6958204e7360d72063f
BLAKE2b-256 d869c7ef3a1ee9ab18348b551d316f4a690617a5a8343119758224d276e737bf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for biometeo-0.5.1-cp38-cp38-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 2336e3916aca9dfc1e5ef483a0d1a43082275d33abd8166877294b5fd1acd9b3
MD5 90b1c1f33a609cf24dcdefd04ad86dd4
BLAKE2b-256 e812ef3f1ecc28458ac05c79de242e434720d4ee01f8bed5223d03a29b3946f6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for biometeo-0.5.1-cp38-cp38-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 aab515dae1751c7782b59090aa0b84fac0a1e538fcd23838c2147494e04476d2
MD5 092d8a526b63e81b2fdb526232e22b42
BLAKE2b-256 38737dfba9ed9891fe547398366886286b17be6270ca8909d482db9288428385

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