python获取网站title
时间: 2023-08-12 19:13:17 浏览: 107
批量获取网站title脚本
可以使用Python中的Requests和BeautifulSoup模块来获取网站的title。具体代码如下:
```python
import requests
from bs4 import BeautifulSoup
url = 'http://www.example.com' # 替换为目标网站的URL
response = requests.get(url)
soup = BeautifulSoup(response.text, 'html.parser')
title = soup.title.string
print(title)
```
其中,首先通过Requests模块发送GET请求获取网页内容,然后通过BeautifulSoup模块解析HTML代码,最后获取网页title。
阅读全文