python爬取https://www.cnnvd.org.cn/home/globalSearch?keyword=CVE-2018-8715
时间: 2023-10-24 20:05:44 浏览: 109
基于Python的病毒数据爬取系统
你可以使用 Python 的 requests 库和 Beautiful Soup 库来爬取 https://www.cnnvd.org.cn/home/globalSearch?keyword=CVE-2018-8715 页面的信息。以下是一个简单的示例代码:
```python
import requests
from bs4 import BeautifulSoup
url = 'https://www.cnnvd.org.cn/home/globalSearch?keyword=CVE-2018-8715'
response = requests.get(url)
soup = BeautifulSoup(response.text, 'html.parser')
result = soup.find('div', class_='search-result-list')
for item in result.find_all('li'):
title = item.find('a').text.strip()
link = item.find('a')['href']
date = item.find('span', class_='time').text.strip()
print(title, link, date)
```
这个代码使用 requests 库获取页面的 HTML 内容,然后使用 Beautiful Soup 库解析 HTML 内容,并找到 class 为 `search-result-list` 的 div 元素。然后遍历每个 li 元素,找到其中的标题、链接和日期信息,并打印出来。你可以根据自己的需求修改代码。
阅读全文