コード例 #1
0
def add_matches_to_db(odds, sport, site, id_competition):
    """
    :param odds: Cotes des matches
    :type odds: dict[str,int]
    :param sport: Sport
    :param site: Nom du bookmaker
    :return: Ajoute les équipes inconnues dans la base de données
    """
    matches = odds.keys()
    teams = set(
        chain.from_iterable(list(map(lambda x: x.split(" - "),
                                     list(matches)))))
    teams = set(map(lambda x: x.strip(), teams))
    teams_sets = []
    not_matching_teams = {}
    i = 0
    teams_sets.append(set())
    for team in teams:
        if not team:
            continue
        not_matching_teams[team] = []
        line = is_in_db_site(team, sport, site)
        if not line:
            teams_sets[i].add(team)
    if not teams_sets[i]:
        return
    print(i, list(teams_sets[i]), site)
    get_close_name_functions = [
        is_in_db, get_close_name, get_close_name2, get_close_name4
    ]
    if sport == "tennis":
        get_close_name_functions.append(get_close_name3)
        get_close_name_functions.append(get_double_team_tennis)
    for only_null in [True, False]:
        for get_close_name_function in get_close_name_functions:
            i += 1
            teams_sets.append(set())
            for team in teams_sets[i - 1]:
                success = False
                lines = get_close_name_function(
                    team, sport, site,
                    only_null)[:3]  #Pour éviter d'avoir trop de résultats
                for line in lines:
                    if line[0] not in not_matching_teams[team]:
                        check = not is_matching_next_match(
                            id_competition, line[0], team, odds)
                        date_next_match = datetime.datetime.today()
                        try:
                            date_next_match = sorted(
                                [
                                    odds[x] for x in odds.keys()
                                    if team in x.split(" - ")
                                ],
                                key=lambda x: x["date"])[0]["date"]
                        except IndexError:
                            pass
                        date_next_match_db = get_time_next_match(
                            id_competition, line[0])
                        success = add_name_to_db(line[0], team, site, check,
                                                 date_next_match,
                                                 date_next_match_db)
                        if success:
                            break
                        not_matching_teams[team].append(line[0])
                if not success:
                    teams_sets[i].add(team)
            if len(teams_sets[i]) != len(teams_sets[i - 1]):
                print(i, list(teams_sets[i]), site)
            if not teams_sets[i]:
                return
            i += 1
            teams_sets.append(set())
            for team in teams_sets[i - 1]:
                future_opponents, future_matches = get_future_opponents(
                    team, matches)
                success = False
                for future_opponent, future_match in zip(
                        future_opponents, future_matches):
                    id_opponent = get_id_by_site(future_opponent, sport, site)
                    if id_opponent < 0:
                        id_to_find = get_id_by_opponent_thesportsdb(
                            id_opponent, future_match, odds)
                    else:
                        id_to_find = get_id_by_opponent(
                            id_opponent, future_match, odds)
                    if id_to_find and id_to_find not in not_matching_teams[
                            team]:
                        check = not is_matching_next_match(
                            id_competition, id_to_find, team, odds)
                        date_next_match = sorted(
                            [
                                odds[x]
                                for x in odds.keys() if team in x.split(" - ")
                            ],
                            key=lambda x: x["date"])[0]["date"]
                        date_next_match_db = get_time_next_match(
                            id_competition, id_to_find)
                        success = add_name_to_db(id_to_find, team, site, check,
                                                 date_next_match,
                                                 date_next_match_db)
                        if success:
                            break
                        not_matching_teams[team].append(id_to_find)
                if not success:
                    teams_sets[i].add(team)
            if len(teams_sets[i]) != len(teams_sets[i - 1]):
                print(i, list(teams_sets[i]), site)
            if not teams_sets[i]:
                return
