适配新版直播吧页面
This commit is contained in:
parent
d5252708e8
commit
885a92bd8e
@ -17,14 +17,14 @@ xiaobianStr = r"""
|
|||||||
小小:
|
小小:
|
||||||
"""
|
"""
|
||||||
vsMap = {}
|
vsMap = {}
|
||||||
|
|
||||||
@zhibo8Command.handle()
|
@zhibo8Command.handle()
|
||||||
async def handle_first_receive(bot: Bot, event: Event, state: T_State, args= CommandArg()):
|
async def handle_first_receive(bot: Bot, event: Event, state: T_State, args= CommandArg()):
|
||||||
# 事件预处理,获取对应的赛程数据
|
# 事件预处理,获取对应的赛程数据
|
||||||
|
vsMap.clear()
|
||||||
session = HTMLSession()
|
session = HTMLSession()
|
||||||
zhibo8Get = session.get("http://www.zhibo8.cc")
|
zhibo8Get = session.get("https://www.zhibo8.cc/")
|
||||||
print(zhibo8Get)
|
print(zhibo8Get)
|
||||||
saishiContent = zhibo8Get.html.xpath("//ul/li[starts-with(@id, 'saishi')]")
|
saishiContent = zhibo8Get.html.xpath("//div[@class='vct-box']/div[@class='_content']/ul/li")
|
||||||
# 解析xpath
|
# 解析xpath
|
||||||
# 解析xpath
|
# 解析xpath
|
||||||
for item in saishiContent:
|
for item in saishiContent:
|
||||||
@ -47,7 +47,7 @@ async def getRoundNum(event: Event):
|
|||||||
round = str(event.get_message())
|
round = str(event.get_message())
|
||||||
if round.isdigit() == False:
|
if round.isdigit() == False:
|
||||||
await zhibo8Command.reject(prompt="请输入编号(数字)")
|
await zhibo8Command.reject(prompt="请输入编号(数字)")
|
||||||
if len(vsMap.keys())>int(round):
|
if len(vsMap.keys())>=int(round):
|
||||||
resultStr = ""
|
resultStr = ""
|
||||||
roudNum = list(vsMap.keys())[int(round)-1]
|
roudNum = list(vsMap.keys())[int(round)-1]
|
||||||
# for roudNum in vsMap:
|
# for roudNum in vsMap:
|
||||||
@ -60,13 +60,14 @@ async def getRoundNum(event: Event):
|
|||||||
|
|
||||||
def parserSaishiItem(saishiStr):
|
def parserSaishiItem(saishiStr):
|
||||||
html = HTML(html=saishiStr)
|
html = HTML(html=saishiStr)
|
||||||
listItem = html.xpath("//b//text()")
|
# listItem = html.xpath("//b//text()")
|
||||||
roundNum = listItem[0].split(" ")[0].strip()
|
roundNum = html.xpath("//span[@class='_league']//text()")[0]
|
||||||
homeName = listItem[0].split(" ")[1].strip()
|
homeName = html.xpath("//span[@class='_teams']//text()")[0].strip()
|
||||||
awayName = listItem[-1].strip()
|
awayName = html.xpath("//span[@class='_teams']//text()")[-1].strip()
|
||||||
timeStr = html.xpath("//li/@data-time")
|
timeStr = html.xpath("./li/@data-time")[0]
|
||||||
time = datetime.strptime(timeStr[0], "%Y-%m-%d %H:%M")
|
time = datetime.strptime(timeStr, "%Y-%m-%d %H:%M")
|
||||||
return (roundNum, time.strftime("%m月%d日%H:%M") + " " + homeName + " vs " + awayName)
|
timeTuple = time.timetuple()
|
||||||
|
return (roundNum, "{}月{}日".format(timeTuple.tm_mon, timeTuple.tm_mday)+time.strftime("%H:%M") + " " + homeName + " vs " + awayName)
|
||||||
|
|
||||||
|
|
||||||
def getRoundPrompt(roundMap):
|
def getRoundPrompt(roundMap):
|
||||||
@ -76,4 +77,4 @@ def getRoundPrompt(roundMap):
|
|||||||
print(key)
|
print(key)
|
||||||
str += "{}: {} \r\n".format(i, key)
|
str += "{}: {} \r\n".format(i, key)
|
||||||
i = i+1
|
i = i+1
|
||||||
return str
|
return str
|
||||||
|
Loading…
x
Reference in New Issue
Block a user