carole1102 发表于 2019-11-29 10:48

新手爬取豆瓣读书250练手

本帖最后由 carole1102 于 2019-11-30 22:39 编辑

在52学习python,刚接触爬虫,练手爬取,各位大佬轻拍。。。。

from lxml import etree
import requests
import csv
headers = {
'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'
}
df = open(r'e:\douban.csv','wt',newline='',encoding='utf-8-sig')
writer = csv.writer(df)
writer.writerow(('name','url','author','publisher','date','price','rate','comment'))
urls = ['https://book.douban.com/top250?start={}'.format(str(i)) for i in range(0,250,25)]for url in urls:    html = requests.get(url,headers=headers)
    selector = etree.HTML(html.text)
    infos = selector.xpath('//tr[@Class ="item"]')
    for info in infos:
      name = info.xpath('td/div/a/@title')
      url = info.xpath('td/div/a/@href')
      book_info = info.xpath('td/p/text()')
      author = book_info.split('/')
      publisher = book_info.split('/')
      date = book_info.split('/')[-2]
      price = book_info.split('/')[-1]
      rate = info.xpath('td/div/span/text()')
      comments = info.xpath('td/p/span/text()')
      comment = comments if len(comments) != 0 else '空'
      writer.writerow((name,url,author,publisher,date,price,rate,comment))
df.close()

carole1102 发表于 2019-11-30 22:41

functionlike 发表于 2019-11-29 11:15
怎么执行,我准备复制你的代码来执行不了,新手

看报错吧 是不是依赖包 格式问题

carole1102 发表于 2019-11-30 22:41

ymhld 发表于 2019-11-29 19:09
刚开始学,还没上手,能爬指定的书吗

指定的书也可以 找到对应的详细div就行

你赖东东不错嘛 发表于 2019-11-29 10:57

有教程嘛

leipop 发表于 2019-11-29 11:03

可以可以,学习学习

Skslience 发表于 2019-11-29 11:05

可以的。

functionlike 发表于 2019-11-29 11:15

怎么执行,我准备复制你的代码来执行不了,新手

alexskyboy 发表于 2019-11-29 11:52

感谢代码分享{:301_993:}

tydzjing 发表于 2019-11-29 12:24

很不错,学习一下

冰之狼 发表于 2019-11-29 13:48

感谢分享代码,试试

ymhld 发表于 2019-11-29 19:09

刚开始学,还没上手,能爬指定的书吗

工程欧巴 发表于 2019-11-29 19:18

感谢楼主分享
页: [1] 2
查看完整版本: 新手爬取豆瓣读书250练手