コード例 #2
0
def add_matches_to_db(odds, sport, site):
    """
    :param odds: Cotes des matches
    :type odds: dict[str,int]
    :param sport: Sport
    :param site: Nom du bookmaker
    :return: Ajoute les équipes inconnues dans la base de données
    """
    matches = odds.keys()
    teams = set(
        chain.from_iterable(list(map(lambda x: x.split(" - "),
                                     list(matches)))))
    teams = set(map(lambda x: x.strip(), teams))
    teams_not_in_db_site = set()
    teams_sets = []
    for team in teams:
        line = is_in_db_site(team, sport, site)
        if not line:
            teams_not_in_db_site.add(team)
    if not teams_not_in_db_site:
        return
    print(list(teams_not_in_db_site), site)
    i = 0
    teams_sets.append(set())
    for team in teams_not_in_db_site:
        line = is_in_db(team, sport, site)
        if line:
            success = add_name_to_db(line[0], team, site)
            if not success:
                teams_sets[i].add(team)
        else:
            teams_sets[i].add(team)
    print(i, list(teams_sets[i]), site)
    if not teams_sets[i]:
        return
    get_close_name_functions = [get_close_name, get_close_name2]
    if sport == "tennis":
        get_close_name_functions.append(get_close_name3)
        get_close_name_functions.append(get_double_team_tennis)
    for only_null in [True, False]:
        for get_close_name_function in get_close_name_functions:
            i += 1
            teams_sets.append(set())
            for team in teams_sets[i - 1]:
                lines = get_close_name_function(
                    team, sport, site,
                    only_null)[:3]  #Pour éviter d'avoir trop de résultats
                if lines:
                    for line in lines:
                        success = add_name_to_db(line[0], team, site)
                        if not success:
                            teams_sets[i].add(team)
                else:
                    teams_sets[i].add(team)
            print(i, list(teams_sets[i]), site)
            if not teams_sets[i]:
                return
            i += 1
            teams_sets.append(set())
            for team in teams_sets[i - 1]:
                future_opponents, future_matches = get_future_opponents(
                    team, matches)
                success = False
                for future_opponent, future_match in zip(
                        future_opponents, future_matches):
                    id_opponent = get_id_by_site(future_opponent, sport, site)
                    if id_opponent < 0:
                        id_to_find = get_id_by_opponent_thesportsdb(
                            id_opponent, future_match, odds)
                    else:
                        id_to_find = get_id_by_opponent(
                            id_opponent, future_match, odds)
                    if id_to_find:
                        success = add_name_to_db(id_to_find, team, site)
                        if success:
                            break
                if not success:
                    teams_sets[i].add(team)
            print(i, list(teams_sets[i]), site)
            if not teams_sets[i]:
                return
