查找包含多个类的标记

时间:2015-10-28 14:53:33

标签: python python-2.7 python-3.x beautifulsoup

我很好奇如何使用modDF <- function(x) { name=deparse(substitute(x)) jr=as.numeric(substr(name,3,4)) n<-nrow(x) # length(x$Date_Heure) colnames(x)[11]<-"Timestamp" colnames(x)[12]<-"Presence" #tab$time<-as.POSIXct(with_tz(ymd_hms(Date_Heure, tz = "UTC"),"Europe/Paris")) for (i in 1:n) x$Timestamp[i] <- with_tz(ymd_hms(x$Time[i], tz = "UTC"),"Europe/Paris") return(x) } List.of.DF <- lapply(List.of.DF, modDF) 找到标记,如果它的类有多个以空格分隔的名称,那么这个标记实际上有多个类。

例如:

BeautifulSoup

如果我使用<div class="col-md-8 middle-content> ,我会认为:css selector我认为如何使用div.col-md-8.middle-content找到它?

1 个答案:

答案 0 :(得分:1)

做这样的事情:

soup.find('div', {'class': "col-md-8 middle-content"})