您好,登錄后才能下訂單哦!
這篇文章將為大家詳細講解有關python爬蟲時怎么使用R連續抓取多個頁面,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。
當抓取多頁的html數據,但容易被困在通用方法部分的功能上,而導致無法實現連續抓取多個頁面。這個時候可以仔細觀察代碼當轉到網頁收集信息,將其添加到數據框,然后移至下一頁就可以解決了。
示例:
多網頁抓取時會出現以下問題。
#attempt library(purrr) url_base <-"https://secure.capitalbikeshare.com/profile/trips/QNURCMF2Q6" map_df(1:70, function(i) { cat(".") pg <- read_html(sprintf(url_base, i)) data.frame( startd=html_text(html_nodes(pg, ".ed-table__col_trip-start-date")), endd=html_text(html_nodes(pg,".ed-table__col_trip-end-date")), duration=html_text(html_nodes(pg, ".ed-table__col_trip-duration")) ) }) -> table #attempt 2 (with just one data column) url_base <-"https://secure.capitalbikeshare.com/profile/trips/QNURCMF2Q6" map_df(1:70, function(i) { page %>% html_nodes(".ed-table__item_odd") %>% html_text() }) -> table
解決方案:
library(rvest)pgsession<-html_session(login)pgform<-html_form(pgsession)[[2]]filled_form<-set_values(pgform, email="*****", password="*****")submit_form(pgsession, filled_form)#pre allocate the final results dataframe.results<-data.frame() for (i in 1:5){ url<-"http://stackoverflow.com/users/**********?tab=answers&sort=activity&page=" url<-paste0(url, i) page<-jump_to(pgsession, url) #collect question votes and question title summary<-html_nodes(page, "div .answer-summary") question<-matrix(html_text(html_nodes(summary, "div"), trim=TRUE), ncol=2, byrow = TRUE) #find date answered, hyperlink and whether it was accepted dateans<-html_node(summary, "span") %>% html_attr("title") hyperlink<-html_node(summary, "div a") %>% html_attr("href") accepted<-html_node(summary, "div") %>% html_attr("class") #create temp results then bind to final results rtemp<-cbind(question, dateans, accepted, hyperlink) results<-rbind(results, rtemp)}#Dataframe Clean-upnames(results)<-c("Votes", "Answer", "Date", "Accepted", "HyperLink")results$Votes<-as.integer(as.character(results$Votes))results$Accepted<-ifelse(results$Accepted=="answer-votes default", 0, 1)
以上就是連續抓取多個頁面的使用方法,營銷推廣、爬蟲數據采集、廣告補量等ip問題,可以嘗試下太陽http代理,助力解決多行業ip問題,免費送10000ip試用。
關于“python爬蟲時怎么使用R連續抓取多個頁面”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,使各位可以學到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。