python爬虫学校官网
时间: 2023-10-27 14:05:42 浏览: 99
爬虫_python_一款抓取学校官网所有校园招聘信息的程序
您可以使用 Python 中的 requests 和 BeautifulSoup 库来爬取学校官网。以下是一个简单的示例代码:
```python
import requests
from bs4 import BeautifulSoup
url = 'http://www.example.com' # 将 example.com 替换为您要爬取的网站地址
response = requests.get(url)
soup = BeautifulSoup(response.text, 'html.parser')
print(soup.prettify()) # 输出网页源代码
```
请注意,爬取网站时需要遵守相关法律法规和网站的使用协议,不得进行恶意攻击或侵犯他人隐私等行为。
阅读全文