跳至主要内容

python 之 Thread(线程)

http://python101.pythonlibrary.org/chapter21_thread.html
https://www.tutorialspoint.com/python3/python_multithreading.htm

  1. # Python 3 version
  2.  
  3. import os
  4. import urllib.request
  5.  
  6. from threading import Thread
  7.  
  8. class DownloadThread(Thread):
  9.     """
  10.    A threading example that can download a file
  11.    """
  12.  
  13.     def __init__(self, url, name):
  14.         """Initialize the thread"""
  15.         Thread.__init__(self)
  16.         self.name = name
  17.         self.url = url
  18.  
  19.     def run(self):
  20.         """Run the thread"""
  21.         handle = urllib.request.urlopen(self.url)
  22.         fname = os.path.basename(self.url)
  23.         with open(fname, "wb") as f_handler:
  24.             while True:
  25.                 chunk = handle.read(1024)
  26.                 if not chunk:
  27.                     break
  28.                 f_handler.write(chunk)
  29.         msg = "%s has finished downloading %s!" % (self.name,
  30.                                                    self.url)
  31.         print(msg)
  32.  
  33. def main(urls):
  34.     """
  35.    Run the program
  36.    """
  37.     for item, url in enumerate(urls):
  38.         name = "Thread %s" % (item+1)
  39.         thread = DownloadThread(url, name)
  40.         thread.start()
  41.  
  42. if __name__ == "__main__":
  43.     urls = ["http://www.irs.gov/pub/irs-pdf/f1040.pdf",
  44.             "http://www.irs.gov/pub/irs-pdf/f1040a.pdf",
  45.             "http://www.irs.gov/pub/irs-pdf/f1040ez.pdf",
  46.             "http://www.irs.gov/pub/irs-pdf/f1040es.pdf",
  47.             "http://www.irs.gov/pub/irs-pdf/f1040sb.pdf"]
  48.     main(urls)
  49. -------------------------------------------------------------
  50. import os
  51. import threading
  52. import urllib.request
  53.  
  54. from queue import Queue
  55.  
  56. class Downloader(threading.Thread):
  57.     """Threaded File Downloader"""
  58.  
  59.     def __init__(self, queue):
  60.         """Initialize the thread"""
  61.         threading.Thread.__init__(self)
  62.         self.queue = queue
  63.  
  64.     def run(self):
  65.         """Run the thread"""
  66.         while True:
  67.             # gets the url from the queue
  68.             url = self.queue.get()
  69.  
  70.             # download the file
  71.             self.download_file(url)
  72.  
  73.             # send a signal to the queue that the job is done
  74.             self.queue.task_done()
  75.  
  76.     def download_file(self, url):
  77.         """Download the file"""
  78.         handle = urllib.request.urlopen(url)
  79.         fname = os.path.basename(url)
  80.         with open(fname, "wb") as f:
  81.             while True:
  82.                 chunk = handle.read(1024)
  83.                 if not chunkbreak
  84.                 f.write(chunk)
  85.  
  86. def main(urls):
  87.     """
  88.    Run the program
  89.    """
  90.     queue = Queue()
  91.  
  92.     # create a thread pool and give them a queue
  93.     for i in range(5):
  94.         t = Downloader(queue)
  95.         t.setDaemon(True)
  96.         t.start()
  97.  
  98.     # give the queue some data
  99.     for url in urls:
  100.         queue.put(url)
  101.  
  102.     # wait for the queue to finish
  103.     queue.join()
  104.  
  105. if __name__ == "__main__":
  106.     urls = ["http://www.irs.gov/pub/irs-pdf/f1040.pdf",
  107.             "http://www.irs.gov/pub/irs-pdf/f1040a.pdf",
  108.             "http://www.irs.gov/pub/irs-pdf/f1040ez.pdf",
  109.             "http://www.irs.gov/pub/irs-pdf/f1040es.pdf",
  110.             "http://www.irs.gov/pub/irs-pdf/f1040sb.pdf"]
  111.     main(urls)






评论

此博客中的热门博文

