Merge branch 'master' of https://git.profitroll.eu/profitroll/PythonRMV
This commit is contained in:
@@ -31,7 +31,7 @@ really sophisticated. However I'm not sure whether RMV supports that many HAFAS
|
||||
"""
|
||||
|
||||
__name__ = "pyrmv"
|
||||
__version__ = "0.1.7"
|
||||
__version__ = "0.1.8"
|
||||
__license__ = "MIT License"
|
||||
__author__ = "Profitroll"
|
||||
|
||||
|
@@ -11,10 +11,10 @@ except ImportError:
|
||||
# 2.37. HIM Search (himsearch)
|
||||
def himSearch(accessId: str,
|
||||
json: bool = True,
|
||||
dateB: str = None,
|
||||
dateE: str = None,
|
||||
timeB: str = None,
|
||||
timeE: str = None,
|
||||
dateB: Union[str, datetime] = None,
|
||||
dateE: Union[str, datetime] = None,
|
||||
timeB: Union[str, datetime] = None,
|
||||
timeE: Union[str, datetime] = None,
|
||||
weekdays: Dict[str, bool] = None,
|
||||
himIds: Union[str, list] = None,
|
||||
hierarchicalView: bool = False,
|
||||
@@ -52,10 +52,10 @@ def himSearch(accessId: str,
|
||||
### Args:
|
||||
* accessId (str): _description_
|
||||
* json (bool, optional): _description_. Defaults to True.
|
||||
* dateB (str, optional): _description_. Defaults to None.
|
||||
* dateE (str, optional): _description_. Defaults to None.
|
||||
* timeB (str, optional): _description_. Defaults to None.
|
||||
* timeE (str, optional): _description_. Defaults to None.
|
||||
* dateB (Union[str, datetime], optional): _description_. Defaults to None.
|
||||
* dateE (Union[str, datetime], optional): _description_. Defaults to None.
|
||||
* timeB (Union[str, datetime], optional): _description_. Defaults to None.
|
||||
* timeE (Union[str, datetime], optional): _description_. Defaults to None.
|
||||
* weekdays (Dict[str, bool], optional): _description_. Defaults to None.
|
||||
* himIds (Union[str, list], optional): _description_. Defaults to None.
|
||||
* hierarchicalView (bool, optional): _description_. Defaults to False.
|
||||
|
Reference in New Issue
Block a user