我是靠谱客的博主 虚拟茉莉,最近开发中收集的这篇文章主要介绍python 爬虫实战(一)爬取豆瓣图书top250,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

import requests
from lxml import etree
with open('booktop250.txt','w',encoding='utf-8') as f:
for i in range(0,226,25):
url = 'https://book.douban.com/top250?start={}'.format(i)
data = requests.get(url).text
page = etree.HTML(data)
file = page.xpath('//*[@id="content"]/div/div[1]/div/table')
for div in file:
title = div.xpath('./tr/td[2]/div[1]/a/@title')
pf = div.xpath('./tr/td[2]/div[2]/span[2]/text()')
words = div.xpath('./tr/td[2]/p[2]/span/text()')
f.write("n""{}{}{}".format(title,pf,words))
print("ALL IS OVER!")

最后

以上就是虚拟茉莉为你收集整理的python 爬虫实战(一)爬取豆瓣图书top250的全部内容,希望文章能够帮你解决python 爬虫实战(一)爬取豆瓣图书top250所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(50)

评论列表共有 0 条评论

立即
投稿
返回
顶部