原理就是用代理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
1