1. 首页
  2. 数据库
  3. 其它
  4. 29、Python日常抓取数据的高效代码

29、Python日常抓取数据的高效代码

上传者: 2020-12-23 03:53:49上传 PDF文件 26.35KB 热度 6次
优化代码1 # 使用soup解析meta soup = BeautifulSoup(html) list_author = soup.find(attrs={"name": "ContentSource"})['content'] list_time = soup.find(attrs={"name": "PubDate"})['content'] 优化代码2 # 截取字符串中的 \n \r .replace('\n', '').replace('\r', '') # eval() 函数用来执行一个字符串表达式,并返回表达式的值 # 高效遍历list集合,避免出现内部变量不
用户评论