自动发送消息

  # https://pyperclip.readthedocs.io/en/latest/ import pyperclip while True :     # pyperclip.copy('Hello, world!')     # pyperclip.paste()     # pyperclip.waitForPaste()     print ( pyperclip. waitForNewPaste ( ) )     # 获取要输入新的坐标,也可以通过autohotkey import time import pyautogui  as pag import os   try :     while True :         print ( "Press Ctrl-C to end" )         x , y = pag. position ( )   # 返回鼠标的坐标         posStr = "Position:" + str ( x ) . rjust ( 4 ) + ',' + str ( y ) . rjust ( 4 )         print ( posStr )   # 打印坐标         time . sleep ( 0.2 )         os . system ( 'cls' )   # 清楚屏幕 except KeyboardInterrupt :     print ( 'end....' )     # 打印消息 import pyautogui import time import pyperclip   content = """   呼叫龙叔! 第二遍! 第三遍! 第四遍...

学习地址

清华大学计算机系课程攻略 https://github.com/PKUanonym/REKCARC-TSC-UHT 浙江大学课程攻略共享计划 https://github.com/QSCTech/zju-icicles https://home.unicode.org/ 世界上的每个人都应该能够在手机和电脑上使用自己的语言。 http://codecanyon.net   初次看到这个网站,小伙伴们表示都惊呆了。原来代码也可以放在网上卖的?!! 很多coder上传了各种代码,每个代码都明码标价。看了下销售排行,有的19刀的卖了3万多份,额di神啊。可以看到代码的演示效果,真的很漂亮。代码以php、wordpress主题、Javascript、css为主,偏前台。 https://www.lintcode.com/ 算法学习网站,上去每天刷两道算法题,走遍天下都不怕。 https://www.codecademy.com/ 包含在线编程练习和课程视频 https://www.reddit.com/ 包含有趣的编程挑战题,即使不会写,也可以查看他人的解决方法。 https://ideone.com/ 在线编译器,可运行,可查看代码示例。 http://it-ebooks.info/ 大型电子图书馆,可即时免费下载书籍。 刷题 https://github.com/jackfrued/Python-100-Days https://github.com/kenwoodjw/python_interview_question 面试问题 https://github.com/kenwoodjw/python_interview_question https://www.journaldev.com/15490/python-interview-questions#python-interpreter HTTP 身份验证 https://developer.mozilla.org/zh-CN/docs/Web/HTTP/Authentication RESTful 架构详解 https://www.runoob.com/w3cnote/restful-architecture.html https://www.rosettacode.org/wiki/Rosetta_C...

mysql 入门

资料 https://dinfratechsource.com/2018/11/10/how-to-install-latest-mysql-5-7-21-on-rhel-centos-7/ https://dev.mysql.com/doc/refman/5.7/en/linux-installation-yum-repo.html https://www.runoob.com/mysql/mysql-create-database.html https://www.liquidweb.com/kb/install-java-8-on-centos-7/ 工具 https://www.heidisql.com/ HeidiSQL是免费软件,其目标是易于学习。 “ Heidi”使您可以从运行数据库系统MariaDB,MySQL,Microsoft SQL或PostgreSQL的计算机上查看和编辑数据和结构 MySQL 连接时尽量使用 127.0.0.1 而不是 localhost localhost 使用的 Linux socket,127.0.0.1 使用的是 tcp/ip 为什么我使用 localhost 一直没出问题 因为你的本机中只有一个 mysql 进程, 如果你有一个 node1 运行在 3306, 有一个 node2 运行在 3307 mysql -u root -h localhost -P 3306 mysql -u root -h localhost -P 3307 都会连接到同一个 mysql 进程, 因为 localhost 使用 Linux socket, 所以 -P 字段直接被忽略了, 等价于 mysql -u root -h localhost mysql -u root -h localhost 而 -h 默认是 localhost, 又等价于 mysql -u root mysql -u root 为了避免这种情况(比如你在本地开发只有一个 mysql 进程,线上或者 qa 环境有多个 mysql 进程)最好的方式就是使用 IP mysql -u root -h 127 .0 .0 .1 -P 3307 strac...