使用正则表达式,取得点击次数,函数抽离

1. 用正则表达式判定邮箱是否输入正确。

import re
r = '^(\w)+(\.\w+)*@(\w)+((\.\w{2,3}){1,3})$'
e = 'a991216825@sina.com'
s = '输入邮箱正确:'
if re.match(r,e):
    print(s,re.match(r,e).group(0))
else:
    print('error')

  

2 .用正则表达式识别出全部电话号码。

str = "版权所有:广州商学院   地址:广州市黄埔区九龙大道206号" \
      "学校学士办公室:020-82876130   学士招生电话:020-82872773" \
      "学校硕士办公室:020-82876131   硕士招生电话:020-82872774" \
      "粤公网安备 44011602000060号    粤ICP备15103669号"
numbers = re.findall("(\d{3,4})-(\d{6,8})", str)
print(numbers)

  

3. 用正则表达式进行英文分词。re.split('',news)

str1 = 'Hi man ,do you like van ,boy next door'
out = re.split(',|\s',str1)
print(out)

  

4. 使用正则表达式取得新闻编号

url = "http://news.gzcc.cn/html/2018/xiaoyuanxinwen_0411/9203.html"
news = re.findall("\_(.*).html", url)[0].split("/")[-1]
print(news)

  

5. 生成点击次数的Request URL

url2 = "http://oa.gzcc.cn/api.php?op=count&id=9203&modelid=80".format(news)
print(url2)

  

6. 获取点击次数

url2 = "http://oa.gzcc.cn/api.php?op=count&id=9203&modelid=80".format(news)


res = requests.get(url2)
print(int(res.text.split(".html")[-1].lstrip("('").rsplit("');")[0]))

  

7. 将456步骤定义成一个函数 def getClickCount(newsUrl):

def getClickCount():
    url = "http://news.gzcc.cn/html/2017/xiaoyuanxinwen_1225/8854.html"
    newsId = re.findall("\_(.*).html", url)[0].split("/")[-1]
    res1 = requests.get("http://oa.gzcc.cn/api.php?op=count&id={}&modelid=80".format(newsId))
    return int(res1.text.split(".html")[-1].lstrip("('").rsplit("');")[0])
print(getClickCount())

  

8. 将获取新闻详情的代码定义成一个函数 def getNewDetail(newsUrl):

def getNewDetail():
    detail_res = requests.get("http://news.gzcc.cn/html/2017/xiaoyuanxinwen_1225/8854.html")
    detail_res.encoding = "utf-8"
    detail_soup = BeautifulSoup(detail_res.text, "html.parser")
    content = detail_soup.select("#content")[0].text
    info = detail_soup.select(".show-info")[0].text
    return content, info
print(getNewDetail())

  

9. 取出一个新闻列表页的全部新闻 包装成函数def getListPage(pageUrl):

def getListPage(pageUrl):
    res = requests.get(pageUrl)
    res.encoding = 'utf-8'
    soup = BeautifulSoup(res.text, 'html.parser')
    for news in soup.select('li'):
        if len(news.select('.news-list-title')) > 0:
            g = news.select('a')[0].attrs['href']
            print(g)
            getNewsDetail(g)

  

10. 获取总的新闻篇数,算出新闻总页数包装成函数def getPageN():

def getPageN():
    res = requests.get('http://news.gzcc.cn/html/xiaoyuanxinwen/')
    res.encoding = 'utf-8'
    soup = BeautifulSoup(res.text, 'html.parser')
    pagenumber=int(soup.select('.a1')[0].text.rstrip('条'))
    page = pagenumber//10+1
    return page

  

11. 获取全部新闻列表页的全部新闻详情。

pageUrl='http://news.gzcc.cn/html/xiaoyuanxinwen/'
n=getPageN()for i in range(1,n+1):
    print(i)
    listPageUrl='http://news.gzcc.cn/html/xiaoyuanxinwen/{}.html'.format(i)
    getListPage(listPageUrl)

  

posted @ 2018-04-11 21:21  226李汉昊  阅读(141)  评论(0编辑  收藏  举报