Acquisition of data from various sources for the DARTS dataset.
hello(name)
Say hello to the user.
Parameters:
Name |
Type |
Description |
Default |
name
|
str
|
|
required
|
Returns:
Name | Type |
Description |
str |
str
|
|
Source code in darts-acquisition/src/darts_acquisition/__init__.py
| def 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!"
|