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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13macOS 15.0+ x86-64

biometeo-0.5.2-cp313-cp313-macosx_14_0_arm64.whl (903.4 kB view details)

Uploaded CPython 3.13macOS 14.0+ ARM64

biometeo-0.5.2-cp312-cp312-win_amd64.whl (833.7 kB view details)

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12macOS 15.0+ x86-64

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

Uploaded CPython 3.12macOS 14.0+ ARM64

biometeo-0.5.2-cp311-cp311-win_amd64.whl (865.1 kB view details)

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11macOS 15.0+ x86-64

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

Uploaded CPython 3.11macOS 14.0+ ARM64

biometeo-0.5.2-cp310-cp310-win_amd64.whl (859.3 kB view details)

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10macOS 15.0+ x86-64

biometeo-0.5.2-cp310-cp310-macosx_14_0_arm64.whl (983.5 kB view details)

Uploaded CPython 3.10macOS 14.0+ ARM64

biometeo-0.5.2-cp39-cp39-win_amd64.whl (860.1 kB view details)

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9macOS 15.0+ x86-64

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

Uploaded CPython 3.9macOS 14.0+ ARM64

biometeo-0.5.2-cp38-cp38-win_amd64.whl (953.1 kB view details)

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8macOS 15.0+ x86-64

biometeo-0.5.2-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.2-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: biometeo-0.5.2-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 831.0 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.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 14813ff7fbfe99463f069cf78ee74ea00f61dee2b070866307d557a742b1fa6f
MD5 431f80d9d47aceba5f2920ed03a8437c
BLAKE2b-256 585c41f1432e5b3262c8d98c88b32cc177bf6c412df01452612c78c382176f4f

See more details on using hashes here.

File details

Details for the file biometeo-0.5.2-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.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9e581a8805c7fe7976303893270b2a7805da5b8acf118af1bef55c938ff7dc0e
MD5 d6ad53f975602f6cfb86b0c2a888bfa1
BLAKE2b-256 c92e7cc4cd4c005dd334699eafee435a9358b0a9d8f94c56c50062decb88d5e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for biometeo-0.5.2-cp313-cp313-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 8616621d01eeb73a72ba755209c1a6ceeb144485ca0a5f2d43f4c5f7ab3613d0
MD5 529144f84171651f050ef8e0eb17df2d
BLAKE2b-256 c0d84f4a00639ac9ca64f6b38a08a79cf41d08e267b8d922b1c192192c6b674a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for biometeo-0.5.2-cp313-cp313-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 43b51450e4b99cfbd460d7e03ca1cbb9686447a743b6d1ba7e6ad86996fe7f31
MD5 0231ff079197666ea77e09bf573b0984
BLAKE2b-256 ca600609485514e4e17d8872494ee182c697be4ad79cb1274b5b7c9ced8fd95b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: biometeo-0.5.2-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 833.7 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.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 3e4df3a3dfe36ea403b818421c71e76c266705d500511554e9d1443a0fddaa98
MD5 50ff88bc046a4ab5fb18781f6d565417
BLAKE2b-256 026d72f5857f4073fdb47e3444cdf8bb186b570b55215d64169a013f4cb4a766

See more details on using hashes here.

File details

Details for the file biometeo-0.5.2-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.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ae3c613f45f6820513a7dca3a5bba4418b211c32608f772f2ed49e0e6174c2d6
MD5 ff4ffff9653011d7ffe758128681e165
BLAKE2b-256 ecd4499520a3541bc38ac175c00435f83079db736aa8bc48abf79e658ecfc002

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for biometeo-0.5.2-cp312-cp312-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 661c55edfbc567e2bb76ce325f0b96286c111c6bc8eda30a7cd9bdfbb24d1c53
MD5 1f3704c1849ab3a22a0d3018bfd4f6a8
BLAKE2b-256 a1c34df0267139bac627836372084c4968a2e8db08253a187d5b427154ff0ff8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for biometeo-0.5.2-cp312-cp312-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 06aa7dbeaf920fc285ee21c1054d9f1ec8b808e6b81db751c2ae9f9dae8e2f4e
MD5 d1371a2db2df7c29ed1a8f7ef7b9ed97
BLAKE2b-256 a3da2cebfabfb13d7e2a7018e62c7f52907220e2d7755cc873416ca7795d0dd1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: biometeo-0.5.2-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 865.1 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.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 982c0f2dd55a22e17543fa4c09d02d775c925cbacd01f2d7077cf3a0211e7315
MD5 0c20fa3ac26ca8bc6eae915c5b09fa1a
BLAKE2b-256 927aee4256183dd623baada993ab83d0c23f98e1f7b3e572d4a499d3f0c2ef45

See more details on using hashes here.

File details

