Skip to content

edsnlp.processing.helpers

slugify(chained_attr)

Slugify a chained attribute name

PARAMETER DESCRIPTION
chained_attr

The string to slugify (replace dots by _)

TYPE: str

RETURNS DESCRIPTION
str

The slugified string

Source code in edsnlp/processing/helpers.py
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
def slugify(chained_attr: str) -> str:
    """
    Slugify a chained attribute name

    Parameters
    ----------
    chained_attr : str
        The string to slugify (replace dots by _)

    Returns
    -------
    str
        The slugified string
    """
    return chained_attr.replace(".", "_")