爬取lol官网数据代码
时间: 2023-10-05 21:08:54 浏览: 102
抓取网页数据的代码
4星 · 用户满意度95%
以下是一个简单的 Python 爬取 LoL 官网数据的示例代码:
```python
import requests
from bs4 import BeautifulSoup
# 发送请求并获取页面内容
url = 'https://www.leagueoflegends.com/zh-cn/news/game-updates/patch-10-18-notes/'
response = requests.get(url)
html = response.text
# 使用 Beautiful Soup 解析页面内容
soup = BeautifulSoup(html, 'html.parser')
# 获取新闻标题和内容
title = soup.find('h1', class_='article-title').text.strip()
content = soup.find('div', class_='article-content').text.strip()
# 打印结果
print('标题:', title)
print('内容:', content)
```
这个示例代码爬取了 LoL 官网中的一篇新闻的标题和内容,你可以根据需要修改代码来获取其他数据。请注意,爬取官网数据需要遵守网站的规则和协议,不要进行不当的数据采集。
阅读全文