Skip to content

PRINT_DATACONTAINER

The PRINT_DATACONTAINER node returns a TextBlob containing input DataContainer information.Must use the TEXT_VIEW node to view the text.Params:Returns:out : DataContainerTextBlob: Input datacontainer information
Python Code
from flojoy import flojoy, DataContainer, TextBlob


@flojoy()
def PRINT_DATACONTAINER(
    default: DataContainer,
) -> TextBlob:
    """The PRINT_DATACONTAINER node returns a TextBlob containing input DataContainer information.

    Must use the TEXT_VIEW node to view the text.

    Returns
    -------
    DataContainer
        TextBlob: Input datacontainer information
    """

    return TextBlob(text_blob=str(default))

Find this Flojoy Block on GitHub

Example

Having problem with this example app? Join our Discord community and we will help you out!
React Flow mini map