python爬取网页标题
时间: 2023-09-14 20:14:02 浏览: 191
以下是使用Python 3编写的示例代码,可以爬取网页的标题:
```python
import requests
from bs4 import BeautifulSoup
url = 'https://www.baidu.com/'
# 发送请求
response = requests.get(url)
# 解析HTML内容
soup = BeautifulSoup(response.text, 'html.parser')
# 获取网页标题
title = soup.title.string
print(title)
```
输出结果为:
```
百度一下,你就知道
```
相关问题
怎么用python爬取网页标题
在Python中使用BeautifulSoup库可以方便地爬取网页标题。下面是一个简单的步骤:
首先,你需要安装`requests`和`beautifulsoup4`这两个库,如果你还没有安装,可以用pip进行安装:
```bash
pip install requests beautifulsoup4
```
然后,你可以编写如下的Python代码来获取网页标题:
```python
import requests
from bs4 import BeautifulSoup
def get_page_title(url):
# 发送GET请求获取网页内容
response = requests.get(url)
# 确保请求成功,状态码为200
if response.status_code == 200:
# 使用BeautifulSoup解析HTML
soup = BeautifulSoup(response.text, 'html.parser')
# 找到网页的<title>标签并返回标题
title_tag = soup.find('title')
if title_tag:
return title_tag.string
else:
print(f"未找到<title>标签,页面标题未知")
else:
print(f"请求失败,状态码:{response.status_code}")
# 示例URL
url = "https://www.example.com"
page_title = get_page_title(url)
print("网页标题:", page_title)
使用python 爬取网页标题并设为文本文档标题
可以使用Python中的requests库和BeautifulSoup库来爬取网页标题,并将其设置为文本文档标题。
首先,需要安装requests库和BeautifulSoup库。可以使用以下命令进行安装:
```
pip install requests
pip install beautifulsoup4
```
然后,可以使用以下代码来实现:
```python
import requests
from bs4 import BeautifulSoup
# 发送请求
url = 'https://www.example.com'
response = requests.get(url)
# 解析网页内容
soup = BeautifulSoup(response.text, 'html.parser')
# 获取网页标题
title = soup.title.string
# 创建文本文档并将标题设置为文件名
with open(title + '.txt', 'w') as f:
f.write('This is ' + title + ' document')
```
这段代码先发送请求获取网页内容,然后使用BeautifulSoup库解析网页内容。接着,获取网页标题并将其赋值给变量title。最后,使用open函数创建一个文本文档,并将标题设置为文件名。将文本写入文件中,完成操作。
阅读全文