1
- import requests
1
+ import httpx
2
2
import json
3
3
import os
4
4
from base_logger import logger
@@ -10,21 +10,21 @@ def fetch_genshin_impact_update():
10
10
weapon_config_file = "WeaponExcelConfigData.json"
11
11
resp = {}
12
12
13
- avatar_excel_config_data = json .loads (requests .get (target_host + avatar_config_file ).text )
14
- weapon_excel_config_data = json .loads (requests .get (target_host + weapon_config_file ).text )
15
- chs_dict = json .loads (requests .get (target_host + "TextMap/TextMapCHS.json" ).text )
16
- cht_dict = json .loads (requests .get (target_host + "TextMap/TextMapCHT.json" ).text )
17
- de_dict = json .loads (requests .get (target_host + "TextMap/TextMapDE.json" ).text )
18
- en_dict = json .loads (requests .get (target_host + "TextMap/TextMapEN.json" ).text )
19
- es_dict = json .loads (requests .get (target_host + "TextMap/TextMapES.json" ).text )
20
- fr_dict = json .loads (requests .get (target_host + "TextMap/TextMapFR.json" ).text )
21
- id_dict = json .loads (requests .get (target_host + "TextMap/TextMapID.json" ).text )
22
- jp_dict = json .loads (requests .get (target_host + "TextMap/TextMapJP.json" ).text )
23
- kr_dict = json .loads (requests .get (target_host + "TextMap/TextMapKR.json" ).text )
24
- pt_dict = json .loads (requests .get (target_host + "TextMap/TextMapPT.json" ).text )
25
- ru_dict = json .loads (requests .get (target_host + "TextMap/TextMapRU.json" ).text )
26
- th_dict = json .loads (requests .get (target_host + "TextMap/TextMapTH.json" ).text )
27
- vi_dict = json .loads (requests .get (target_host + "TextMap/TextMapVI.json" ).text )
13
+ avatar_excel_config_data = json .loads (httpx .get (target_host + avatar_config_file ).text )
14
+ weapon_excel_config_data = json .loads (httpx .get (target_host + weapon_config_file ).text )
15
+ chs_dict = json .loads (httpx .get (target_host + "TextMap/TextMapCHS.json" ).text )
16
+ cht_dict = json .loads (httpx .get (target_host + "TextMap/TextMapCHT.json" ).text )
17
+ de_dict = json .loads (httpx .get (target_host + "TextMap/TextMapDE.json" ).text )
18
+ en_dict = json .loads (httpx .get (target_host + "TextMap/TextMapEN.json" ).text )
19
+ es_dict = json .loads (httpx .get (target_host + "TextMap/TextMapES.json" ).text )
20
+ fr_dict = json .loads (httpx .get (target_host + "TextMap/TextMapFR.json" ).text )
21
+ id_dict = json .loads (httpx .get (target_host + "TextMap/TextMapID.json" ).text )
22
+ jp_dict = json .loads (httpx .get (target_host + "TextMap/TextMapJP.json" ).text )
23
+ kr_dict = json .loads (httpx .get (target_host + "TextMap/TextMapKR.json" ).text )
24
+ pt_dict = json .loads (httpx .get (target_host + "TextMap/TextMapPT.json" ).text )
25
+ ru_dict = json .loads (httpx .get (target_host + "TextMap/TextMapRU.json" ).text )
26
+ th_dict = json .loads (httpx .get (target_host + "TextMap/TextMapTH.json" ).text )
27
+ vi_dict = json .loads (httpx .get (target_host + "TextMap/TextMapVI.json" ).text )
28
28
dict_list = [chs_dict , cht_dict , de_dict , en_dict , es_dict , fr_dict , id_dict ,
29
29
jp_dict , kr_dict , pt_dict , ru_dict , th_dict , vi_dict ]
30
30
item_list = avatar_excel_config_data + weapon_excel_config_data
@@ -68,21 +68,21 @@ def fetch_starrail_update():
68
68
weapon_config_file = "ExcelOutput/EquipmentConfig.json"
69
69
resp = {}
70
70
71
- avatar_config_data = json .loads (requests .get (target_host + avatar_config_file ).text )
72
- weapon_config_data = json .loads (requests .get (target_host + weapon_config_file ).text )
73
- chs_dict = json .loads (requests .get (target_host + "TextMap/TextMapCHS.json" ).text )
74
- cht_dict = json .loads (requests .get (target_host + "TextMap/TextMapCHT.json" ).text )
75
- de_dict = json .loads (requests .get (target_host + "TextMap/TextMapDE.json" ).text )
76
- en_dict = json .loads (requests .get (target_host + "TextMap/TextMapEN.json" ).text )
77
- es_dict = json .loads (requests .get (target_host + "TextMap/TextMapES.json" ).text )
78
- fr_dict = json .loads (requests .get (target_host + "TextMap/TextMapFR.json" ).text )
79
- id_dict = json .loads (requests .get (target_host + "TextMap/TextMapID.json" ).text )
80
- jp_dict = json .loads (requests .get (target_host + "TextMap/TextMapJP.json" ).text )
81
- kr_dict = json .loads (requests .get (target_host + "TextMap/TextMapKR.json" ).text )
82
- pt_dict = json .loads (requests .get (target_host + "TextMap/TextMapPT.json" ).text )
83
- ru_dict = json .loads (requests .get (target_host + "TextMap/TextMapRU.json" ).text )
84
- th_dict = json .loads (requests .get (target_host + "TextMap/TextMapTH.json" ).text )
85
- vi_dict = json .loads (requests .get (target_host + "TextMap/TextMapVI.json" ).text )
71
+ avatar_config_data = json .loads (httpx .get (target_host + avatar_config_file ).text )
72
+ weapon_config_data = json .loads (httpx .get (target_host + weapon_config_file ).text )
73
+ chs_dict = json .loads (httpx .get (target_host + "TextMap/TextMapCHS.json" ).text )
74
+ cht_dict = json .loads (httpx .get (target_host + "TextMap/TextMapCHT.json" ).text )
75
+ de_dict = json .loads (httpx .get (target_host + "TextMap/TextMapDE.json" ).text )
76
+ en_dict = json .loads (httpx .get (target_host + "TextMap/TextMapEN.json" ).text )
77
+ es_dict = json .loads (httpx .get (target_host + "TextMap/TextMapES.json" ).text )
78
+ fr_dict = json .loads (httpx .get (target_host + "TextMap/TextMapFR.json" ).text )
79
+ id_dict = json .loads (httpx .get (target_host + "TextMap/TextMapID.json" ).text )
80
+ jp_dict = json .loads (httpx .get (target_host + "TextMap/TextMapJP.json" ).text )
81
+ kr_dict = json .loads (httpx .get (target_host + "TextMap/TextMapKR.json" ).text )
82
+ pt_dict = json .loads (httpx .get (target_host + "TextMap/TextMapPT.json" ).text )
83
+ ru_dict = json .loads (httpx .get (target_host + "TextMap/TextMapRU.json" ).text )
84
+ th_dict = json .loads (httpx .get (target_host + "TextMap/TextMapTH.json" ).text )
85
+ vi_dict = json .loads (httpx .get (target_host + "TextMap/TextMapVI.json" ).text )
86
86
dict_list = [chs_dict , cht_dict , de_dict , en_dict , es_dict , fr_dict , id_dict ,
87
87
jp_dict , kr_dict , pt_dict , ru_dict , th_dict , vi_dict ]
88
88
item_list = avatar_config_data + weapon_config_data
@@ -135,7 +135,7 @@ def fetch_zzz_update():
135
135
name_hash_id = ""
136
136
item_id = ""
137
137
138
- avatar_config_data = json .loads (requests .get (target_host + avatar_config_file ).text )
138
+ avatar_config_data = json .loads (httpx .get (target_host + avatar_config_file ).text )
139
139
key_name = list (avatar_config_data .keys ())
140
140
if len (key_name ) == 1 :
141
141
avatar_config_data = avatar_config_data [key_name [0 ]]
@@ -149,24 +149,24 @@ def fetch_zzz_update():
149
149
else :
150
150
logger .info (f"Successfully fetched name_hash_id: { name_hash_id } and item_id: { item_id } from zzz" )
151
151
152
- weapon_config_data = json .loads (requests .get (target_host + weapon_config_file ).text )
152
+ weapon_config_data = json .loads (httpx .get (target_host + weapon_config_file ).text )
153
153
key_name = list (weapon_config_data .keys ())
154
154
if len (key_name ) == 1 :
155
155
weapon_config_data = weapon_config_data [key_name [0 ]]
156
156
logger .info (f"Successfully fetched { len (avatar_config_data ) + len (weapon_config_data )} items from zzz" )
157
- chs_dict = json .loads (requests .get (target_host + "TextMap/TextMapTemplateTb.json" ).text )
158
- cht_dict = json .loads (requests .get (target_host + "TextMap/TextMap_CHTTemplateTb.json" ).text )
159
- de_dict = json .loads (requests .get (target_host + "TextMap/TextMap_DETemplateTb.json" ).text )
160
- en_dict = json .loads (requests .get (target_host + "TextMap/TextMap_ENTemplateTb.json" ).text )
161
- es_dict = json .loads (requests .get (target_host + "TextMap/TextMap_ESTemplateTb.json" ).text )
162
- fr_dict = json .loads (requests .get (target_host + "TextMap/TextMap_FRTemplateTb.json" ).text )
163
- id_dict = json .loads (requests .get (target_host + "TextMap/TextMap_IDTemplateTb.json" ).text )
164
- jp_dict = json .loads (requests .get (target_host + "TextMap/TextMap_JATemplateTb.json" ).text )
165
- kr_dict = json .loads (requests .get (target_host + "TextMap/TextMap_KOTemplateTb.json" ).text )
166
- pt_dict = json .loads (requests .get (target_host + "TextMap/TextMap_PTTemplateTb.json" ).text )
167
- ru_dict = json .loads (requests .get (target_host + "TextMap/TextMap_RUTemplateTb.json" ).text )
168
- th_dict = json .loads (requests .get (target_host + "TextMap/TextMap_THTemplateTb.json" ).text )
169
- vi_dict = json .loads (requests .get (target_host + "TextMap/TextMap_VITemplateTb.json" ).text )
157
+ chs_dict = json .loads (httpx .get (target_host + "TextMap/TextMapTemplateTb.json" ).text )
158
+ cht_dict = json .loads (httpx .get (target_host + "TextMap/TextMap_CHTTemplateTb.json" ).text )
159
+ de_dict = json .loads (httpx .get (target_host + "TextMap/TextMap_DETemplateTb.json" ).text )
160
+ en_dict = json .loads (httpx .get (target_host + "TextMap/TextMap_ENTemplateTb.json" ).text )
161
+ es_dict = json .loads (httpx .get (target_host + "TextMap/TextMap_ESTemplateTb.json" ).text )
162
+ fr_dict = json .loads (httpx .get (target_host + "TextMap/TextMap_FRTemplateTb.json" ).text )
163
+ id_dict = json .loads (httpx .get (target_host + "TextMap/TextMap_IDTemplateTb.json" ).text )
164
+ jp_dict = json .loads (httpx .get (target_host + "TextMap/TextMap_JATemplateTb.json" ).text )
165
+ kr_dict = json .loads (httpx .get (target_host + "TextMap/TextMap_KOTemplateTb.json" ).text )
166
+ pt_dict = json .loads (httpx .get (target_host + "TextMap/TextMap_PTTemplateTb.json" ).text )
167
+ ru_dict = json .loads (httpx .get (target_host + "TextMap/TextMap_RUTemplateTb.json" ).text )
168
+ th_dict = json .loads (httpx .get (target_host + "TextMap/TextMap_THTemplateTb.json" ).text )
169
+ vi_dict = json .loads (httpx .get (target_host + "TextMap/TextMap_VITemplateTb.json" ).text )
170
170
dict_list = [chs_dict , cht_dict , de_dict , en_dict , es_dict , fr_dict , id_dict ,
171
171
jp_dict , kr_dict , pt_dict , ru_dict , th_dict , vi_dict ]
172
172
item_list = avatar_config_data + weapon_config_data
0 commit comments