用python爬取http://124.95.133.164/work/xjlp/new_building.jsp
时间: 2023-10-08 10:08:30 浏览: 110
好的,您想要用Python爬取http://124.95.133.164/work/xjlp/new_building.jsp这个网页的内容是吗?使用Python进行爬虫可以使用第三方库requests和BeautifulSoup来实现。首先需要安装这两个库,可以使用以下命令进行安装:
```
pip install requests
pip install beautifulsoup4
```
接着,可以使用以下代码获取网页内容并解析:
```python
import requests
from bs4 import BeautifulSoup
url = "http://124.95.133.164/work/xjlp/new_building.jsp"
response = requests.get(url)
html = response.content.decode('utf-8')
soup = BeautifulSoup(html, 'html.parser')
print(soup.prettify())
```
这段代码首先使用requests库获取网页内容,然后使用BeautifulSoup把HTML代码解析为可读性更高的形式。通过print(soup.prettify())可以输出整个网页的HTML代码。
阅读全文