|
|
@@ -567,7 +567,6 @@ class Zuqiupipeline(object):
|
|
|
logging.warning('足球详细赔率接口异常, {}'.format(res))
|
|
|
else:
|
|
|
logger.info('足球详细赔率列表为空')
|
|
|
-
|
|
|
# 角球处理分割线---------------------------------------------------------------------------------------------------
|
|
|
horn_team = item['horn_team']
|
|
|
if horn_team:
|
|
|
@@ -601,408 +600,408 @@ class Zuqiupipeline(object):
|
|
|
logger.warning(match_dict)
|
|
|
else:
|
|
|
logger.info('足球角球, 赛事已存在,不提交')
|
|
|
-
|
|
|
- p_code = "GS"
|
|
|
- half_size_guest = item["half_size_guest"]
|
|
|
- half_size_guest_rule = item["half_size_guest_rule"]
|
|
|
- half_size_home = item["half_size_home"]
|
|
|
- half_size_home_rule = item["half_size_home_rule"]
|
|
|
- data_list = []
|
|
|
- odds_onlys = []
|
|
|
- # half_size_guest
|
|
|
- for index, value in enumerate(half_size_guest):
|
|
|
- hash_str = p_code + "gss_h" + str(index) + str(half_size_guest_rule[index]) + str(
|
|
|
- value) + "hg3535" + str(match_id)
|
|
|
- sole_str = p_code + "gss_h" + str(index) + str(match_id) + "hg3535"
|
|
|
- odds_only = Helper.genearte_MD5(hash_str, pt)
|
|
|
- sole = Helper.genearte_MD5(sole_str, pt)
|
|
|
- half_size_guest_key = ["match_id", "lg_id", "odds_code", "status", "sort", "p_code", "odds",
|
|
|
- "condition",
|
|
|
- "odds_only", "sole", "source", "type", "team"]
|
|
|
- condition = half_size_guest_rule[index]
|
|
|
- half_size_guest_value = [match_id, league_id, "gss_h", "0", index, p_code, value, condition,
|
|
|
- odds_only, sole, "hg3535", "0", ""]
|
|
|
- half_size_guest_data = dict(zip(half_size_guest_key, half_size_guest_value))
|
|
|
- data_list.append(half_size_guest_data)
|
|
|
- # half_size_home
|
|
|
- for index, value in enumerate(half_size_home):
|
|
|
- hash_str = p_code + "gsb_h" + str(index) + str(half_size_home_rule[index]) + str(
|
|
|
- value) + "hg3535" + str(match_id)
|
|
|
- sole_str = p_code + "gsb_h" + str(index) + str(match_id) + "hg3535"
|
|
|
- odds_only = Helper.genearte_MD5(hash_str, pt)
|
|
|
- sole = Helper.genearte_MD5(sole_str, pt)
|
|
|
- half_size_home_key = ["match_id", "lg_id", "odds_code", "status", "sort", "p_code", "odds", "condition",
|
|
|
- "odds_only", "sole", "source", "type", "team"]
|
|
|
- condition = half_size_home_rule[index]
|
|
|
- half_size_home_value = [match_id, league_id, "gsb_h", "0", index, p_code, value, condition,
|
|
|
- odds_only, sole, "hg3535", "0", ""]
|
|
|
- half_size_home_data = dict(zip(half_size_home_key, half_size_home_value))
|
|
|
- data_list.append(half_size_home_data)
|
|
|
-
|
|
|
- # 全场场大小
|
|
|
- size_guest = item["size_guest"]
|
|
|
- size_guest_rule = item["size_guest_rule"]
|
|
|
- size_home = item["size_home"]
|
|
|
- size_home_rule = item["size_home_rule"]
|
|
|
- # size_home
|
|
|
- for index, value in enumerate(size_home):
|
|
|
- hash_str = p_code + "gsb" + str(index) + str(size_home_rule[index]) + str(value) + "hg3535" + str(
|
|
|
- match_id)
|
|
|
- sole_str = p_code + "gsb" + str(index) + str(match_id) + "hg3535"
|
|
|
- odds_only = Helper.genearte_MD5(hash_str, pt)
|
|
|
- sole = Helper.genearte_MD5(sole_str, pt)
|
|
|
- size_home_key = ["match_id", "lg_id", "odds_code", "status", "sort", "p_code", "odds", "condition",
|
|
|
- "odds_only", "sole", "source", "type", "team"]
|
|
|
- condition = size_home_rule[index]
|
|
|
- size_home_value = [match_id, league_id, "gsb", "0", index, p_code, value, condition, odds_only,
|
|
|
- sole, "hg3535", "0", ""]
|
|
|
- size_home_data = dict(zip(size_home_key, size_home_value))
|
|
|
- data_list.append(size_home_data)
|
|
|
- # size_guest
|
|
|
- for index, value in enumerate(size_guest):
|
|
|
- hash_str = p_code + "gss" + str(index) + str(size_guest_rule[index]) + str(value) + "hg3535" + str(
|
|
|
- match_id)
|
|
|
- sole_str = p_code + "gss" + str(index) + str(match_id) + "hg3535"
|
|
|
- odds_only = Helper.genearte_MD5(hash_str, pt)
|
|
|
- sole = Helper.genearte_MD5(sole_str, pt)
|
|
|
- size_guest_key = ["match_id", "lg_id", "odds_code", "status", "sort", "p_code", "odds", "condition",
|
|
|
- "odds_only", "sole", "source", "type", "team"]
|
|
|
- condition = size_guest_rule[index]
|
|
|
- size_guest_value = [match_id, league_id, "gss", "0", index, p_code, value, condition, odds_only,
|
|
|
- sole, "hg3535", "0", ""]
|
|
|
- size_home_data = dict(zip(size_guest_key, size_guest_value))
|
|
|
- data_list.append(size_home_data)
|
|
|
-
|
|
|
- p_code = 'CO'
|
|
|
- half_concede_home_rule = item["half_concede_home_rule"]
|
|
|
- half_concede_home = item["half_concede_home"]
|
|
|
- half_concede_guest_rule = item["half_concede_guest_rule"]
|
|
|
- half_concede_guest = item["half_concede_guest"]
|
|
|
- # half_concede_home
|
|
|
- if half_concede_guest:
|
|
|
- for index, value in enumerate(half_concede_guest):
|
|
|
- hash_str = p_code + "cog_h" + str(index) + str(half_concede_guest_rule[index]) + str(
|
|
|
- value) + "hg3535" + str(match_id)
|
|
|
- sole_str = p_code + "cog_h" + str(index) + str(match_id) + "hg3535"
|
|
|
- odds_only = Helper.genearte_MD5(hash_str, pt)
|
|
|
- sole = Helper.genearte_MD5(sole_str, pt)
|
|
|
- half_concede_guest_key = ["match_id", "lg_id", "odds_code", "status", "sort", "p_code", "odds",
|
|
|
- "condition",
|
|
|
- "odds_only", "sole", "source", "type", "team"]
|
|
|
- condition = half_concede_guest_rule[index]
|
|
|
- half_concede_guest_value = [match_id, league_id, "cog_h", "0", index, p_code, value, condition,
|
|
|
- odds_only, sole, "hg3535", "0", ""]
|
|
|
- half_concede_guest_data = dict(zip(half_concede_guest_key, half_concede_guest_value))
|
|
|
- data_list.append(half_concede_guest_data)
|
|
|
-
|
|
|
- # half_concede_home
|
|
|
- if half_concede_home:
|
|
|
- for index, value in enumerate(half_concede_home):
|
|
|
- hash_str = p_code + "coh_h" + str(index) + str(half_concede_home_rule[index]) + str(
|
|
|
- value) + "hg3535" + str(match_id)
|
|
|
- sole_str = p_code + "coh_h" + str(index) + str(match_id) + "hg3535"
|
|
|
- odds_only = Helper.genearte_MD5(hash_str, pt)
|
|
|
- sole = Helper.genearte_MD5(sole_str, pt)
|
|
|
- half_concede_home_key = ["match_id", "lg_id", "odds_code", "status", "sort", "p_code", "odds",
|
|
|
- "condition",
|
|
|
- "odds_only", "sole", "source", "type", "team"]
|
|
|
- condition = half_concede_home_rule[index]
|
|
|
- half_concede_home_value = [match_id, league_id, "coh_h", "0", index, p_code, value, condition,
|
|
|
- odds_only, sole, "hg3535", "0", ""]
|
|
|
- half_concede_home_data = dict(zip(half_concede_home_key, half_concede_home_value))
|
|
|
- data_list.append(half_concede_home_data)
|
|
|
-
|
|
|
- concede_guest = item["concede_guest"]
|
|
|
- concede_guest_rule = item["concede_guest_rule"]
|
|
|
- concede_home = item["concede_home"]
|
|
|
- concede_home_rule = item["concede_home_rule"]
|
|
|
- # concede_guest
|
|
|
- if concede_guest:
|
|
|
- for index, value in enumerate(concede_guest):
|
|
|
- hash_str = p_code + "cog" + str(index) + str(concede_guest_rule[index]) + str(
|
|
|
- value) + "hg3535" + str(match_id)
|
|
|
- sole_str = p_code + "cog" + str(index) + str(match_id) + "hg3535"
|
|
|
- odds_only = Helper.genearte_MD5(hash_str, pt)
|
|
|
- sole = Helper.genearte_MD5(sole_str, pt)
|
|
|
- concede_guest_key = ["match_id", "lg_id", "odds_code", "status", "sort", "p_code", "odds",
|
|
|
- "condition",
|
|
|
- "odds_only", "sole", "source", "type", "team"]
|
|
|
- condition = concede_guest_rule[index]
|
|
|
- concede_guest_value = [match_id, league_id, "cog", "0", index, p_code, value, condition,
|
|
|
- odds_only, sole, "hg3535", "0", ""]
|
|
|
- concede_guest_data = dict(zip(concede_guest_key, concede_guest_value))
|
|
|
- data_list.append(concede_guest_data)
|
|
|
- # concede_home
|
|
|
- if concede_home:
|
|
|
- for index, value in enumerate(concede_home):
|
|
|
- hash_str = p_code + "coh" + str(index) + str(concede_home_rule[index]) + str(
|
|
|
- value) + "hg3535" + str(match_id)
|
|
|
- sole_str = p_code + "coh" + str(index) + str(match_id) + "hg3535"
|
|
|
- odds_only = Helper.genearte_MD5(hash_str, pt)
|
|
|
- sole = Helper.genearte_MD5(sole_str, pt)
|
|
|
- concede_home_key = ["match_id", "lg_id", "odds_code", "status", "sort", "p_code", "odds",
|
|
|
- "condition",
|
|
|
- "odds_only", "sole", "source", "type", "team"]
|
|
|
- condition = concede_home_rule[index]
|
|
|
- concede_home_value = [match_id, league_id, "coh", "0", index, p_code, value, condition, odds_only,
|
|
|
- sole, "hg3535", "0", ""]
|
|
|
- concede_guest_data = dict(zip(concede_home_key, concede_home_value))
|
|
|
- data_list.append(concede_guest_data)
|
|
|
-
|
|
|
- # 独赢----------------------------------------------------------------------------------------------------------
|
|
|
- p_code = 'C'
|
|
|
- half_capot_home = item["half_capot_home"]
|
|
|
- half_capot_guest = item["half_capot_guest"]
|
|
|
- half_capot_dogfall = item["half_capot_dogfall"]
|
|
|
- capot_home = item["capot_home"]
|
|
|
- capot_guest = item["capot_guest"]
|
|
|
- capot_dogfall = item["capot_dogfall"]
|
|
|
-
|
|
|
- # half_capot_home
|
|
|
- hash_str = p_code + "ch_h" + '0' + '1' + str(half_capot_home) + "hg3535" + str(match_id)
|
|
|
- sole_str = p_code + "ch_h" + '0' + str(match_id) + "hg3535"
|
|
|
- odds_only = Helper.genearte_MD5(hash_str, pt)
|
|
|
- sole = Helper.genearte_MD5(sole_str, pt)
|
|
|
- half_capot_home_key = ["match_id", "lg_id", "odds_code", "status", "sort", "p_code", "odds", "condition",
|
|
|
- "odds_only", "sole", "source", "type", "team"]
|
|
|
- half_capot_home_value = [match_id, league_id, "ch_h", "0", 0, p_code, half_capot_home, '1',
|
|
|
- odds_only, sole, "hg3535", "0", ""]
|
|
|
- half_capot_homet_data = dict(zip(half_capot_home_key, half_capot_home_value))
|
|
|
- data_list.append(half_capot_homet_data)
|
|
|
-
|
|
|
- # half_capot_guest
|
|
|
- hash_str = p_code + "cg_h" + '0' + '2' + str(half_capot_guest) + "hg3535" + str(match_id)
|
|
|
- sole_str = p_code + "cg_h" + '0' + str(match_id) + "hg3535"
|
|
|
- odds_only = Helper.genearte_MD5(hash_str, pt)
|
|
|
- sole = Helper.genearte_MD5(sole_str, pt)
|
|
|
- half_capot_guest_key = ["match_id", "lg_id", "odds_code", "status", "sort", "p_code", "odds", "condition",
|
|
|
- "odds_only", "sole", "source", "type", "team"]
|
|
|
- half_capot_guest_value = [match_id, league_id, "cg_h", "0", 0, p_code, half_capot_guest, '2',
|
|
|
- odds_only, sole, "hg3535", "0", ""]
|
|
|
- half_capot_guest_data = dict(zip(half_capot_guest_key, half_capot_guest_value))
|
|
|
- data_list.append(half_capot_guest_data)
|
|
|
-
|
|
|
- # half_capot_dogfall
|
|
|
- hash_str = p_code + "cd_h" + '0' + 'X' + str(half_capot_dogfall) + "hg3535" + str(match_id)
|
|
|
- sole_str = p_code + "cd_h" + '0' + str(match_id) + "hg3535"
|
|
|
- odds_only = Helper.genearte_MD5(hash_str, pt)
|
|
|
- sole = Helper.genearte_MD5(sole_str, pt)
|
|
|
- half_capot_dogfall_key = ["match_id", "lg_id", "odds_code", "status", "sort", "p_code", "odds", "condition",
|
|
|
- "odds_only", "sole", "source", "type", "team"]
|
|
|
- half_capot_dogfall_value = [match_id, league_id, "cd_h", "0", 0, p_code, half_capot_dogfall, 'X',
|
|
|
- odds_only, sole, "hg3535", "0", ""]
|
|
|
- half_capot_dogfall_data = dict(zip(half_capot_dogfall_key, half_capot_dogfall_value))
|
|
|
- data_list.append(half_capot_dogfall_data)
|
|
|
-
|
|
|
- # capot_dogfall
|
|
|
- hash_str = p_code + "cd" + '0' + 'X' + str(capot_dogfall) + "hg3535" + str(match_id)
|
|
|
- sole_str = p_code + "cd" + '0' + str(match_id) + "hg3535"
|
|
|
- odds_only = Helper.genearte_MD5(hash_str, pt)
|
|
|
- sole = Helper.genearte_MD5(sole_str, pt)
|
|
|
- capot_dogfall_key = ["match_id", "lg_id", "odds_code", "status", "sort", "p_code", "odds", "condition",
|
|
|
- "odds_only", "sole", "source", "type", "team"]
|
|
|
- capot_dogfall_value = [match_id, league_id, "cd", "0", 0, p_code, capot_dogfall, 'X', odds_only,
|
|
|
- sole, "hg3535", "0", ""]
|
|
|
- capot_dogfall_data = dict(zip(capot_dogfall_key, capot_dogfall_value))
|
|
|
- data_list.append(capot_dogfall_data)
|
|
|
-
|
|
|
- # capot_home
|
|
|
- hash_str = p_code + "ch" + '0' + '1' + str(capot_home) + "hg3535" + str(match_id)
|
|
|
- sole_str = p_code + "ch" + '0' + str(match_id) + "hg3535"
|
|
|
- odds_only = Helper.genearte_MD5(hash_str, pt)
|
|
|
- sole = Helper.genearte_MD5(sole_str, pt)
|
|
|
- capot_home_key = ["match_id", "lg_id", "odds_code", "status", "sort", "p_code", "odds", "condition",
|
|
|
- "odds_only", "sole", "source", "type", "team"]
|
|
|
- capot_home_value = [match_id, league_id, "ch", "0", 0, p_code, capot_home, '1',
|
|
|
- odds_only, sole, "hg3535", "0", ""]
|
|
|
- capot_homet_data = dict(zip(capot_home_key, capot_home_value))
|
|
|
- data_list.append(capot_homet_data)
|
|
|
-
|
|
|
- # capot_guest
|
|
|
- hash_str = p_code + "cg" + '0' + '2' + str(capot_guest) + "hg3535" + str(match_id)
|
|
|
- sole_str = p_code + "cg" + '0' + str(match_id) + "hg3535"
|
|
|
- odds_only = Helper.genearte_MD5(hash_str, pt)
|
|
|
- sole = Helper.genearte_MD5(sole_str, pt)
|
|
|
- capot_guest_key = ["match_id", "lg_id", "odds_code", "status", "sort", "p_code", "odds", "condition",
|
|
|
- "odds_only", "sole", "source", "type", "team"]
|
|
|
- capot_guest_value = [match_id, league_id, "cg", "0", 0, p_code, capot_guest, '2',
|
|
|
- odds_only, sole, "hg3535", "0", ""]
|
|
|
- capot_guest_data = dict(zip(capot_guest_key, capot_guest_value))
|
|
|
- data_list.append(capot_guest_data)
|
|
|
-
|
|
|
- # 入球数单双-----------------------------------------------------------------------------------------------------
|
|
|
- # p_code, p_id = get_pcode(corner_ball, 'two_sides')
|
|
|
- p_code = 'TS'
|
|
|
- odd_even_odd = item["odd_even_odd"]
|
|
|
- odd_even_even = item["odd_even_even"]
|
|
|
- half_odd_even_odd = item["half_odd_even_odd"]
|
|
|
- half_odd_even_even = item["half_odd_even_even"]
|
|
|
-
|
|
|
- # odd_even_odd
|
|
|
- hash_str = p_code + "tss" + '0' + '单' + str(odd_even_odd) + "hg3535" + str(match_id)
|
|
|
- sole_str = p_code + "tss" + '0' + str(match_id) + "hg3535"
|
|
|
- odds_only = Helper.genearte_MD5(hash_str, pt)
|
|
|
- sole = Helper.genearte_MD5(sole_str, pt)
|
|
|
- single_key = ["match_id", "lg_id", "odds_code", "status", "sort", "p_code", "odds", "condition",
|
|
|
- "odds_only", "sole", "source", "type", "team"]
|
|
|
- single_value = [match_id, league_id, "tss", "0", 0, p_code, odd_even_odd, '单',
|
|
|
- odds_only, sole, "hg3535", "0", ""]
|
|
|
- single_data = dict(zip(single_key, single_value))
|
|
|
- data_list.append(single_data)
|
|
|
-
|
|
|
- # odd_even_even
|
|
|
- hash_str = p_code + "tsd" + '0' + '双' + str(odd_even_even) + "hg3535" + str(match_id)
|
|
|
- sole_str = p_code + "tsd" + '0' + str(match_id) + "hg3535"
|
|
|
- odds_only = Helper.genearte_MD5(hash_str, pt)
|
|
|
- sole = Helper.genearte_MD5(sole_str, pt)
|
|
|
- double_key = ["match_id", "lg_id", "odds_code", "status", "sort", "p_code", "odds", "condition",
|
|
|
- "odds_only", "sole", "source", "type", "team"]
|
|
|
- double_value = [match_id, league_id, "tsd", "0", 0, p_code, odd_even_even, '双',
|
|
|
- odds_only, sole, "hg3535", "0", ""]
|
|
|
- double_data = dict(zip(double_key, double_value))
|
|
|
- data_list.append(double_data)
|
|
|
-
|
|
|
- # half_odd_even_even
|
|
|
- hash_str = p_code + "tsd_h" + '0' + '双' + str(half_odd_even_even) + "hg3535" + str(match_id)
|
|
|
- sole_str = p_code + "tsd_h" + '0' + str(match_id) + "hg3535"
|
|
|
- odds_only = Helper.genearte_MD5(hash_str, pt)
|
|
|
- sole = Helper.genearte_MD5(sole_str, pt)
|
|
|
- half_double_key = ["match_id", "lg_id", "odds_code", "status", "sort", "p_code", "odds", "condition",
|
|
|
- "odds_only", "sole", "source", "type", "team"]
|
|
|
- half_double_value = [match_id, league_id, "tsd_h", "0", 0, p_code, half_odd_even_even, '双',
|
|
|
- odds_only, sole, "hg3535", "0", ""]
|
|
|
- half_double_data = dict(zip(half_double_key, half_double_value))
|
|
|
- data_list.append(half_double_data)
|
|
|
-
|
|
|
- # half_odd_even_odd
|
|
|
- hash_str = p_code + "tss_h" + '0' + '单' + str(half_odd_even_odd) + "hg3535" + str(match_id)
|
|
|
- sole_str = p_code + "tss_h" + '0' + str(match_id) + "hg3535"
|
|
|
- odds_only = Helper.genearte_MD5(hash_str, pt)
|
|
|
- sole = Helper.genearte_MD5(sole_str, pt)
|
|
|
- half_single_key = ["match_id", "lg_id", "odds_code", "status", "sort", "p_code", "odds", "condition",
|
|
|
- "odds_only", "sole", "source", "type", "team"]
|
|
|
- half_single_value = [match_id, league_id, "tss_h", "0", 0, p_code, half_odd_even_odd, '单', odds_only,
|
|
|
- sole, "hg3535", "0", ""]
|
|
|
- half_single_data = dict(zip(half_single_key, half_single_value))
|
|
|
- data_list.append(half_single_data)
|
|
|
-
|
|
|
- # 总入球数 ---------------------------------------------------------------------------------------------------
|
|
|
- p_code = 'TG'
|
|
|
- total_goals = item['total_goal']
|
|
|
- total_dict = {'tg0': '0-1', 'tg1': '2-3', 'tg2': '4-6', 'tg3': '7或以上', 'tg0_h': '0', "tg1_h": '1',
|
|
|
- "tg2_h": '2', "tg3_h": '3或以上'}
|
|
|
- # 全场入球数 单双
|
|
|
- # 上半场入球数 单双
|
|
|
- for key, value in total_goals.items():
|
|
|
- hash_str = p_code + key + '0' + total_dict[key] + str(value) + "hg3535" + str(match_id)
|
|
|
- sole_str = p_code + key + '0' + str(match_id) + "hg3535"
|
|
|
- odds_only = Helper.genearte_MD5(hash_str, pt)
|
|
|
- sole = Helper.genearte_MD5(sole_str, pt)
|
|
|
- total_goals_key = ["match_id", "lg_id", "odds_code", "status", "sort", "p_code", "odds", "condition",
|
|
|
- "odds_only", "sole", "source", "type", "team"]
|
|
|
- total_goals_value = [match_id, league_id, key, "0", 0, p_code, value, total_dict[key], odds_only,
|
|
|
- sole, "hg3535", "0", ""]
|
|
|
- total_goals_data = dict(zip(total_goals_key, total_goals_value))
|
|
|
- data_list.append(total_goals_data)
|
|
|
-
|
|
|
- # 全场半场 ---------------------------------------------------------------------------------------------------
|
|
|
- half_fulls = item['half_full']
|
|
|
- p_code = 'HF'
|
|
|
- full_dict = {"hfhh": "主主", "hfhd": "主和", "hfhg": "主客", "hfdh": "和主",
|
|
|
- "hfdd": "和和", "hfdg": "和客", "hfgh": "客主", "hfgd": "客和", "hfgg": "客客"}
|
|
|
- if half_fulls:
|
|
|
- for key, value in half_fulls.items():
|
|
|
- hash_str = p_code + key + '0' + full_dict[key] + str(value) + "hg3535" + str(match_id)
|
|
|
- sole_str = p_code + key + '0' + str(match_id) + "hg3535"
|
|
|
- odds_only = Helper.genearte_MD5(hash_str, pt)
|
|
|
- sole = Helper.genearte_MD5(sole_str, pt)
|
|
|
- half_fulls_key = ["match_id", "lg_id", "odds_code", "status", "sort", "p_code", "odds", "condition",
|
|
|
- "odds_only", "sole", "source", "type", "team"]
|
|
|
- half_fulls_value = [match_id, league_id, key, "0", 0, p_code, value, full_dict[key], odds_only,
|
|
|
- sole, "hg3535", "0", ""]
|
|
|
- half_fulls_data = dict(zip(half_fulls_key, half_fulls_value))
|
|
|
- data_list.append(half_fulls_data)
|
|
|
-
|
|
|
- # 波胆-----------------------------------------------------------------------------------------------------------
|
|
|
- bodan_datas = item['bodan_data']
|
|
|
- p_code = 'B'
|
|
|
- bodan_dict = {"b10": "1-0", "b20": "2-0", "b21": "2-1", "b30": "3-0", "b31": "3-1", "b32": "3-2",
|
|
|
- "b40": "4-0", "b41": "4-1", "b42": "4-2", "b43": "4-3", "b01": "0-1", "b02": "0-2",
|
|
|
- "b12": "1-2", "b03": "0-3", "b13": "1-3", "b23": "2-3", "b04": "0-4", "b14": "1-4",
|
|
|
- "b24": "2-4", "b34": "3-4", "b00": "0-0", "b11": "1-1", "b22": "2-2", "b33": "3-3",
|
|
|
- "b44": "4-4", "bo": "其他", "b10_h": "1-0", "b20_h": "2-0", "b21_h": "2-1", "b30_h": "3-0",
|
|
|
- "b31_h": "3-1", "b32_h": "3-2", "b01_h": "0-1", "b02_h": "0-2", "b12_h": "1-2",
|
|
|
- "b03_h": "0-3",
|
|
|
- "b13_h": "1-3", "b23_h": "2-3", "b00_h": "0-0", "b11_h": "1-1", "b22_h": "2-2",
|
|
|
- "b33_h": "3-3",
|
|
|
- "bo_h": "其他"}
|
|
|
- if bodan_datas:
|
|
|
- for key, value in bodan_datas.items():
|
|
|
- hash_str = p_code + key + '0' + bodan_dict[key] + str(value) + "hg3535" + str(match_id)
|
|
|
- sole_str = p_code + key + '0' + str(match_id) + "hg3535"
|
|
|
- odds_only = Helper.genearte_MD5(hash_str, pt)
|
|
|
- sole = Helper.genearte_MD5(sole_str, pt)
|
|
|
- bodan_dict_key = ["match_id", "lg_id", "odds_code", "status", "sort", "p_code", "odds", "condition",
|
|
|
- "odds_only", "sole", "source", "type", "team"]
|
|
|
- bodan_dict_value = [match_id, league_id, key, "0", 0, p_code, value, bodan_dict[key], odds_only,
|
|
|
- sole, "hg3535", "0", ""]
|
|
|
- bodan_dict_data = dict(zip(bodan_dict_key, bodan_dict_value))
|
|
|
- data_list.append(bodan_dict_data)
|
|
|
-
|
|
|
- # 最先进球/最后进球 ----------------------------------------------------------------------------------------------
|
|
|
- first_last_balls = item['first_last_ball']
|
|
|
- # p_code, p_id = get_pcode(corner_ball, 'first_last_ball')
|
|
|
- p_code = 'FLB'
|
|
|
- first_last_dict = {"flbfh": "最先进球", "flbfg": "最先进球", "flblh": "最后进球", "flblg": "最后进球", "flbn": "没有进球"}
|
|
|
- if first_last_balls:
|
|
|
- for key, value in first_last_balls.items():
|
|
|
- hash_str = p_code + key + '0' + first_last_dict[key] + str(value) + "hg3535" + str(match_id)
|
|
|
- sole_str = p_code + key + '0' + str(match_id) + "hg3535"
|
|
|
- odds_only = Helper.genearte_MD5(hash_str, pt)
|
|
|
- sole = Helper.genearte_MD5(sole_str, pt)
|
|
|
- first_last_balls_key = ["match_id", "lg_id", "odds_code", "status", "sort", "p_code", "odds",
|
|
|
- "condition",
|
|
|
- "odds_only", "sole", "source", "type", "team"]
|
|
|
- first_last_balls_value = [match_id, league_id, key, "0", 0, p_code, value, first_last_dict[key],
|
|
|
- odds_only,
|
|
|
- sole, "hg3535", "0", ""]
|
|
|
- first_last_balls_data = dict(zip(first_last_balls_key, first_last_balls_value))
|
|
|
- data_list.append(first_last_balls_data)
|
|
|
-
|
|
|
- # 球队得分大小
|
|
|
- p_code = 'TB'
|
|
|
- # 全场
|
|
|
- full_dicts = item['full_data']
|
|
|
- # 上半场
|
|
|
- half_dicts = item['half_data']
|
|
|
- full_dict_rules = item['full_data_rule']
|
|
|
- half_dict_rules = item['half_data_rule']
|
|
|
- if full_dicts:
|
|
|
- for key, value in full_dicts.items():
|
|
|
- hash_str = p_code + key + '0' + full_dict_rules[key] + str(value) + "hg3535" + str(match_id)
|
|
|
- sole_str = p_code + key + '0' + str(match_id) + "hg3535"
|
|
|
- odds_only = Helper.genearte_MD5(hash_str, pt)
|
|
|
- sole = Helper.genearte_MD5(sole_str, pt)
|
|
|
- full_dict_rules_key = ["match_id", "lg_id", "odds_code", "status", "sort", "p_code", "odds",
|
|
|
- "condition", "odds_only", "sole", "source", "type", "team"]
|
|
|
- full_dict_rules_value = [match_id, league_id, key, "0", 0, p_code, value, full_dict_rules[key],
|
|
|
- odds_only, sole, "hg3535", "0", ""]
|
|
|
- full_dict_rules_data = dict(zip(full_dict_rules_key, full_dict_rules_value))
|
|
|
- data_list.append(full_dict_rules_data)
|
|
|
-
|
|
|
- if half_dicts:
|
|
|
- for key, value in half_dicts.items():
|
|
|
- hash_str = p_code + key + '0' + half_dict_rules[key] + str(value) + "hg3535" + str(match_id)
|
|
|
- sole_str = p_code + key + '0' + str(match_id) + "hg3535"
|
|
|
- odds_only = Helper.genearte_MD5(hash_str, pt)
|
|
|
- sole = Helper.genearte_MD5(sole_str, pt)
|
|
|
- half_dicts_key = ["match_id", "lg_id", "odds_code", "status", "sort", "p_code", "odds",
|
|
|
- "condition", "odds_only", "sole", "source", "type", "team"]
|
|
|
- half_dicts_value = [match_id, league_id, key, "0", 0, p_code, value, half_dict_rules[key],
|
|
|
- odds_only, sole, "hg3535", "0", ""]
|
|
|
- half_dicts_data = dict(zip(half_dicts_key, half_dicts_value))
|
|
|
- data_list.append(half_dicts_data)
|
|
|
-
|
|
|
+ #
|
|
|
+ # p_code = "GS"
|
|
|
+ # half_size_guest = item["half_size_guest"]
|
|
|
+ # half_size_guest_rule = item["half_size_guest_rule"]
|
|
|
+ # half_size_home = item["half_size_home"]
|
|
|
+ # half_size_home_rule = item["half_size_home_rule"]
|
|
|
+ # data_list = []
|
|
|
+ # odds_onlys = []
|
|
|
+ # # half_size_guest
|
|
|
+ # for index, value in enumerate(half_size_guest):
|
|
|
+ # hash_str = p_code + "gss_h" + str(index) + str(half_size_guest_rule[index]) + str(
|
|
|
+ # value) + "hg3535" + str(match_id)
|
|
|
+ # sole_str = p_code + "gss_h" + str(index) + str(match_id) + "hg3535"
|
|
|
+ # odds_only = Helper.genearte_MD5(hash_str, pt)
|
|
|
+ # sole = Helper.genearte_MD5(sole_str, pt)
|
|
|
+ # half_size_guest_key = ["match_id", "lg_id", "odds_code", "status", "sort", "p_code", "odds",
|
|
|
+ # "condition",
|
|
|
+ # "odds_only", "sole", "source", "type", "team"]
|
|
|
+ # condition = half_size_guest_rule[index]
|
|
|
+ # half_size_guest_value = [match_id, league_id, "gss_h", "0", index, p_code, value, condition,
|
|
|
+ # odds_only, sole, "hg3535", "0", ""]
|
|
|
+ # half_size_guest_data = dict(zip(half_size_guest_key, half_size_guest_value))
|
|
|
+ # data_list.append(half_size_guest_data)
|
|
|
+ # # half_size_home
|
|
|
+ # for index, value in enumerate(half_size_home):
|
|
|
+ # hash_str = p_code + "gsb_h" + str(index) + str(half_size_home_rule[index]) + str(
|
|
|
+ # value) + "hg3535" + str(match_id)
|
|
|
+ # sole_str = p_code + "gsb_h" + str(index) + str(match_id) + "hg3535"
|
|
|
+ # odds_only = Helper.genearte_MD5(hash_str, pt)
|
|
|
+ # sole = Helper.genearte_MD5(sole_str, pt)
|
|
|
+ # half_size_home_key = ["match_id", "lg_id", "odds_code", "status", "sort", "p_code", "odds", "condition",
|
|
|
+ # "odds_only", "sole", "source", "type", "team"]
|
|
|
+ # condition = half_size_home_rule[index]
|
|
|
+ # half_size_home_value = [match_id, league_id, "gsb_h", "0", index, p_code, value, condition,
|
|
|
+ # odds_only, sole, "hg3535", "0", ""]
|
|
|
+ # half_size_home_data = dict(zip(half_size_home_key, half_size_home_value))
|
|
|
+ # data_list.append(half_size_home_data)
|
|
|
+ #
|
|
|
+ # # 全场场大小
|
|
|
+ # size_guest = item["size_guest"]
|
|
|
+ # size_guest_rule = item["size_guest_rule"]
|
|
|
+ # size_home = item["size_home"]
|
|
|
+ # size_home_rule = item["size_home_rule"]
|
|
|
+ # # size_home
|
|
|
+ # for index, value in enumerate(size_home):
|
|
|
+ # hash_str = p_code + "gsb" + str(index) + str(size_home_rule[index]) + str(value) + "hg3535" + str(
|
|
|
+ # match_id)
|
|
|
+ # sole_str = p_code + "gsb" + str(index) + str(match_id) + "hg3535"
|
|
|
+ # odds_only = Helper.genearte_MD5(hash_str, pt)
|
|
|
+ # sole = Helper.genearte_MD5(sole_str, pt)
|
|
|
+ # size_home_key = ["match_id", "lg_id", "odds_code", "status", "sort", "p_code", "odds", "condition",
|
|
|
+ # "odds_only", "sole", "source", "type", "team"]
|
|
|
+ # condition = size_home_rule[index]
|
|
|
+ # size_home_value = [match_id, league_id, "gsb", "0", index, p_code, value, condition, odds_only,
|
|
|
+ # sole, "hg3535", "0", ""]
|
|
|
+ # size_home_data = dict(zip(size_home_key, size_home_value))
|
|
|
+ # data_list.append(size_home_data)
|
|
|
+ # # size_guest
|
|
|
+ # for index, value in enumerate(size_guest):
|
|
|
+ # hash_str = p_code + "gss" + str(index) + str(size_guest_rule[index]) + str(value) + "hg3535" + str(
|
|
|
+ # match_id)
|
|
|
+ # sole_str = p_code + "gss" + str(index) + str(match_id) + "hg3535"
|
|
|
+ # odds_only = Helper.genearte_MD5(hash_str, pt)
|
|
|
+ # sole = Helper.genearte_MD5(sole_str, pt)
|
|
|
+ # size_guest_key = ["match_id", "lg_id", "odds_code", "status", "sort", "p_code", "odds", "condition",
|
|
|
+ # "odds_only", "sole", "source", "type", "team"]
|
|
|
+ # condition = size_guest_rule[index]
|
|
|
+ # size_guest_value = [match_id, league_id, "gss", "0", index, p_code, value, condition, odds_only,
|
|
|
+ # sole, "hg3535", "0", ""]
|
|
|
+ # size_home_data = dict(zip(size_guest_key, size_guest_value))
|
|
|
+ # data_list.append(size_home_data)
|
|
|
+ #
|
|
|
+ # p_code = 'CO'
|
|
|
+ # half_concede_home_rule = item["half_concede_home_rule"]
|
|
|
+ # half_concede_home = item["half_concede_home"]
|
|
|
+ # half_concede_guest_rule = item["half_concede_guest_rule"]
|
|
|
+ # half_concede_guest = item["half_concede_guest"]
|
|
|
+ # # half_concede_home
|
|
|
+ # if half_concede_guest:
|
|
|
+ # for index, value in enumerate(half_concede_guest):
|
|
|
+ # hash_str = p_code + "cog_h" + str(index) + str(half_concede_guest_rule[index]) + str(
|
|
|
+ # value) + "hg3535" + str(match_id)
|
|
|
+ # sole_str = p_code + "cog_h" + str(index) + str(match_id) + "hg3535"
|
|
|
+ # odds_only = Helper.genearte_MD5(hash_str, pt)
|
|
|
+ # sole = Helper.genearte_MD5(sole_str, pt)
|
|
|
+ # half_concede_guest_key = ["match_id", "lg_id", "odds_code", "status", "sort", "p_code", "odds",
|
|
|
+ # "condition",
|
|
|
+ # "odds_only", "sole", "source", "type", "team"]
|
|
|
+ # condition = half_concede_guest_rule[index]
|
|
|
+ # half_concede_guest_value = [match_id, league_id, "cog_h", "0", index, p_code, value, condition,
|
|
|
+ # odds_only, sole, "hg3535", "0", ""]
|
|
|
+ # half_concede_guest_data = dict(zip(half_concede_guest_key, half_concede_guest_value))
|
|
|
+ # data_list.append(half_concede_guest_data)
|
|
|
+ #
|
|
|
+ # # half_concede_home
|
|
|
+ # if half_concede_home:
|
|
|
+ # for index, value in enumerate(half_concede_home):
|
|
|
+ # hash_str = p_code + "coh_h" + str(index) + str(half_concede_home_rule[index]) + str(
|
|
|
+ # value) + "hg3535" + str(match_id)
|
|
|
+ # sole_str = p_code + "coh_h" + str(index) + str(match_id) + "hg3535"
|
|
|
+ # odds_only = Helper.genearte_MD5(hash_str, pt)
|
|
|
+ # sole = Helper.genearte_MD5(sole_str, pt)
|
|
|
+ # half_concede_home_key = ["match_id", "lg_id", "odds_code", "status", "sort", "p_code", "odds",
|
|
|
+ # "condition",
|
|
|
+ # "odds_only", "sole", "source", "type", "team"]
|
|
|
+ # condition = half_concede_home_rule[index]
|
|
|
+ # half_concede_home_value = [match_id, league_id, "coh_h", "0", index, p_code, value, condition,
|
|
|
+ # odds_only, sole, "hg3535", "0", ""]
|
|
|
+ # half_concede_home_data = dict(zip(half_concede_home_key, half_concede_home_value))
|
|
|
+ # data_list.append(half_concede_home_data)
|
|
|
+ #
|
|
|
+ # concede_guest = item["concede_guest"]
|
|
|
+ # concede_guest_rule = item["concede_guest_rule"]
|
|
|
+ # concede_home = item["concede_home"]
|
|
|
+ # concede_home_rule = item["concede_home_rule"]
|
|
|
+ # # concede_guest
|
|
|
+ # if concede_guest:
|
|
|
+ # for index, value in enumerate(concede_guest):
|
|
|
+ # hash_str = p_code + "cog" + str(index) + str(concede_guest_rule[index]) + str(
|
|
|
+ # value) + "hg3535" + str(match_id)
|
|
|
+ # sole_str = p_code + "cog" + str(index) + str(match_id) + "hg3535"
|
|
|
+ # odds_only = Helper.genearte_MD5(hash_str, pt)
|
|
|
+ # sole = Helper.genearte_MD5(sole_str, pt)
|
|
|
+ # concede_guest_key = ["match_id", "lg_id", "odds_code", "status", "sort", "p_code", "odds",
|
|
|
+ # "condition",
|
|
|
+ # "odds_only", "sole", "source", "type", "team"]
|
|
|
+ # condition = concede_guest_rule[index]
|
|
|
+ # concede_guest_value = [match_id, league_id, "cog", "0", index, p_code, value, condition,
|
|
|
+ # odds_only, sole, "hg3535", "0", ""]
|
|
|
+ # concede_guest_data = dict(zip(concede_guest_key, concede_guest_value))
|
|
|
+ # data_list.append(concede_guest_data)
|
|
|
+ # # concede_home
|
|
|
+ # if concede_home:
|
|
|
+ # for index, value in enumerate(concede_home):
|
|
|
+ # hash_str = p_code + "coh" + str(index) + str(concede_home_rule[index]) + str(
|
|
|
+ # value) + "hg3535" + str(match_id)
|
|
|
+ # sole_str = p_code + "coh" + str(index) + str(match_id) + "hg3535"
|
|
|
+ # odds_only = Helper.genearte_MD5(hash_str, pt)
|
|
|
+ # sole = Helper.genearte_MD5(sole_str, pt)
|
|
|
+ # concede_home_key = ["match_id", "lg_id", "odds_code", "status", "sort", "p_code", "odds",
|
|
|
+ # "condition",
|
|
|
+ # "odds_only", "sole", "source", "type", "team"]
|
|
|
+ # condition = concede_home_rule[index]
|
|
|
+ # concede_home_value = [match_id, league_id, "coh", "0", index, p_code, value, condition, odds_only,
|
|
|
+ # sole, "hg3535", "0", ""]
|
|
|
+ # concede_guest_data = dict(zip(concede_home_key, concede_home_value))
|
|
|
+ # data_list.append(concede_guest_data)
|
|
|
+ #
|
|
|
+ # # 独赢----------------------------------------------------------------------------------------------------------
|
|
|
+ # p_code = 'C'
|
|
|
+ # half_capot_home = item["half_capot_home"]
|
|
|
+ # half_capot_guest = item["half_capot_guest"]
|
|
|
+ # half_capot_dogfall = item["half_capot_dogfall"]
|
|
|
+ # capot_home = item["capot_home"]
|
|
|
+ # capot_guest = item["capot_guest"]
|
|
|
+ # capot_dogfall = item["capot_dogfall"]
|
|
|
+ #
|
|
|
+ # # half_capot_home
|
|
|
+ # hash_str = p_code + "ch_h" + '0' + '1' + str(half_capot_home) + "hg3535" + str(match_id)
|
|
|
+ # sole_str = p_code + "ch_h" + '0' + str(match_id) + "hg3535"
|
|
|
+ # odds_only = Helper.genearte_MD5(hash_str, pt)
|
|
|
+ # sole = Helper.genearte_MD5(sole_str, pt)
|
|
|
+ # half_capot_home_key = ["match_id", "lg_id", "odds_code", "status", "sort", "p_code", "odds", "condition",
|
|
|
+ # "odds_only", "sole", "source", "type", "team"]
|
|
|
+ # half_capot_home_value = [match_id, league_id, "ch_h", "0", 0, p_code, half_capot_home, '1',
|
|
|
+ # odds_only, sole, "hg3535", "0", ""]
|
|
|
+ # half_capot_homet_data = dict(zip(half_capot_home_key, half_capot_home_value))
|
|
|
+ # data_list.append(half_capot_homet_data)
|
|
|
+ #
|
|
|
+ # # half_capot_guest
|
|
|
+ # hash_str = p_code + "cg_h" + '0' + '2' + str(half_capot_guest) + "hg3535" + str(match_id)
|
|
|
+ # sole_str = p_code + "cg_h" + '0' + str(match_id) + "hg3535"
|
|
|
+ # odds_only = Helper.genearte_MD5(hash_str, pt)
|
|
|
+ # sole = Helper.genearte_MD5(sole_str, pt)
|
|
|
+ # half_capot_guest_key = ["match_id", "lg_id", "odds_code", "status", "sort", "p_code", "odds", "condition",
|
|
|
+ # "odds_only", "sole", "source", "type", "team"]
|
|
|
+ # half_capot_guest_value = [match_id, league_id, "cg_h", "0", 0, p_code, half_capot_guest, '2',
|
|
|
+ # odds_only, sole, "hg3535", "0", ""]
|
|
|
+ # half_capot_guest_data = dict(zip(half_capot_guest_key, half_capot_guest_value))
|
|
|
+ # data_list.append(half_capot_guest_data)
|
|
|
+ #
|
|
|
+ # # half_capot_dogfall
|
|
|
+ # hash_str = p_code + "cd_h" + '0' + 'X' + str(half_capot_dogfall) + "hg3535" + str(match_id)
|
|
|
+ # sole_str = p_code + "cd_h" + '0' + str(match_id) + "hg3535"
|
|
|
+ # odds_only = Helper.genearte_MD5(hash_str, pt)
|
|
|
+ # sole = Helper.genearte_MD5(sole_str, pt)
|
|
|
+ # half_capot_dogfall_key = ["match_id", "lg_id", "odds_code", "status", "sort", "p_code", "odds", "condition",
|
|
|
+ # "odds_only", "sole", "source", "type", "team"]
|
|
|
+ # half_capot_dogfall_value = [match_id, league_id, "cd_h", "0", 0, p_code, half_capot_dogfall, 'X',
|
|
|
+ # odds_only, sole, "hg3535", "0", ""]
|
|
|
+ # half_capot_dogfall_data = dict(zip(half_capot_dogfall_key, half_capot_dogfall_value))
|
|
|
+ # data_list.append(half_capot_dogfall_data)
|
|
|
+ #
|
|
|
+ # # capot_dogfall
|
|
|
+ # hash_str = p_code + "cd" + '0' + 'X' + str(capot_dogfall) + "hg3535" + str(match_id)
|
|
|
+ # sole_str = p_code + "cd" + '0' + str(match_id) + "hg3535"
|
|
|
+ # odds_only = Helper.genearte_MD5(hash_str, pt)
|
|
|
+ # sole = Helper.genearte_MD5(sole_str, pt)
|
|
|
+ # capot_dogfall_key = ["match_id", "lg_id", "odds_code", "status", "sort", "p_code", "odds", "condition",
|
|
|
+ # "odds_only", "sole", "source", "type", "team"]
|
|
|
+ # capot_dogfall_value = [match_id, league_id, "cd", "0", 0, p_code, capot_dogfall, 'X', odds_only,
|
|
|
+ # sole, "hg3535", "0", ""]
|
|
|
+ # capot_dogfall_data = dict(zip(capot_dogfall_key, capot_dogfall_value))
|
|
|
+ # data_list.append(capot_dogfall_data)
|
|
|
+ #
|
|
|
+ # # capot_home
|
|
|
+ # hash_str = p_code + "ch" + '0' + '1' + str(capot_home) + "hg3535" + str(match_id)
|
|
|
+ # sole_str = p_code + "ch" + '0' + str(match_id) + "hg3535"
|
|
|
+ # odds_only = Helper.genearte_MD5(hash_str, pt)
|
|
|
+ # sole = Helper.genearte_MD5(sole_str, pt)
|
|
|
+ # capot_home_key = ["match_id", "lg_id", "odds_code", "status", "sort", "p_code", "odds", "condition",
|
|
|
+ # "odds_only", "sole", "source", "type", "team"]
|
|
|
+ # capot_home_value = [match_id, league_id, "ch", "0", 0, p_code, capot_home, '1',
|
|
|
+ # odds_only, sole, "hg3535", "0", ""]
|
|
|
+ # capot_homet_data = dict(zip(capot_home_key, capot_home_value))
|
|
|
+ # data_list.append(capot_homet_data)
|
|
|
+ #
|
|
|
+ # # capot_guest
|
|
|
+ # hash_str = p_code + "cg" + '0' + '2' + str(capot_guest) + "hg3535" + str(match_id)
|
|
|
+ # sole_str = p_code + "cg" + '0' + str(match_id) + "hg3535"
|
|
|
+ # odds_only = Helper.genearte_MD5(hash_str, pt)
|
|
|
+ # sole = Helper.genearte_MD5(sole_str, pt)
|
|
|
+ # capot_guest_key = ["match_id", "lg_id", "odds_code", "status", "sort", "p_code", "odds", "condition",
|
|
|
+ # "odds_only", "sole", "source", "type", "team"]
|
|
|
+ # capot_guest_value = [match_id, league_id, "cg", "0", 0, p_code, capot_guest, '2',
|
|
|
+ # odds_only, sole, "hg3535", "0", ""]
|
|
|
+ # capot_guest_data = dict(zip(capot_guest_key, capot_guest_value))
|
|
|
+ # data_list.append(capot_guest_data)
|
|
|
+ #
|
|
|
+ # # 入球数单双-----------------------------------------------------------------------------------------------------
|
|
|
+ # # p_code, p_id = get_pcode(corner_ball, 'two_sides')
|
|
|
+ # p_code = 'TS'
|
|
|
+ # odd_even_odd = item["odd_even_odd"]
|
|
|
+ # odd_even_even = item["odd_even_even"]
|
|
|
+ # half_odd_even_odd = item["half_odd_even_odd"]
|
|
|
+ # half_odd_even_even = item["half_odd_even_even"]
|
|
|
+ #
|
|
|
+ # # odd_even_odd
|
|
|
+ # hash_str = p_code + "tss" + '0' + '单' + str(odd_even_odd) + "hg3535" + str(match_id)
|
|
|
+ # sole_str = p_code + "tss" + '0' + str(match_id) + "hg3535"
|
|
|
+ # odds_only = Helper.genearte_MD5(hash_str, pt)
|
|
|
+ # sole = Helper.genearte_MD5(sole_str, pt)
|
|
|
+ # single_key = ["match_id", "lg_id", "odds_code", "status", "sort", "p_code", "odds", "condition",
|
|
|
+ # "odds_only", "sole", "source", "type", "team"]
|
|
|
+ # single_value = [match_id, league_id, "tss", "0", 0, p_code, odd_even_odd, '单',
|
|
|
+ # odds_only, sole, "hg3535", "0", ""]
|
|
|
+ # single_data = dict(zip(single_key, single_value))
|
|
|
+ # data_list.append(single_data)
|
|
|
+ #
|
|
|
+ # # odd_even_even
|
|
|
+ # hash_str = p_code + "tsd" + '0' + '双' + str(odd_even_even) + "hg3535" + str(match_id)
|
|
|
+ # sole_str = p_code + "tsd" + '0' + str(match_id) + "hg3535"
|
|
|
+ # odds_only = Helper.genearte_MD5(hash_str, pt)
|
|
|
+ # sole = Helper.genearte_MD5(sole_str, pt)
|
|
|
+ # double_key = ["match_id", "lg_id", "odds_code", "status", "sort", "p_code", "odds", "condition",
|
|
|
+ # "odds_only", "sole", "source", "type", "team"]
|
|
|
+ # double_value = [match_id, league_id, "tsd", "0", 0, p_code, odd_even_even, '双',
|
|
|
+ # odds_only, sole, "hg3535", "0", ""]
|
|
|
+ # double_data = dict(zip(double_key, double_value))
|
|
|
+ # data_list.append(double_data)
|
|
|
+ #
|
|
|
+ # # half_odd_even_even
|
|
|
+ # hash_str = p_code + "tsd_h" + '0' + '双' + str(half_odd_even_even) + "hg3535" + str(match_id)
|
|
|
+ # sole_str = p_code + "tsd_h" + '0' + str(match_id) + "hg3535"
|
|
|
+ # odds_only = Helper.genearte_MD5(hash_str, pt)
|
|
|
+ # sole = Helper.genearte_MD5(sole_str, pt)
|
|
|
+ # half_double_key = ["match_id", "lg_id", "odds_code", "status", "sort", "p_code", "odds", "condition",
|
|
|
+ # "odds_only", "sole", "source", "type", "team"]
|
|
|
+ # half_double_value = [match_id, league_id, "tsd_h", "0", 0, p_code, half_odd_even_even, '双',
|
|
|
+ # odds_only, sole, "hg3535", "0", ""]
|
|
|
+ # half_double_data = dict(zip(half_double_key, half_double_value))
|
|
|
+ # data_list.append(half_double_data)
|
|
|
+ #
|
|
|
+ # # half_odd_even_odd
|
|
|
+ # hash_str = p_code + "tss_h" + '0' + '单' + str(half_odd_even_odd) + "hg3535" + str(match_id)
|
|
|
+ # sole_str = p_code + "tss_h" + '0' + str(match_id) + "hg3535"
|
|
|
+ # odds_only = Helper.genearte_MD5(hash_str, pt)
|
|
|
+ # sole = Helper.genearte_MD5(sole_str, pt)
|
|
|
+ # half_single_key = ["match_id", "lg_id", "odds_code", "status", "sort", "p_code", "odds", "condition",
|
|
|
+ # "odds_only", "sole", "source", "type", "team"]
|
|
|
+ # half_single_value = [match_id, league_id, "tss_h", "0", 0, p_code, half_odd_even_odd, '单', odds_only,
|
|
|
+ # sole, "hg3535", "0", ""]
|
|
|
+ # half_single_data = dict(zip(half_single_key, half_single_value))
|
|
|
+ # data_list.append(half_single_data)
|
|
|
+ #
|
|
|
+ # # 总入球数 ---------------------------------------------------------------------------------------------------
|
|
|
+ # p_code = 'TG'
|
|
|
+ # total_goals = item['total_goal']
|
|
|
+ # total_dict = {'tg0': '0-1', 'tg1': '2-3', 'tg2': '4-6', 'tg3': '7或以上', 'tg0_h': '0', "tg1_h": '1',
|
|
|
+ # "tg2_h": '2', "tg3_h": '3或以上'}
|
|
|
+ # # 全场入球数 单双
|
|
|
+ # # 上半场入球数 单双
|
|
|
+ # for key, value in total_goals.items():
|
|
|
+ # hash_str = p_code + key + '0' + total_dict[key] + str(value) + "hg3535" + str(match_id)
|
|
|
+ # sole_str = p_code + key + '0' + str(match_id) + "hg3535"
|
|
|
+ # odds_only = Helper.genearte_MD5(hash_str, pt)
|
|
|
+ # sole = Helper.genearte_MD5(sole_str, pt)
|
|
|
+ # total_goals_key = ["match_id", "lg_id", "odds_code", "status", "sort", "p_code", "odds", "condition",
|
|
|
+ # "odds_only", "sole", "source", "type", "team"]
|
|
|
+ # total_goals_value = [match_id, league_id, key, "0", 0, p_code, value, total_dict[key], odds_only,
|
|
|
+ # sole, "hg3535", "0", ""]
|
|
|
+ # total_goals_data = dict(zip(total_goals_key, total_goals_value))
|
|
|
+ # data_list.append(total_goals_data)
|
|
|
+ #
|
|
|
+ # # 全场半场 ---------------------------------------------------------------------------------------------------
|
|
|
+ # half_fulls = item['half_full']
|
|
|
+ # p_code = 'HF'
|
|
|
+ # full_dict = {"hfhh": "主主", "hfhd": "主和", "hfhg": "主客", "hfdh": "和主",
|
|
|
+ # "hfdd": "和和", "hfdg": "和客", "hfgh": "客主", "hfgd": "客和", "hfgg": "客客"}
|
|
|
+ # if half_fulls:
|
|
|
+ # for key, value in half_fulls.items():
|
|
|
+ # hash_str = p_code + key + '0' + full_dict[key] + str(value) + "hg3535" + str(match_id)
|
|
|
+ # sole_str = p_code + key + '0' + str(match_id) + "hg3535"
|
|
|
+ # odds_only = Helper.genearte_MD5(hash_str, pt)
|
|
|
+ # sole = Helper.genearte_MD5(sole_str, pt)
|
|
|
+ # half_fulls_key = ["match_id", "lg_id", "odds_code", "status", "sort", "p_code", "odds", "condition",
|
|
|
+ # "odds_only", "sole", "source", "type", "team"]
|
|
|
+ # half_fulls_value = [match_id, league_id, key, "0", 0, p_code, value, full_dict[key], odds_only,
|
|
|
+ # sole, "hg3535", "0", ""]
|
|
|
+ # half_fulls_data = dict(zip(half_fulls_key, half_fulls_value))
|
|
|
+ # data_list.append(half_fulls_data)
|
|
|
+ #
|
|
|
+ # # 波胆-----------------------------------------------------------------------------------------------------------
|
|
|
+ # bodan_datas = item['bodan_data']
|
|
|
+ # p_code = 'B'
|
|
|
+ # bodan_dict = {"b10": "1-0", "b20": "2-0", "b21": "2-1", "b30": "3-0", "b31": "3-1", "b32": "3-2",
|
|
|
+ # "b40": "4-0", "b41": "4-1", "b42": "4-2", "b43": "4-3", "b01": "0-1", "b02": "0-2",
|
|
|
+ # "b12": "1-2", "b03": "0-3", "b13": "1-3", "b23": "2-3", "b04": "0-4", "b14": "1-4",
|
|
|
+ # "b24": "2-4", "b34": "3-4", "b00": "0-0", "b11": "1-1", "b22": "2-2", "b33": "3-3",
|
|
|
+ # "b44": "4-4", "bo": "其他", "b10_h": "1-0", "b20_h": "2-0", "b21_h": "2-1", "b30_h": "3-0",
|
|
|
+ # "b31_h": "3-1", "b32_h": "3-2", "b01_h": "0-1", "b02_h": "0-2", "b12_h": "1-2",
|
|
|
+ # "b03_h": "0-3",
|
|
|
+ # "b13_h": "1-3", "b23_h": "2-3", "b00_h": "0-0", "b11_h": "1-1", "b22_h": "2-2",
|
|
|
+ # "b33_h": "3-3",
|
|
|
+ # "bo_h": "其他"}
|
|
|
+ # if bodan_datas:
|
|
|
+ # for key, value in bodan_datas.items():
|
|
|
+ # hash_str = p_code + key + '0' + bodan_dict[key] + str(value) + "hg3535" + str(match_id)
|
|
|
+ # sole_str = p_code + key + '0' + str(match_id) + "hg3535"
|
|
|
+ # odds_only = Helper.genearte_MD5(hash_str, pt)
|
|
|
+ # sole = Helper.genearte_MD5(sole_str, pt)
|
|
|
+ # bodan_dict_key = ["match_id", "lg_id", "odds_code", "status", "sort", "p_code", "odds", "condition",
|
|
|
+ # "odds_only", "sole", "source", "type", "team"]
|
|
|
+ # bodan_dict_value = [match_id, league_id, key, "0", 0, p_code, value, bodan_dict[key], odds_only,
|
|
|
+ # sole, "hg3535", "0", ""]
|
|
|
+ # bodan_dict_data = dict(zip(bodan_dict_key, bodan_dict_value))
|
|
|
+ # data_list.append(bodan_dict_data)
|
|
|
+ #
|
|
|
+ # # 最先进球/最后进球 ----------------------------------------------------------------------------------------------
|
|
|
+ # first_last_balls = item['first_last_ball']
|
|
|
+ # # p_code, p_id = get_pcode(corner_ball, 'first_last_ball')
|
|
|
+ # p_code = 'FLB'
|
|
|
+ # first_last_dict = {"flbfh": "最先进球", "flbfg": "最先进球", "flblh": "最后进球", "flblg": "最后进球", "flbn": "没有进球"}
|
|
|
+ # if first_last_balls:
|
|
|
+ # for key, value in first_last_balls.items():
|
|
|
+ # hash_str = p_code + key + '0' + first_last_dict[key] + str(value) + "hg3535" + str(match_id)
|
|
|
+ # sole_str = p_code + key + '0' + str(match_id) + "hg3535"
|
|
|
+ # odds_only = Helper.genearte_MD5(hash_str, pt)
|
|
|
+ # sole = Helper.genearte_MD5(sole_str, pt)
|
|
|
+ # first_last_balls_key = ["match_id", "lg_id", "odds_code", "status", "sort", "p_code", "odds",
|
|
|
+ # "condition",
|
|
|
+ # "odds_only", "sole", "source", "type", "team"]
|
|
|
+ # first_last_balls_value = [match_id, league_id, key, "0", 0, p_code, value, first_last_dict[key],
|
|
|
+ # odds_only,
|
|
|
+ # sole, "hg3535", "0", ""]
|
|
|
+ # first_last_balls_data = dict(zip(first_last_balls_key, first_last_balls_value))
|
|
|
+ # data_list.append(first_last_balls_data)
|
|
|
+ #
|
|
|
+ # # 球队得分大小
|
|
|
+ # p_code = 'TB'
|
|
|
+ # # 全场
|
|
|
+ # full_dicts = item['full_data']
|
|
|
+ # # 上半场
|
|
|
+ # half_dicts = item['half_data']
|
|
|
+ # full_dict_rules = item['full_data_rule']
|
|
|
+ # half_dict_rules = item['half_data_rule']
|
|
|
+ # if full_dicts:
|
|
|
+ # for key, value in full_dicts.items():
|
|
|
+ # hash_str = p_code + key + '0' + full_dict_rules[key] + str(value) + "hg3535" + str(match_id)
|
|
|
+ # sole_str = p_code + key + '0' + str(match_id) + "hg3535"
|
|
|
+ # odds_only = Helper.genearte_MD5(hash_str, pt)
|
|
|
+ # sole = Helper.genearte_MD5(sole_str, pt)
|
|
|
+ # full_dict_rules_key = ["match_id", "lg_id", "odds_code", "status", "sort", "p_code", "odds",
|
|
|
+ # "condition", "odds_only", "sole", "source", "type", "team"]
|
|
|
+ # full_dict_rules_value = [match_id, league_id, key, "0", 0, p_code, value, full_dict_rules[key],
|
|
|
+ # odds_only, sole, "hg3535", "0", ""]
|
|
|
+ # full_dict_rules_data = dict(zip(full_dict_rules_key, full_dict_rules_value))
|
|
|
+ # data_list.append(full_dict_rules_data)
|
|
|
+ #
|
|
|
+ # if half_dicts:
|
|
|
+ # for key, value in half_dicts.items():
|
|
|
+ # hash_str = p_code + key + '0' + half_dict_rules[key] + str(value) + "hg3535" + str(match_id)
|
|
|
+ # sole_str = p_code + key + '0' + str(match_id) + "hg3535"
|
|
|
+ # odds_only = Helper.genearte_MD5(hash_str, pt)
|
|
|
+ # sole = Helper.genearte_MD5(sole_str, pt)
|
|
|
+ # half_dicts_key = ["match_id", "lg_id", "odds_code", "status", "sort", "p_code", "odds",
|
|
|
+ # "condition", "odds_only", "sole", "source", "type", "team"]
|
|
|
+ # half_dicts_value = [match_id, league_id, key, "0", 0, p_code, value, half_dict_rules[key],
|
|
|
+ # odds_only, sole, "hg3535", "0", ""]
|
|
|
+ # half_dicts_data = dict(zip(half_dicts_key, half_dicts_value))
|
|
|
+ # data_list.append(half_dicts_data)
|
|
|
+ #
|
|
|
p_code = 'CB'
|
|
|
horn_ou_dict = item['horn_ou_dict']
|
|
|
horn_ou_dict_rule = item['horn_ou_dict_rule']
|