Skip to content

edsnlp.pipelines.core.endlines.functional

get_dir_path(file)

Source code in edsnlp/pipelines/core/endlines/functional.py
7
8
9
def get_dir_path(file):
    path_file = os.path.dirname(os.path.realpath(file))
    return path_file

build_path(file, relative_path)

Function to build an absolut path.

PARAMETER DESCRIPTION
file

relative_path

relative path from the main file to the desired output

RETURNS DESCRIPTION
path
Source code in edsnlp/pipelines/core/endlines/functional.py
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
def build_path(file, relative_path):
    """
    Function to build an absolut path.

    Parameters
    ----------
    file: main file from where we are calling. It could be __file__
    relative_path: str,
        relative path from the main file to the desired output

    Returns
    -------
    path: absolute path
    """
    dir_path = get_dir_path(file)
    path = os.path.abspath(os.path.join(dir_path, relative_path))
    return path