>>> from tmax import tmax_oven >>> ovenL = ['fNK021', 'fMM042', 'fMF023', 'fMM004', 'fLP085'] >>> tempL = [ ... ('01:15:00', [30.1, 31.5, 31.9, 28.0, 31.0]), ... ('02:30:00', [30.0, 32.5, 30.0, 38.0, 32.5]), ... ('03:45:00', [29.1, 38.5, 29.9, 25.5, 34.5]), ... ('04:30:00', [28.1, 37.5, 31.0, 31.5, 38.2]), ... ('05:00:00', [27.5, 36.5, 32.1, 29.5, 38.2]) ... ] --output-ini >>> tmo = tmax_oven(ovenL, tempL) >>> tmo_corr = [ ... ('fNK021', 30.1), ... ('fMM042', 38.5), ... ('fMF023', 32.1), ... ('fMM004', 38.0), ... ('fLP085', 38.2), ... ] >>> if tmo == tmo_corr: ... True ... else: ... print(tmo) ... print(tmo_corr) True --output-fi