欧美三区_成人在线免费观看视频_欧美极品少妇xxxxⅹ免费视频_a级毛片免费播放_鲁一鲁中文字幕久久_亚洲一级特黄

python實現多線程采集的2個代碼例子

系統 1610 0

代碼一:

            
#!/usr/bin/python
# -*- coding: utf-8 -*-
#encoding=utf-8
?
import threading
import Queue
import sys
import urllib2
import re
import MySQLdb
?
#
# 數據庫變量設置
#
DB_HOST = '127.0.0.1'
DB_USER = "XXXX"
DB_PASSWD = "XXXXXXXX"
DB_NAME = "xxxx"
?
#
# 變量設置
#
THREAD_LIMIT = 3
jobs = Queue.Queue(5)
singlelock = threading.Lock()
info = Queue.Queue()
?
def workerbee(inputlist):
????for x in xrange(THREAD_LIMIT):
????????print 'Thead {0} started.'.format(x)
????????t = spider()
????????t.start()
????for i in inputlist:
????????try:
????????????jobs.put(i, block=True, timeout=5)
????????except:
????????????singlelock.acquire()
????????????print "The queue is full !"
????????????singlelock.release()
?
????# Wait for the threads to finish
????singlelock.acquire()??????? # Acquire the lock so we can print
????print "Waiting for threads to finish."
????singlelock.release()??????? # Release the lock
????jobs.join()????????????? # This command waits for all threads to finish.
????# while not jobs.empty():
????#?? print jobs.get()
?
def getTitle(url,time=10):
????response = urllib2.urlopen(url,timeout=time)
????html = response.read()
????response.close()
????reg = r'
            '
????title = re.compile(reg).findall(html)
????# title = title[0].decode('gb2312','replace').encode('utf-8')
????title = title[0]
????return title
?
class spider(threading.Thread):
????def run(self):
????????while 1:
????????????try:
????????????????job = jobs.get(True,1)
????????????????singlelock.acquire()
????????????????title = getTitle(job[1])
????????????????info.put([job[0],title], block=True, timeout=5)
????????????????# print 'This {0} is {1}'.format(job[1],title)
????????????????singlelock.release()
????????????????jobs.task_done()
????????????except:
????????????????break;
?
if __name__ == '__main__':
????con = None
????urls = []
????try:
????????con = MySQLdb.connect(DB_HOST,DB_USER,DB_PASSWD,DB_NAME)
????????cur = con.cursor()
????????cur.execute('SELECT id,url FROM `table_name` WHERE `status`=0 LIMIT 10')
????????rows = cur.fetchall()
????????for row in rows:
????????????# print row
????????????urls.append([row[0],row[1]])
????????workerbee(urls)
????????while not info.empty():
????????????print info.get()
????finally:
????????if con:
????????????con.close()
          

代碼二:

            
#!/usr/bin/python
# -*- coding: utf-8 -*-
#encoding=utf-8
#Filename:robot.py
 
import threading,Queue,sys,urllib2,re
#
# 變量設置
#
THREAD_LIMIT = 3        #設置線程數
jobs = Queue.Queue(5)      #設置隊列長度
singlelock = threading.Lock()    #設置一個線程鎖,避免重復調用
 
urls = ['http://games.sina.com.cn/w/n/2013-04-28/1634703505.shtml','http://games.sina.com.cn/w/n/2013-04-28/1246703487.shtml','http://games.sina.com.cn/w/n/2013-04-28/1028703471.shtml','http://games.sina.com.cn/w/n/2013-04-27/1015703426.shtml','http://games.sina.com.cn/w/n/2013-04-26/1554703373.shtml','http://games.sina.com.cn/w/n/2013-04-26/1512703346.shtml','http://games.sina.com.cn/w/n/2013-04-26/1453703334.shtml','http://games.sina.com.cn/w/n/2013-04-26/1451703333.shtml','http://games.sina.com.cn/w/n/2013-04-26/1445703329.shtml','http://games.sina.com.cn/w/n/2013-04-26/1434703322.shtml','http://games.sina.com.cn/w/n/2013-04-26/1433703321.shtml','http://games.sina.com.cn/w/n/2013-04-26/1433703320.shtml','http://games.sina.com.cn/w/n/2013-04-26/1429703318.shtml','http://games.sina.com.cn/w/n/2013-04-26/1429703317.shtml','http://games.sina.com.cn/w/n/2013-04-26/1409703297.shtml','http://games.sina.com.cn/w/n/2013-04-26/1406703296.shtml','http://games.sina.com.cn/w/n/2013-04-26/1402703292.shtml','http://games.sina.com.cn/w/n/2013-04-26/1353703286.shtml','http://games.sina.com.cn/w/n/2013-04-26/1348703284.shtml','http://games.sina.com.cn/w/n/2013-04-26/1327703275.shtml','http://games.sina.com.cn/w/n/2013-04-26/1239703265.shtml','http://games.sina.com.cn/w/n/2013-04-26/1238703264.shtml','http://games.sina.com.cn/w/n/2013-04-26/1231703262.shtml','http://games.sina.com.cn/w/n/2013-04-26/1229703261.shtml','http://games.sina.com.cn/w/n/2013-04-26/1228703260.shtml','http://games.sina.com.cn/w/n/2013-04-26/1223703259.shtml','http://games.sina.com.cn/w/n/2013-04-26/1218703258.shtml','http://games.sina.com.cn/w/n/2013-04-26/1202703254.shtml','http://games.sina.com.cn/w/n/2013-04-26/1159703251.shtml','http://games.sina.com.cn/w/n/2013-04-26/1139703233.shtml']
 
