python3.5  抓网易新闻的排行榜上的新闻,主要用自带的request模块和lxml

import re
from urllib import request
from lxml import etree
import threadpool
import threading htmlcode='gbk'
threadlock=threading.Lock() testurl="http://news.163.com/rank/" with request.urlopen(testurl) as f:
print('Status:', f.status, f.reason)
#网页的编码格式只取一次,默认所有的编码方式都是这个
decode=(f.headers['Content-Type'].split(';')[1]).split('=')[1]
data = f.read().decode(decode.lower())
infos = re.findall(r'<div class="titleBar" id=".*?"><h2>(.*?)</h2><div class="more"><a href="(.*?)">.*?</a></div></div>', data, re.S)
for i in range(len(infos)):
print('%s-%s'%(i,infos[i][0]))
print('选择新闻类型')
k=input()
if k.isdigit()and int(k)<len(infos):
newpage=(request.urlopen(infos[int(k)][1]).read()).decode(decode.lower())
dom=etree.HTML(newpage)
items=dom.xpath('//tr/td/a/text()')
urls=dom.xpath('//tr/td/a/@href')
assert (len(items)==len(urls))
print(len(items))
for i in range(len(urls)):
print(items[i])
new=(request.urlopen(urls[i]).read()).decode(decode.lower())
ncs=re.findall(r'<div id="endText" class="end-text">.*?</div>',data,re.S)
newdom=etree.HTML(new)
newitems=newdom.xpath("//div[@id='endText'and @class='post_text']/p/text()")
for n in newitems:
print(n)
print('=======================输入y继续')
if 'y'==input():continue
else:break;

多线程版本,用threadpool  直接pip安装的,实测读取同样的50个页面多线程要比上边的要快点,不过这个跟实时网速有关系,不太好具体测试时间

def test2():
with request.urlopen(testurl) as f:
htmlcode=(f.headers['Content-Type'].split(';')[1]).split('=')[1]
data = f.read().decode(htmlcode.lower())
infos = re.findall(r'<div class="titleBar" id=".*?"><h2>(.*?)</h2><div class="more"><a href="(.*?)">.*?</a></div></div>', data, re.S)
newpage=(request.urlopen(infos[0][1]).read()).decode(htmlcode.lower())
dom=etree.HTML(newpage)
items=dom.xpath('//tr/td/a/text()')
urls=dom.xpath('//tr/td/a/@href')
assert (len(items)==len(urls))
urlss=urls[:50]
print(len(items))
news=[]
args=[]
[args.append(([i,news],None)) for i in urlss]
pool=threadpool.ThreadPool(8)
ress=threadpool.makeRequests(GetNewpage,args)
[pool.putRequest(req) for req in ress]
print("start=====%s"%len(urlss))
pool.wait()
print("end==========")
print(len(news))
print(news[0])
while(True):
k=input()
if not k.isdigit()or int(k)>=len(news):break
print(news[int(k)]) def GetNewpage(url,news):
try:
new=(request.urlopen(url).read()).decode(htmlcode.lower())
newdom=etree.HTML(new)
newitems=newdom.xpath("//div[@id='endText'and @class='post_text']/p/text()")
newcontent=""
for n in newitems:
newcontent=newcontent+n
threadlock.acquire()//
news.append(newcontent)
threadlock.release()
except Exception:
print('%s------------------error'%url)

threadpool多线程和profile的调用示例,线程的执行函数应该是可以多参数的··,

threadpool 调用示例,线程执行函数有两个参数,穿的参数列表有点奇怪,只有一个参数直接传一个list就可以了


def pooltest():
a=[1,2,3,4,5,6,7,8,9,10,111]
b=[]
args=[]
[args.append(([i,b],None)) for i in a]
pool=threadpool.ThreadPool(5)
ress=threadpool.makeRequests(lambda x,y:y.append(x),args,lambda x,y:print(x.requestID))
[pool.putRequest(req) for req in ress]
pool.wait()

profile的调用示例,可以查看函数执行耗时情况

    import profile
profile.run('test2()','prores')
import pstats
p=pstats.Stats('prores')
p.strip_dirs().sort_stats("cumulative").print_stats(0)//显示前几行,这里设置0 只显示总时间
 

使用cookie访问需要用户名的网站:

首先你得从浏览器里边吧 对应网站的cookie给弄出来 存在本地文件或者什么地方 ,用的时候直接取出来··

这里本地测试了 百度和豆瓣,百度OK可以获取对应的信息, 豆瓣不行··· 豆瓣最近抽筋,经常无法访问,估计是夏天来了豆瓣太穷买不起空调的原因吧···

从网站返回的是gzip格式的数据,这个是压缩的数据,不能直接解码,要先解压再解码

def cookietest():
headers={'User-Agent':'Mozilla/5.0 (Windows NT 10.0; WOW64; rv:53.0) Gecko/20100101 Firefox/53.0',
'Accept':'*/*',
'Accept-Language':'zh-CN,zh;q=0.8,en-US;q=0.5,en;q=0.3',
'Accept-Encoding':'gzip, deflate, br',
'Referer':'https://www.douban.com/',
'Cookie':cookiedouban,
'Connection':'keep-alive'} req=request.Request('https://www.douban.com',headers=headers)
with request.urlopen(req) as f:
print('Status:', f.status, f.reason)
for k, v in f.getheaders():
print('%s: %s' % (k, v))
bs=f.read();
bi = io.BytesIO(bs)
gf = gzip.GzipFile(fileobj=bi, mode="rb")
print(gf.read().decode('utf-8'))