コード例 #3
0
def add_matches_to_db(odds, sport, site):
    """
    :param odds: Dictionnaire {match :{"date":date, "odds":cotes}}
    :param sport: Sport
    :param site: Nom du bookmaker
    :return: Ajoute les équipes inconnues dans la base de données
    """
    matches = odds.keys()
    teams = set(chain.from_iterable(list(map(lambda x: x.split(" - "), list(matches)))))
    teams = set(map(lambda x: x.strip(), teams))
    teams_not_in_db_site = set()
    teams_sets = []
    for team in teams:
        line = is_in_db_site(team, sport, site)
        if not line:
            teams_not_in_db_site.add(team)
    if not teams_not_in_db_site:
        return
    print(list(teams_not_in_db_site))
    i = 0
    teams_sets.append(set())
    for team in teams_not_in_db_site:
        line = is_in_db(team, sport, site)
        if line:
            success = add_name_to_db(line[0], team, site)
            if not success:
                teams_sets[i].add(team)
        else:
            teams_sets[i].add(team)
    print(i, list(teams_sets[i]))
    if not teams_sets[i]:
        return
    i += 1
    teams_sets.append(set())
    for only_null in [True, False]:
        for team in teams_sets[i - 1]:
            line = get_close_name(team, sport, site, only_null)
            if line:
                success = add_name_to_db(line[0], team, site)
                if not success:
                    teams_sets[i].add(team)
            else:
                teams_sets[i].add(team)
        print(i, list(teams_sets[i]))
        if not teams_sets[i]:
            return
        i += 1
        teams_sets.append(set())
        for team in teams_sets[i - 1]:
            future_opponents, future_matches = get_future_opponents(team, matches)
            success = False
            for future_opponent, future_match in zip(future_opponents, future_matches):
                id_opponent = get_id_by_site(future_opponent, sport, site)
                if id_opponent < 0:
                    id_to_find = get_id_by_opponent_thesportsdb(id_opponent, future_match, odds)
                else:
                    id_to_find = get_id_by_opponent(id_opponent, future_match, odds)
                if id_to_find:
                    success = add_name_to_db(id_to_find, team, site)
                    if success:
                        break
            if not success:
                teams_sets[i].add(team)
        print(i, list(teams_sets[i]))
        if not teams_sets[i]:
            return
        i += 1
        teams_sets.append(set())
        for team in teams_sets[i - 1]:
            line = get_close_name2(team, sport, site, only_null)
            if line:
                success = add_name_to_db(line[0], team, site)
                if not success:
                    teams_sets[i].add(team)
            else:
                teams_sets[i].add(team)
        print(i, list(teams_sets[i]))
        if not teams_sets[i]:
            return
        i += 1
        teams_sets.append(set())
        for team in teams_sets[i - 1]:
            future_opponents, future_matches = get_future_opponents(team, matches)
            success = False
            for future_opponent, future_match in zip(future_opponents, future_matches):
                id_opponent = get_id_by_site(future_opponent, sport, site)
                if id_opponent < 0:
                    id_to_find = get_id_by_opponent_thesportsdb(id_opponent, future_match, odds)
                else:
                    id_to_find = get_id_by_opponent(id_opponent, future_match, odds)
                if id_to_find:
                    success = add_name_to_db(id_to_find, team, site)
                    if success:
                        break
            if not success:
                teams_sets[i].add(team)
        print(i, list(teams_sets[i]))
        if not teams_sets[i]:
            return
        i += 1
        teams_sets.append(set())
        if sport == "tennis":
            for team in teams_sets[i - 1]:
                line = get_close_name3(team, sport, site, only_null)
                if line:
                    success = add_name_to_db(line[0], team, site)
                    if not success:
                        teams_sets[i].add(team)
                else:
                    teams_sets[i].add(team)
            print(i, list(teams_sets[i]))
            if not teams_sets[i]:
                return
            i += 1
            teams_sets.append(set())
            for team in teams_sets[i - 1]:
                future_opponents, future_matches = get_future_opponents(team, matches)
                found = False
                for future_opponent, future_match in zip(future_opponents, future_matches):
                    id_opponent = get_id_by_site(future_opponent, sport, site)
                    if id_opponent < 0:
                        id_to_find = get_id_by_opponent_thesportsdb(id_opponent, future_match, odds)
                    else:
                        id_to_find = get_id_by_opponent(id_opponent, future_match, odds)
                    if id_to_find:
                        found = True
                        success = add_name_to_db(id_to_find, team, site)
                        if not success:
                            teams_sets[i].add(team)
                if not found:
                    teams_sets[i].add(team)
            print(i, list(teams_sets[i]))
            if not teams_sets[i]:
                return
            i += 1
            teams_sets.append(set())
            for team in teams_sets[i - 1]:
                line = get_double_team_tennis(team, site)
                if line:
                    success = add_name_to_db(line[0], team, site)
                    if not success:
                        teams_sets[i].add(team)
                else:
                    teams_sets[i].add(team)
            print(i, list(teams_sets[i]))
            if not teams_sets[i]:
                return
            i += 1
            teams_sets.append(set())
            for team in teams_sets[i - 1]:
                future_opponents, future_matches = get_future_opponents(team, matches)
                found = False
                for future_opponent, future_match in zip(future_opponents, future_matches):
                    id_opponent = get_id_by_site(future_opponent, sport, site)
                    if id_opponent < 0:
                        id_to_find = get_id_by_opponent_thesportsdb(id_opponent, future_match, odds)
                    else:
                        id_to_find = get_id_by_opponent(id_opponent, future_match, odds)
                    if id_to_find:
                        success = add_name_to_db(id_to_find, team, site)
                        if not success:
                            teams_sets[i].add(team)
                if not found:
                    teams_sets[i].add(team)
            print(i, list(teams_sets[i]))
            if not teams_sets[i]:
                return
            i += 1
            teams_sets.append(set())