Details for the file biometeo-0.5.2-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.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 cdd7bc26e544906b77c3d088682157e46f8c90013f13fc84e971393185c70c74
MD5 04b2f0762fc149d45eb6b5dc1cbc4a64
BLAKE2b-256 752f3ac9db93fb4d1a2d2e408bb53fe3dc10d250a1010b85f4d4e66ab45ed1c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for biometeo-0.5.2-cp311-cp311-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 2cf8083eb0ea5eecca3227fe0bf932b6fc265b271d1f1ff0f0ab63e70592c9d1
MD5 ee1052e638ecaec7098bb6ef9344cc50
BLAKE2b-256 44cd8642b971ac60ce85f5b7685a69365c5bffccafd0706d9b9e5b345d989529

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for biometeo-0.5.2-cp311-cp311-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 b6bd65a35abc61374ed4baee308553b79054d0acbb2bb390f3ecc97dcc1cf63f
MD5 8d7a5f5cb4b514862163a76482ddb0f0
BLAKE2b-256 6f159cfc029c1be0f0b453e0a8801c8bf2275a73ec5f313c9d7decc48915722e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: biometeo-0.5.2-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 859.3 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.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 399c74668631c9085a48bf70c890e6eaf9172924ba93b7b1e159ca91ddc3279f
MD5 37c751c0a8f4d0a587a0f9ca8afe566a
BLAKE2b-256 22f8c3960cd6066e171e93345888bbb354e77e2f3a88e52515f750ad17f52e5b

See more details on using hashes here.

File details

Details for the file biometeo-0.5.2-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.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 258c58cd9e9603c8eccfd0d468cdc8bb37c5b935c14774fa46593a1b8ff1a5d4
MD5 2242e8296bcc9d62c44f90e01d6cc3dd
BLAKE2b-256 bea8c667c1bcbc06b1ce0de521e567fa0f8e529995816d67af61799ecb4d6af2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for biometeo-0.5.2-cp310-cp310-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 30d335ee7eec4182d8e39eb4ac54743e610a32bbaf02aae730cada9282614c99
MD5 9aa2ad1812d845d0fcf66cd40fc5ee71
BLAKE2b-256 edf74ffdb23532bb12388ba6188d47763e17824dfaabf933a9d2f4f6f5b6626c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for biometeo-0.5.2-cp310-cp310-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 a184fcf7e5955dd28fa2605b4d7efd5bca9b23c1c42612f7741b68146b1d912b
MD5 3a3afbe0870f803188caf3ac44649555
BLAKE2b-256 3e428724b6bfdafd47b46f91324a337ad9d57a1de7c629dbc6f181df941fa147

See more details on using hashes here.

File details

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

File metadata

  • Download URL: biometeo-0.5.2-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 860.1 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.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 0c640bc78c8e8448e0e621f71031849a398c8ee38e8b7f5075bf690fdabf411f
MD5 8a04c96501ce8b716a0eec9a09d57837
BLAKE2b-256 59bc82d0b6c10ef18453ded9a035d92ca306ca5a8aa917f6c87a0451fa45ccfa

See more details on using hashes here.

File details

Details for the file biometeo-0.5.2-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.2-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9f65c0d6c97d75dc5a2807dd32b32ab5c75ce84eebe7b5ce0f1511d44ee5bd81
MD5 f12f9315a34a5d5c7eeac9f5fd17a512
BLAKE2b-256 85fb447bea4d44999d43009aa54880840ec48c416680b5c9bc849f7e018d2299

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for biometeo-0.5.2-cp39-cp39-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 75da719f17f6e82e89afabe81c81b97dca65a8a5230c579becba2a8ed6f4e87b
MD5 db706b5bbc9027ebcff51e164a18383d
BLAKE2b-256 ac9599140e16a522bade5e99c9dc8520011932f286944b2ab25fead1bed9ed62

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for biometeo-0.5.2-cp39-cp39-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 f071c3bf45d882e07d6f446216724d41d1f279272164e65f9bd65e380fd2044d
MD5 7e3264e97706c47e97c28ac1bae140d9
BLAKE2b-256 a39e20759fe5ac13da39a862af69e810bf32f9131adc902d503fee0a144e92aa

See more details on using hashes here.

File details

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

File metadata

  • Download URL: biometeo-0.5.2-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 953.1 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.2-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 6b707028a09d18f59f3a04b33342c28d60cae1da13a05442d9eeed7e710fc992
MD5 a0ee0905c7f046d83966d88e91c87e0b
BLAKE2b-256 fcbfa1182f344863a9f34a92e9cccd85db5fdf25d5b119e2afb26b780052b43e

See more details on using hashes here.

File details

Details for the file biometeo-0.5.2-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.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b3a0954810cd7506c0f2592e482bee714bb2bc6481981180593a67fee340ba69
MD5 d3b5bb53bd6d6197fc3a27f908893db0
BLAKE2b-256 6cb42ab4d95ab736ea13d553a6f76f453f270eb45d753525074dd57a273c0d0a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for biometeo-0.5.2-cp38-cp38-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 14860a7fe81a86e258c1b93c196f096d9222da747881f20f55212515846d4375
MD5 463866802874a79f7ad7584808b5ac28
BLAKE2b-256 2607b6b3cb4cfbd64e62026ae4f84aac0dbe7f35b99ece98286b0dce0399a486

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for biometeo-0.5.2-cp38-cp38-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 7241ca4e928cd6bb69bba8f713c75a9519c3180265d78c11badd3cc1cb6c2bdb
MD5 f77a0368f28bfa3c1cdca11484f68d19
BLAKE2b-256 d4490a293b53ae2eea4c18434e0e2455832e98ce7ae8d259269a70e72b785afb

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