python 爬虫初试的更多相关文章

  1. Python 爬取豆瓣电影Top250排行榜,爬虫初试

    from bs4 import BeautifulSoup import openpyxl import re import urllib.request import urllib.error # ...

  2. Python爬虫入门(二)之Requests库

    Python爬虫入门(二)之Requests库 我是照着小白教程做的,所以该篇是更小白教程hhhhhhhh 一.Requests库的简介 Requests 唯一的一个非转基因的 Python HTTP ...

  3. Python 爬虫模拟登陆知乎

    在之前写过一篇使用python爬虫爬取电影天堂资源的博客,重点是如何解析页面和提高爬虫的效率.由于电影天堂上的资源获取权限是所有人都一样的,所以不需要进行登录验证操作,写完那篇文章后又花了些时间研究了 ...

  4. python爬虫成长之路(一):抓取证券之星的股票数据

    获取数据是数据分析中必不可少的一部分,而网络爬虫是是获取数据的一个重要渠道之一.鉴于此,我拾起了Python这把利器,开启了网络爬虫之路. 本篇使用的版本为python3.5,意在抓取证券之星上当天所 ...

  5. python爬虫学习(7) —— 爬取你的AC代码

    上一篇文章中,我们介绍了python爬虫利器--requests,并且拿HDU做了小测试. 这篇文章,我们来爬取一下自己AC的代码. 1 确定ac代码对应的页面 如下图所示,我们一般情况可以通过该顺序 ...

  6. python爬虫学习(6) —— 神器 Requests

    Requests 是使用 Apache2 Licensed 许可证的 HTTP 库.用 Python 编写,真正的为人类着想. Python 标准库中的 urllib2 模块提供了你所需要的大多数 H ...

  7. 批量下载小说网站上的小说(python爬虫)

    随便说点什么 因为在学python,所有自然而然的就掉进了爬虫这个坑里,好吧,主要是因为我觉得爬虫比较酷,才入坑的. 想想看,你可以批量自动的采集互联网上海量的资料数据,是多么令人激动啊! 所以我就被 ...

  8. python 爬虫(二)

    python 爬虫 Advanced HTML Parsing 1. 通过属性查找标签:基本上在每一个网站上都有stylesheets,针对于不同的标签会有不同的css类于之向对应在我们看到的标签可能 ...

  9. Python 爬虫1——爬虫简述

    Python除了可以用来开发Python Web之后,其实还可以用来编写一些爬虫小工具,可能还有人不知道什么是爬虫的. 一.爬虫的定义: 爬虫——网络爬虫(又被称为网页蜘蛛,网络机器人,在FOAF社区 ...

随机推荐

  1. 基于Solr的多表join查询加速方法

    前言 DT时代对平台或商家来说最有价值的就是数据了,在大数据时代数据呈现出数据量大,数据的维度多的特点,用户会使用多维度随意组合条件快速召回数据.数据处理业务场景需要实时性,需要能够快速精准的获得到需 ...

  2. Python3之pickle模块

    用于序列化的两个模块 json:用于字符串和Python数据类型间进行转换 pickle: 用于python特有的类型和python的数据类型间进行转换 json提供四个功能:dumps,dump,l ...

  3. 修改两行代码,让nginx支持phpinfo模式

    Nginx服务器默认不支持pathinfo, 在需要pathinfo支持的程序中(如thinkphp),则无法支持”/index.php/Home/Index/index”这种网址. 网上流传的解决办 ...

  4. 忘记commit也会造成select查询的性能问题

    今天遇到一个很有意思的问题,一个开发人员反馈在测试服务器ORACLE数据库执行的一条简单SQL语句非常缓慢,他写的一个SQL没有返回任何数据,但是耗费了几分钟的时间.让我检查分析一下原因,分析解决过后 ...

  5. 5A - Matrix

    #include <iostream> using namespace std; int n, m, q; struct node { int v; // 节点权值 int r; // 右 ...

  6. Qt 学习之路 2(76):QML 和 QtQuick 2

    Home / Qt 学习之路 2 / Qt 学习之路 2(76):QML 和 QtQuick 2 Qt 学习之路 2(76):QML 和 QtQuick 2  豆子  2013年12月18日  Qt ...

  7. Docker Run 设置环境变量

    Docker Run We can then override the environment variables set in the Docker file when running the im ...

  8. Python-list()之remove()/pop() I /del()

    代码块 remove #remove删除首个符合条件的元素,并不删除特定的索引. n =[1,2,2,3,4,5] n.remove(3) print (n) #输出 [1, 2, 2, 4, 5] ...

  9. 移动距离--dfs-蓝桥杯

    题目描述: X星球居民小区的楼房全是一样的,并且按矩阵样式排列.其楼房的编号为1,2,3... 当排满一行时,从下一行相邻的楼往反方向排号. 比如:当小区排号宽度为6时,开始情形如下:   1   2 ...

  10. python数据类型,格式话输出

    一.程序交互 name = input(“你的名字是:”) #用户输入,输入的任何东西都存储成str(字符串类型)的形式 二.注释的重要性 以后动辄几千行代码的时候,回过头再去看的时候,发现自己都看不 ...