mirror of
https://github.com/zhenxun-org/zhenxun_bot.git
synced 2025-12-15 06:12:53 +08:00
52 lines
1.6 KiB
Python
Executable File
52 lines
1.6 KiB
Python
Executable File
from utils.http_utils import AsyncHttpx
|
|
from configs.config import Config
|
|
from bs4 import BeautifulSoup
|
|
import platform
|
|
|
|
if platform.system() == "Windows":
|
|
import asyncio
|
|
|
|
asyncio.set_event_loop_policy(asyncio.WindowsSelectorEventLoopPolicy())
|
|
|
|
|
|
url = "http://www.eclzz.mobi"
|
|
|
|
|
|
async def get_bt_info(keyword: str, page: int):
|
|
"""
|
|
获取资源信息
|
|
:param keyword: 关键词
|
|
:param page: 页数
|
|
"""
|
|
text = (await AsyncHttpx.get(f"{url}/s/{keyword}_rel_{page}.html", timeout=5)).text
|
|
if text.find("大约0条结果") != -1:
|
|
return
|
|
soup = BeautifulSoup(text, "lxml")
|
|
item_lst = soup.find_all("div", {"class": "search-item"})
|
|
bt_max_num = Config.get_config("bt", "BT_MAX_NUM")
|
|
bt_max_num = bt_max_num if bt_max_num < len(item_lst) else len(item_lst)
|
|
for item in item_lst[:bt_max_num]:
|
|
divs = item.find_all("div")
|
|
title = (
|
|
str(divs[0].find("a").text)
|
|
.replace("<em>", "")
|
|
.replace("</em>", "")
|
|
.strip()
|
|
)
|
|
spans = divs[2].find_all("span")
|
|
type_ = spans[0].text
|
|
create_time = spans[1].find("b").text
|
|
file_size = spans[2].find("b").text
|
|
link = await get_download_link(divs[0].find("a")["href"])
|
|
yield title, type_, create_time, file_size, link
|
|
|
|
|
|
async def get_download_link(_url: str) -> str:
|
|
"""
|
|
获取资源下载地址
|
|
:param _url: 链接
|
|
"""
|
|
text = (await AsyncHttpx.get(f"{url}{_url}")).text
|
|
soup = BeautifulSoup(text, "lxml")
|
|
return soup.find("a", {"id": "down-url"})["href"]
|