1 Star 0 Fork 0

CyclingPeach/OWN---Honor_of_Kings

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
01.两个不同的解析方式.py 899 Bytes
一键复制 编辑 原始数据 按行查看 历史
布朗熊_Peach 提交于 2021-09-16 23:10 . Add files via upload
def print_one_hero_soup(one_hero_url):
one_hero_response = requests.get(one_hero_url)
one_hero_response.encoding = one_hero_response.apparent_encoding # 获取网页真实编码 https://www.cnblogs.com/bw13/p/6549248.html
one_hero_html = one_hero_response.text
one_hero_soup = BeautifulSoup(one_hero_html, 'html.parser') # BeautifulSoup 解析网页,获取源代码
return one_hero_soup
def print_one_hero_xpath(one_hero_url):
options = webdriver.ChromeOptions()
options.headless = True # 不弹出 Chrome浏览器界面,后台运行
driver = webdriver.Chrome(chrome_options = options) # 控制chrome浏览器
driver.get(one_hero_url)
time.sleep(2)
content = driver.page_source # selenium 获取网页源代码
cont_xph = lxml.etree.HTML(content) # 解析 content
return cont_xph
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/cyclingpeach/OWN---Honor_of_Kings.git
git@gitee.com:cyclingpeach/OWN---Honor_of_Kings.git
cyclingpeach
OWN---Honor_of_Kings
OWN---Honor_of_Kings
main

搜索帮助

0d507c66 1850385 C8b1a773 1850385