コード例 #1
0
ファイル: tmdb_api.py プロジェクト: Machyne/pal
def compare_titles(reference, query):
    """ Compares strings after stripping, lowering, and removing punctuation.
    """
    return normalize_string(reference).startswith(normalize_string(query))
コード例 #2
0
ファイル: tmdb_api.py プロジェクト: Machyne/pal
def compare_names(reference, query):
    """ Compares strings after stripping, lowering, and removing punctuation.
    """
    return normalize_string(reference).contains(normalize_string(query))