用python写一个访问静态网页的爬虫
时间: 2023-03-25 07:03:18 浏览: 108
python实现网络爬虫使用了第三方库beautifulsoup来解析网页文件,并且实现了cookie登录特定网站访问.zip
您好,我可以回答这个问题。使用 Python 可以使用 requests 库来访问静态网页,然后使用 BeautifulSoup 库来解析网页内容。以下是一个简单的示例代码:
```python
import requests
from bs4 import BeautifulSoup
url = 'http://example.com'
response = requests.get(url)
soup = BeautifulSoup(response.text, 'html.parser')
print(soup.prettify())
```
这个代码会访问 http://example.com 这个网页,并打印出网页的 HTML 内容。当然,您可以根据需要修改代码来获取您所需要的信息。
阅读全文