python爬取洛谷
时间: 2023-10-01 21:08:13 浏览: 316
洛谷题库爬虫更新
5星 · 资源好评率100%
你可以使用 Python 的 requests 库来爬取洛谷(Luogu)网站的内容。首先,你需要安装 requests 库。你可以使用以下命令安装:
```
pip install requests
```
接下来,你可以使用以下代码来爬取洛谷网站的内容:
```python
import requests
url = "https://www.luogu.com.cn/problem/list"
response = requests.get(url)
if response.status_code == 200:
content = response.text
# 处理网页内容
print(content)
else:
print("请求失败")
```
在上面的代码中,我们使用 `requests.get()` 方法发送 GET 请求,然后可以通过 `response.text` 属性获取到网页的内容。你可以根据需要进行进一步的处理和解析。
请注意,爬取网站内容时,要遵守网站的相关规定和协议,以免违反法律或者侵犯他人的权益。
阅读全文