Acquisition Reference¶ darts_acquisition ¶ Acquisition of data from various sources for the DARTS dataset. hello(name) ¶ Say hello to the user. Parameters: Name Type Description Default name str Name of the user. required Returns: Name Type Description str str Greating message. Source code in darts-acquisition/src/darts_acquisition/__init__.py 4 5 6 7 8 9 10 11 12 13 14def hello(name: str) -> str: """Say hello to the user. Args: name (str): Name of the user. Returns: str: Greating message. """ return f"Hello, {name}, from darts-acquisition!"