码迷,mamicode.com
首页 > 其他好文 > 详细

爬虫新练习

时间:2018-04-09 13:17:21      阅读:155      评论:0      收藏:0      [点我收藏+]

标签:mode   ext   search   html   class   bs4   pre   amp   import   

import requests
import re
from bs4 import BeautifulSoup

url="http://news.gzcc.cn/html/xiaoyuanxinwen/"
res=requests.get(url)
res.encoding="utf-8"

url1="http://oa.gzcc.cn/api.php?op=count&id=9183&modelid=80"
res1=requests.get(url1)
print(res1.text.split(".html")[-1].lstrip("(‘").rstrip("‘);"))

newUrl =http://news.gzcc.cn/html/2018/xiaoyuanxinwen_0404/9183.html
re1 = re.search(\_(.*).html,newUrl)
re2 = re.match(http://news.gzcc.cn/html/2018/xiaoyuanxinwen_(.*).html,newUrl)
print(re1.group(1).split(/)[-1],re2.group(1).split(/)[-1])

 

爬虫新练习

标签:mode   ext   search   html   class   bs4   pre   amp   import   

原文地址:https://www.cnblogs.com/lg916843/p/8758677.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!