def workerbee(inputlist):
  for x in xrange(THREAD_LIMIT):
    print 'Thead {0} started.'.format(x)
    t = spider()
    t.start()
  for i in inputlist:
    try:
      jobs.put(i, block=True, timeout=5)
    except:
      singlelock.acquire()
      print "The queue is full !"
      singlelock.release()
 
  # Wait for the threads to finish
  singlelock.acquire()    # Acquire the lock so we can print
  print "Waiting for threads to finish."
  singlelock.release()    # Release the lock
  jobs.join()       # This command waits for all threads to finish.
  # while not jobs.empty():
  #  print jobs.get()
 
def getTitle(url,time=10):
  response = urllib2.urlopen(url,timeout=time)
  html = response.read()
  response.close()
  reg = r'
            '
  title = re.compile(reg).findall(html)
  title = title[0].decode('gb2312','replace').encode('utf-8')
  return title
 
class spider(threading.Thread):
  def run(self):
    while 1:
      try:
        job = jobs.get(True,1)
        singlelock.acquire()
        title = getTitle(job)
        print 'This {0} is {1}'.format(job,title)
        singlelock.release()
        jobs.task_done()
      except:
        break;
 
if __name__ == '__main__':
  workerbee(urls)
          


更多文章、技術交流、商務合作、聯系博主

微信掃碼或搜索:z360901061

微信掃一掃加我為好友

QQ號聯系: 360901061

您的支持是博主寫作最大的動力,如果您喜歡我的文章,感覺我的文章對您有幫助,請用微信掃描下面二維碼支持博主2元、5元、10元、20元等您想捐的金額吧,狠狠點擊下面給點支持吧,站長非常感激您!手機微信長按不能支付解決辦法:請將微信支付二維碼保存到相冊,切換到微信,然后點擊微信右上角掃一掃功能,選擇支付二維碼完成支付。

【本文對您有幫助就好】

您的支持是博主寫作最大的動力,如果您喜歡我的文章,感覺我的文章對您有幫助,請用微信掃描上面二維碼支持博主2元、5元、10元、自定義金額等您想捐的金額吧,站長會非常 感謝您的哦!!!

發表我的評論
最新評論 總共0條評論
主站蜘蛛池模板: 日本在线视频观看 | 亚洲六月丁香色婷婷综合久久 | 亚洲精品乱码久久久久久久久久 | 成人网址大全 | 亚洲视频免费在线播放 | 波多野结衣手机在线播放 | 国产精品亚洲综合一区在线观看 | 亚洲激情视频在线观看 | 日本中文字幕在线视频 | 二区三区偷拍浴室洗澡视频 | 福利国产 | 精品久久久久久久久久 | 天堂热| 亚洲 偷拍 色播 | 中文字幕亚洲一区 | 欧美一区二区三区视频 | 毛片在线免费 | 一区视频| 午夜小视频在线播放 | 日本成熟视频tube~be | 九月婷婷开心九月 | 日日狠日| 日日碰狠狠躁久久躁婷婷 | 波多野结衣中文丝袜字幕 | 亚洲AV久久久久久久无码 | 天天摸夜夜摸狠狠摸夜夜摸 | 一级一级毛片免费看 | 一区二区三区在线免费观看 | 香港三级网站 | 欧洲一级毛片 | 日本一区免费在线观看 | 国产色片在线观看 | 91在线精品秘密一区二区 | 991av| 日本久久精品视频 | aaa在线 | 国产成人免费高清激情明星 | 国产中文欧美 | 亚洲欧美精品 | 天堂在线视频 | 久久精品一区二区 |