def get_first_given_name(signature):
    """Get first given name of author

    Args:
        signature (Signature): Signature object

    Returns:
        str: First given name of author

    """
    return given_name(signature.author_name, 0)
def get_second_given_name(signature):
    """Get second given name from author_name.

    Args:
        signature (Signature): Signature object

    Returns:
        str: Second given name of author

    """
    return given_name(signature.author_name, 1)
示例#3
0
def get_second_given_name(s):
    """Get author second given name from the signature.

    Parameters
    ----------
    :param s: dict
        Signature

    Returns
    -------
    :returns: string
        Author's second given name
    """
    v = given_name(s["author_name"], 1)
    return v
示例#4
0
def get_first_given_name(s):
    """Get author first given name from the signature.

    Parameters
    ----------
    :param s: dict
        Signature

    Returns
    -------
    :returns: string
        Author's first given name
    """
    v = given_name(s["author_name"], 0)
    return v
示例#5
0
def get_second_given_name(s):
    """Get author second given name from the signature.

    Parameters
    ----------
    :param s: dict
        Signature

    Returns
    -------
    :returns: string
        Author's second given name
    """
    v = given_name(s["author_name"], 1)
    return v
示例#6
0
def get_first_given_name(s):
    """Get author first given name from the signature.

    Parameters
    ----------
    :param s: dict
        Signature

    Returns
    -------
    :returns: string
        Author's first given name
    """
    v = given_name(s["author_name"], 0)
    return v
示例#7
0
def get_second_given_name(signature):
    return given_name(signature['author_name'], 1)
示例#8
0
def get_first_given_name(signature):
    return given_name(signature['author_name'], 0)
示例#9
0
def get_second_given_name(signature):
    return given_name(signature['author_name'], 1)
示例#10
0
def get_first_given_name(signature):
    return given_name(signature['author_name'], 0)
示例#11
0
def get_second_given_name(signature):
    return given_name(signature.author_name, 1)
示例#12
0
def get_first_given_name(signature):
    return given_name(signature.author_name, 0)