上传者: 38529251
|
上传时间: 2021-07-14 13:40:44
|
文件大小: 34KB
|
文件类型: PDF
原理就是用代理IP去访问投票地址。用到了多线程,速度飞快。
昨晚两个小时就刷了1000多票了,主要是代理IP不好找。
2.7环境下运行
#!/usr/bin/env python
#-*- coding: utf-8 -*-
import urllib2
from threading import Thread
from time import time
class Vote(Thread):
def __init__(self, proxy):
Thread.__init__(self)
self.proxy = proxy
se