美文网首页
刷博客访问量csdn

刷博客访问量csdn

作者: iCircle | 来源:发表于2019-04-02 17:16 被阅读0次
# python -u csdn.py > out.log 2>&1 &


import sys
 
reload(sys)
sys.setdefaultencoding('utf-8')
 
import urllib2
import socket
import time
import re
import random
 
blog_url = [
    'https://blog.csdn.net/u013108312/article/details/88973776',
    'https://blog.csdn.net/u013108312/article/details/88973667',
    'https://blog.csdn.net/u013108312/article/details/88973495',
    'https://blog.csdn.net/u013108312/article/details/88973390',
    'https://blog.csdn.net/u013108312/article/details/88973064',
    'https://blog.csdn.net/u013108312/article/details/88972599',
    'https://blog.csdn.net/u013108312/article/details/88972094',
    'https://blog.csdn.net/u013108312/article/details/88971914',
    'https://blog.csdn.net/u013108312/article/details/88971745',
    'https://blog.csdn.net/u013108312/article/details/88971543',
]
 
 
class CSDN(object):
    def __init__(self, blog_url=blog_url, csdn_url="http://blog.csdn.net/fontthrone"):
        self.blog_url = blog_url
        self.headers = {
            'User-Agent': 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.11 (KHTML, like Gecko) Chrome/23.0.1271.64 Safari/537.11',
            'Accept': 'text/html;q=0.9,*/*;q=0.8',
            'Accept-Charset': 'ISO-8859-1,utf-8;q=0.7,*;q=0.3',
            'Accept-Encoding': 'gzip',
            'Connection': 'close',
            'Referer': None
            }
 
    def openCsdn(self):
        req = urllib2.Request(self.csdn_url, headers=self.headers)
        response = urllib2.urlopen(req)
        thePage = response.read()
        response.close()
        pattern = "res:<span>(\d+)times</span>"
        number = ''.join(re.findall(pattern, thePage))
        return number
 
    def openBlog(self, link='http://blog.csdn.net/fontthrone/article/details/70556507', timeout=60, sleepTime=22,
                 maxTryNum=1):
        tries = 0
        maxNum = 0
        # for tries in range(maxTryNum):
        while tries < maxTryNum:
            try:
                socket.setdefaulttimeout
                req = urllib2.Request(link, None, self.headers)
                resp = urllib2.urlopen(req, None, timeout)
                html = resp.read()
                print "Success!\t",
                print "Rest ", sleepTime, " seconds to continue...\n"
                tries += 1
                time.sleep(sleepTime)
            except:
                if tries < (maxTryNum):
                    maxNum += 1
                    continue
                else:
                    print("Has tried %d times to access blog link %s, all failed!", maxNum, link)
                    break
 
    def start(self, maxTime=100, blOpenCsdn=False, sleepTimeStart=5, sleepTimeEnd=15, timeout=60):
        for i in range(maxTime*len(self.blog_url)):
            randomLink = random.choice(self.blog_url)
            print 'This tinme the random_blog link is ',randomLink
            if blOpenCsdn == True:
                self.openCsdn()
            self.openBlog(link=randomLink, sleepTime=random.uniform(sleepTimeStart, sleepTimeEnd), timeout=timeout)
            print "Now is "+  str(i + 1) +" times to acess blog link\n"
 
 
csdn = CSDN()
inputMaxTime = 999999
csdn.start(maxTime =int(inputMaxTime))

相关文章

  • 刷博客访问量csdn

  • csdn刷访问量脚本

    csdn刷访问量脚本 步骤 打开你要刷访问量博客的首页 复制url 将代码部分"==你的博客地址=="替换为该ur...

  • 爬虫刷博客访问量

    记使用爬虫刷博客访问量的经历 1、选择技术 就个人而言,我对python和java都是比较熟悉的,这两种语言也支持...

  • CSDN博客

    我的CSDN博客地址: http://blog.csdn.net/zixiweimi, 不定时转载一些ios实用文章

  • CSDN 博客

    更喜欢 CSDN 的博客,GO GO GO!http://blog.csdn.net/xiewen99/

  • CSDN博客

    我的CSDN博客地址:http://blog.csdn.net/jiaobuchong,欢迎大家访问拍砖。

  • CSDN博客访问量突破5W+有感

    前言 从2019年5月12日发布的第一篇博客至今,已经坚持在CSDN创作一年半,昨天(2020.11.21)CSD...

  • 使用Jsoup刷CSDN刷博客浏览量

    最近公司在搞一些抓新闻的东西,使用了Jsoup,加上本人刚开始写CSDN浏览量,想来测试一下,使用Jsoup是否可...

  • 在CSDN上的LeetCode刷题博客链接 - 截止于2017.

    由于CSDN开启了手机验证,但是存在一些BUG,所以将以后的刷题博客迁移到这里。 CSDN博客链接:http://...

  • 将博客搬至CSDN

    将博客搬至CSDN将博客搬至CSDN将博客搬至CSDN将博客搬至CSDN将博客搬至CSDN将博客搬至CSDN将博客...

网友评论

      本文标题:刷博客访问量csdn

      本文链接:https://www.haomeiwen.com/subject/jlagbqtx.html