爬取论坛标题与链接存入excel

本文介绍如何利用Python和RPA工具艺赛旗的2020.1版本,爬取网页上的论坛帖子标题和链接,并将它们存储到Excel表格中。首先获取源码,然后提取每一页的帖子URL,最后将数据写入Excel的标题和链接列。
摘要由CSDN通过智能技术生成

学Python,用RPA

艺赛旗RPA2020.1版本 正在免费下载使用中,欢迎下载使用

www.i-search.com.cn/index.html?from=line1
爬取后,方便大家直接在excel中找到已分享的经验的标题与对应的链接。代码如下:

import requests, xlwt
from bs4 import BeautifulSoup
from lxml import etree

url_list = [] # 用于存放标题和url

获取源码

def get_content(url):
html = requests.get(url).content
return html

获取某页中的所有帖子的url

def get_url(html):
soup = BeautifulSoup(html, ‘lxml’) # lxml是解析方式,第三方库
blog_url_list = soup.find_all(‘h2’, class_=‘fn-ellipsis’)
for i in blog_url_list:
url_list.append([i.find(‘a’).text, i.find(‘a’)[‘href’]])
# print(url_list)
last_list.append(url_list)

start_url = ‘http://support.i-search.com.cn/recent?p=1’
response = requests.get(start_url)
content = response.text
selector = etree.HTML(content)
maxPag

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值