zoukankan      html  css  js  c++  java
  • 数据挖掘---R语言爬虫(基于hardly的rvest包)

    library(rvest)
    library(stringr)

    getdata<-function(page,urlwithoutpage){
    #读取数据,规定编码
    web<-read_html(paste0(urlwithoutpage,page),encoding="GBK")
    #获取书名 这些符号(:((—)后面的统统丢掉
    titie_all <- web %>% html_nodes("div ul p.name") %>% html_text()
    title <- sapply(strsplit(titie_all,split = "[ :((—―]"),"[",2)
    #获取价格
    price <-web %>% html_nodes("div ul span.search_now_price") %>% html_text()
    #获取出版信息
    search_book_author <- web %>% html_nodes("p.search_book_author") %>% html_text()
    #为避免与CSV的逗号混淆,字段里的逗号统一替换成中文逗号
    search_book_author <-gsub(pattern = ",", replacement = ",", search_book_author)
    author <- sapply(strsplit(search_book_author,"/"),"[",1)
    #利用正则表达式提取字符串
    publication_date = str_extract(search_book_author,"\d{4}-\d{2}-\d{2}")
    publishing_house = str_extract(search_book_author,"\w*出版社\w*")
    #整合成数据框返回
    data.frame(title,price,author,publication_date,publishing_house)
    }

    #当当网上检索R语言得到的URL
    dangdang <- "http://search.dangdang.com/?key=r%D3%EF%D1%D4&act=input&ddt-rpm=undefined&page_index="
    #爬取其中的三页信息
    final<-data.frame()
    for (i in 1:2){
    final<-rbind(final,getdata(i,dangdang))
    }
    write.table(final, 'dangdang.csv', sep = ",",row.names = FALSE)

    python

     #一个简单例子---中国图书网
    # 爬虫
    # 正则表达式爬虫
    import requests
    import re

    url = 'http://www.bookschina.com/book_find2/?stp=python'
    content = requests.get(url).text
    title = re.findall('jpg" title="(.*?)"',content)
    author = re.findall('作者:.*?;sbook=(.*?)">.*?出版社:',content)
    pubhouses = re.findall('出版社:.*?">(.*?)</a><br>出版时间:',content)
    pubtime = re.findall('</a><br>出版时间:(.*?) <br>ISBN:',content)
    ISBN = re.findall('<br>ISBN:(.*?)<br>原价:',content)
    raw_price = re.findall('ISBN:.*?<br>原价:¥(.*?)<br>现价:',content)
    now_price = re.findall('现价:¥<span class="red12">(.*?)</span>&nbsp;&nbsp;&nbsp;&nbsp;您节省:',content)
    jiesheng = re.findall('您节省:<span class="red12">¥(.*?)</span>',content)
    discount = re.findall('您节省:<span class="red12">.*?</span>&nbsp;&nbsp;&nbsp;&nbsp;((.*?)折)<br>',content)


    file = open('books.csv','w')
    for i in list(range(0,len(title))):
        file.write(','.join((title[i],author[i],pubhouses[i],pubtime[i],ISBN[i],raw_price[i],now_price[i],jiesheng[i],discount[i]))+' ')
        #print(title[i],author[i],pubhouses[i],pubtime[i],ISBN[i],raw_price[i],now_price[i],jiesheng[i],discount[i])
    file.close() 
  • 相关阅读:
    swift3.0 coreData的使用-日记本demo
    Objective-C plist文件与KVC 的使用
    swift3.0 CoreGraphics绘图-实现画板
    Objective-C 使用核心动画CAAnimation实现动画
    Objectiv-C UIKit基础 NSLayoutConstraint的使用(VFL实现)
    Objectiv-c
    C语言基础
    C语言基础
    swift 3.0 基础练习 面向对象 类的扩展
    myIsEqualToString
  • 原文地址:https://www.cnblogs.com/heisaijuzhen/p/6656439.html
Copyright © 2011-2022 走看看