Source code for iode.deprecated.time

import warnings
import numpy as np
from typing import Union, List, Tuple, Optional

from iode import variables


[docs] def ws_sample_set(from_period: str, to_period: str) -> Optional[Tuple[str, str]]: warnings.warn("ws_sample_set() is deprecated. " + "Please use the new syntax: variables.sample = 'from_period:to_period'",DeprecationWarning, stacklevel=2) variables.sample = f"{from_period}:{to_period}"
[docs] def ws_sample_get() -> Optional[Tuple[str, str]]: warnings.warn("ws_sample_get() is deprecated. " + "Please use the new syntax: variables.sample",DeprecationWarning, stacklevel=2) return variables.sample
[docs] def ws_sample_nb_periods() -> int: warnings.warn("ws_sample_nb_periods() is deprecated. " + "Please use the new syntax: variables.nb_periods",DeprecationWarning, stacklevel=2) return variables.nb_periods
[docs] def ws_sample_to_string() -> Optional[str]: warnings.warn("ws_sample_to_string() is deprecated. " + "Please use the new syntax: variables.sample",DeprecationWarning, stacklevel=2) return variables.sample
[docs] def ws_sample_to_list(from_period: str = "", to_period: str = "", as_floats: bool = False) -> Optional[Union[List[str], np.ndarray]]: warnings.warn("ws_sample_to_list() is deprecated. " + "Please use the new syntax: variables.periods",DeprecationWarning, stacklevel=2) return variables.periods