zoukankan      html  css  js  c++  java
  • 网络爬虫基础练习

    0.可以新建一个用于练习的html文件,在浏览器中打开。

    <!DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <title>Simple DOM Demo</title>
    </head>
    
    <body>
        <h1>This is the document body</h1>
        <P ID = "p1Node">This is paragraph 1.</P>
        <P ID = "p2Node">段落2</P>
        <a href="http://www.gzcc.cn/">广州商学院</a>
    
        <li>
            <a href="http://news.gzcc.cn/html/2018/xiaoyuanxinwen_0328/9113.html">
                <div class="news-list-text">
                    <div class="news-list-title" style="">我校校长杨文轩教授讲授新学期“思政第一课”</div>
                    <div class="news-list-description">3月27日下午,我校校长杨文轩教授在第四教学楼310室为学生讲授了新学期“思政第一课”。</div>
                    <div class="news-list-info"><span><i class="fa fa-clock-o"></i>2018-03-28</span><span><i class="fa fa-building-o"></i>马克思主义学院</span></div>
                </div>
            </a>
        </li>
    </body>
    <html>
    

      

    1.利用requests.get(url)获取网页页面的html文件

    import requests
    url = 'http://localhost:63342/Python%E7%9A%84%E5%B7%A5%E4%BD%9C%E7%8E%AF%E5%A2%83/3.29.html?_ijt=87fnje06ccfgmncbda9a9qgf55'
    res = requests.get(url)
    res.encoding = 'utf-8'
    print(res.text)
    

    2.利用BeautifulSoup的HTML解析器,生成结构树

    from bs4 import BeautifulSoup
    soup = BeautifulSoup(res.text,'html.parser')
    

    3.找出特定标签的html元素

    soup.p #标签名,返回第一个
    soup.head
    soup.p.name #字符串
    soup.p. attrs #字典,标签的所有属性
    soup.p. contents # 列表,所有子标签
    soup.p.text #字符串
    soup.p.string
    soup.select(‘li')
    

    4.取得含有特定CSS属性的元素

    soup.select('#p1Node')
    soup.select('.news-list-title')
    

    5.练习:

    取出h1标签的文本

    print(soup.h1.text)
    

    取出a标签的链接

    print(soup.a.attrs['href'])
    

    取出所有li标签的所有内容

    print(soup.body.li.text)
    

    取出一条新闻的标题、链接、发布时间、来源

    print(soup.select('.news-list-title')[0].text)
    print(soup.a.attrs['href'])
    print(soup.select('.news-list-info')[0].contents[0].text)
    print(soup.select('.news-list-info')[0].contents[1].text)
    

      

  • 相关阅读:
    正则二三事
    docker elasticsearch 5.6.13 安装ik分词器
    centos docker 防火墙设置(多个ip之间互相访问)
    ElasticSearch结构化搜索和全文搜索
    Jest — ElasticSearch Java 客户端
    提高redis cluster集群的安全性,增加密码验证
    spring boot 设置 gzip 压缩
    centos 7磁盘空间满了导致redis cluster问题和kafka的问题
    SpringBoot之MySQL数据的丢失的元凶--事务(转)
    mysql mycat 1.6.6.1-release 批量 insert 数据丢失问题(续)
  • 原文地址:https://www.cnblogs.com/cgq520/p/8672606.html
Copyright © 2011-2022 走看看