Skip to content

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
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!"