加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
task1.py 442 Bytes
一键复制 编辑 原始数据 按行查看 历史
打代码的小黄瓜 提交于 2024-04-01 09:13 . 连接数据库
import requests
from bs4 import BeautifulSoup
url = "https://wandou.la/hot/movie"
ua = {'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'}
rq = requests.get(url, headers = ua)
html = rq.content.decode('utf-8')
soup = BeautifulSoup(html, "lxml")
# print(soup.prettify()) # 打印网站内容
web_title = soup.title.string
print(web_title)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化