python 刷新网页
时间: 2023-02-13 22:00:39 浏览: 209
可以使用 Python 的第三方库 BeautifulSoup 和 requests 来刷新网页。
示例代码如下:
```
import requests
from bs4 import BeautifulSoup
url = 'https://www.example.com'
response = requests.get(url)
soup = BeautifulSoup(response.text, 'html.parser')
print(soup) # 打印刷新后的网页内容
```
在这段代码中,我们使用了 requests 库发送一个 GET 请求来获取网页的 HTML 内容,然后使用 BeautifulSoup 库解析这个 HTML 内容。最后,我们使用 print 函数打印出了刷新后的网页内容。
注意:在运行这段代码之前,需要确保已经安装了 BeautifulSoup 和 requests 库。你可以使用以下命令安装这两个库:
```
pip install beautifulsoup4
pip install requests
```
希望这个答案对你有帮助!
阅读全文