-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathaddReader.py
229 lines (194 loc) · 7.58 KB
/
addReader.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
#-*-coding:utf8-*-
#created by 10412
__author__ = 'zhisheng17'
import urllib.request
from bs4 import BeautifulSoup
import re
import time
import random
import threading
# -------------------------------------------------------公用方法----------------------------------------------------
class CommanCalss:
def __init__(self):
self.header={'User-Agent':'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.94 Safari/537.36'}
self.testurl="www.baidu.com"
def getresponse(self,url):
req = urllib.request.Request(url, headers=self.header)
resp = urllib.request.urlopen(req, timeout=5)
content = resp.read().decode('utf-8', 'ignore')
return content
def getresponse_p(self,url, pro):
proxy_support = urllib.request.ProxyHandler({"http": pro})
opener = urllib.request.build_opener(proxy_support)
urllib.request.install_opener(opener)
# 访问
Max_Num = 2
for i in range(Max_Num):
try:
req = urllib.request.Request(url, headers=self.header)
page = urllib.request.urlopen(req, timeout=3)
pagecontent = page.read().decode('utf-8', 'ignore')
break
except:
if i < Max_Num - 1:
continue
else:
print("sorry,proxy error")
return pagecontent
#代理IP是否有用
def _is_alive(self,proxy):
try:
proxy_support = urllib.request.ProxyHandler({"http": proxy})
opener = urllib.request.build_opener(proxy_support)
urllib.request.install_opener(opener)
req = urllib.request.Request(self.url, headers=self.header)
# 访问
resp=urllib.request.urlopen(req,timeout=5)
return True
except:
return False
# ------------------------------------------------------------
# 一、获取代理模块
# ------------------------------------------------------------
# -------1.1、代理池-----------------------------------------
class ProxyPool:
def __init__(self,proxy_finder):
self.pool=[]
self.proxy_finder=proxy_finder
self.cominstan=CommanCalss()
def get_proxies(self):
self.pool=self.proxy_finder.find()
for p in self.pool:
if self.cominstan._is_alive(p):
continue
else:
self.pool.remove(p)
def get_one_proxy(self):
return random.choice(self.pool)
def writeToTxt(self,file_path):
try:
fp = open(file_path, "w+")
for item in self.pool:
fp.write(str(item) + "\n")
fp.close()
except IOError:
print("fail to open file")
#--------1.2、获取代理方法---------------------------------------
#定义一个基类
class IProxyFinder(object):
def __init__(self):
self.pool = []
def find(self):
return
#西祠代理爬取
class XiciProxyFinder(IProxyFinder):
def __init__(self, url):
super(XiciProxyFinder,self).__init__()
self.url=url
self.cominstan = CommanCalss()
def find(self):
for i in range(1, 10):
content = self.cominstan.getresponse(self.url + str(i))
soup = BeautifulSoup(content)
ips = soup.findAll('tr')
for x in range(2, len(ips)):
ip = ips[x]
tds = ip.findAll("td")
if tds == []:
continue
ip_temp = tds[1].contents[0] + ":" + tds[2].contents[0]
self.pool.append(ip_temp)
time.sleep(1)
return self.pool
#---------1.3、测试---------------------------------------------
#finder = XiciProxyFinder("http://www.xicidaili.com/wn/")
#ppool_instance = ProxyPool(finder)
#ppool_instance.get_proxies()
#ppool_instance.writeToTxt("d:\\proxy.txt")
# ------------------------------------------------------------
# 二、刷访问量模块开始
# ------------------------------------------------------------
class AddPV:
def __init__(self):
self.pool=[]
self.cominstan = CommanCalss()
# -----2.1、获取代理--------------------------------------------
# -----2.2.1从代理池中获取----------
def getProxyList(self):
finder = XiciProxyFinder("http://www.xicidaili.com/wn/")
ppool_instance = ProxyPool(finder)
ppool_instance.get_proxies()
self.pool = ppool_instance.pool
# -----2.2.2从文件中读取-----------
def getProxyList(self, filename):
f = open(filename, "r")
lines = f.readlines() # 读取全部内容
for line in lines:
self.pool.append(line[:-1])
# -----2.2、刷访问量--------------------------------------------
# -----2.2.1 刷单个博客页面-----------------------
def visitOnePage(self, brushNum, url):
for j in range(brushNum):
try:
pro = random.choice(self.pool)
pageContent = self.cominstan.getresponse_p(url, pro)
# 使用BeautifulSoup解析每篇博客的标题
soup = BeautifulSoup(pageContent)
blogTitle = str(soup.title.string)
blogTitle = blogTitle[0:blogTitle.find('-')]
viewnums = soup.find_all('span', class_='link_view')
print(blogTitle, viewnums)
except:
#self.pool.remove(pro)
continue
time.sleep(0.5) # 正常停顿,以免服务器拒绝访问
# -----2.2.2、刷所有博客页面---------------------
def getAllPages(self,username):
# csdn首页
urlBase = "http://blog.csdn.net" # 需要将网址合并的部分
# 自己的博客主页
url = urlBase + "/" + username
try:
pagecontent = self.cominstan.getresponse(url)
p = re.compile('/' + username + '/article/details/........')
allfinds = p.findall(pagecontent)
mypages = list(set(allfinds))
for i in range(len(mypages)):
mypages[i] = urlBase + mypages[i]
return mypages
except:
print("寻找博客列表出错")
def visitAllPages(self, brushNum, username):
# 所有的页面都刷
pagelist=self.getAllPages(username)
for i in range(brushNum):
page=random.choice(pagelist)
self.visitOnePage(2, page)
# ------------------------------------------------------------
#三、运行程序
# ------------------------------------------------------------
#将代理保存在D盘,直接读,如果没保存,就运行一遍上面测试内容
csdn = AddPV()
def shuashua():
#csdn.visitAllPages(10000,"tzs_1041218129") #刷你所有博客的浏览量 (输入你的CSDN博客ID)
csdn.visitOnePage(2000, "http://blog.csdn.net/tzs_1041218129/article/details/53214497") #刷你单篇博客的浏览量(输入你博客的链接地址)
time.sleep(1)
def main():
threadpool=[]
try:
csdn.getProxyList("d:\\proxy.txt")
except:
finder = XiciProxyFinder("http://www.xicidaili.com/wn/")
ppool_instance = ProxyPool(finder)
ppool_instance.get_proxies()
ppool_instance.writeToTxt("d:\\proxy.txt")
csdn.getProxyList("d:\\proxy.txt")
for i in range(30): #定义线程数
th = threading.Thread(target=shuashua)
threadpool.append(th)
for th in threadpool:
th.start()
for th in threadpool :
threading.Thread.join( th )
if __name__ == '__main__':
main()