python:python的多程式
https://docs.python.org/3.6/library/multiprocessing.html#examples
從這裡改造而來:
import time
from urllib import request
from multiprocessing import Process, Queue, current_process, freeze_support,cpu_count
def worker2(input, output):
for func, args in iter(input.get, `STOP`):
result = nety(func, args)
output.put(result)
def nety(func, args):
result = func(args)
return `process: %s done func:%s url:%s` %
(current_process().name, func.__name__, args)
def getUrl(url):
res=request.urlopen(url)
#return res.read().decode(`UTF-8`)
return res
def test():
NUMBER_OF_PROCESSES = cpu_count()*2
urllist=[`http://115.239.211.112/`]*100
TASKS3=[(getUrl, url) for url in urllist]
# Create queues
task_queue = Queue()
done_queue = Queue()
# Submit tasks
```
for task in TASKS1:
task_queue.put(task)
```
for task in TASKS3:
task_queue.put(task)
# Start worker processes
for i in range(NUMBER_OF_PROCESSES):
Process(target=worker2, args=(task_queue, done_queue)).start()
# Get and print results
print(`Unordered results:`)
for i in range(len(TASKS3)):
print(` `, done_queue.get())
# Tell child processes to stop
for i in range(NUMBER_OF_PROCESSES):
task_queue.put(`STOP`)
if __name__ == `__main__`:
freeze_support()
startTime=time.time()
test()
endTime=time.time()
print(endTime-startTime)
改進版本:
import time
from urllib import request
from multiprocessing import Process, Queue, current_process,cpu_count,freeze_support
import os
def worker2(queueIn, queueOut):
for func, args in iter(queueIn.get, `STOP`):
result = netty(func, args)
queueOut.put(result)
def netty(func, args):
result = func(args)
#return (`process: %s done func:%s url:%s` % (current_process().name, func.__name__, args),result)
return (args, result) #返回傳入的引數和輸出的結果
def getUrl(url):
res=request.urlopen(url)
#return res.read().decode(`UTF-8`)
return res.read()
def test():
NUMBER_OF_PROCESSES = cpu_count()*1
#urllist=[`http://192.168.199.119:8080/`]*10
urllist = []
urlFileName = `urls\urls.txt`
with open(urlFileName,`r`) as f:
for line in f.readlines():
urllist.append(line.replace(`
`,``))
urllist = urllist*5
TASKS3 = [(getUrl, url) for url in urllist]
# Create queues
task_queue = Queue()
done_queue = Queue()
# Submit tasks
for task in TASKS3:
task_queue.put(task)
# Start worker processes
for i in range(NUMBER_OF_PROCESSES):
Process(target=worker2, args=(task_queue, done_queue)).start()
# Get and print results
print(`Unordered results:`)
for i in range(len(TASKS3)):
# print(done_queue.get())
res=done_queue.get()
url=res[0]
data=res[1]
#fileName = `DATA\`+url[7:].replace(`/`, ``).replace(`:`, `_`)+`_`+str(i)+`.txt`
#fileName=`DATA\`+`data`+str(i)+`.data`
fileName=`DATA\`+os.path.basename(url).replace(`?`,`_`)+`_`+str(i)+`.data`
with open(fileName,`wb`) as f:
f.write(data)
# Tell child processes to stop
for i in range(NUMBER_OF_PROCESSES):
task_queue.put(`STOP`)
if __name__ == `__main__`:
freeze_support()
startTime = time.time()
test()
endTime = time.time()
print(endTime-startTime)
相關文章
- Python中的多程式Python
- Python多程式Python
- python使用多程式Python
- Python的多程式和多執行緒Python執行緒
- Python多程式程式設計Python程式設計
- [python] 多程式程式設計Python程式設計
- python多程式與子程式Python
- Python 多執行緒多程式Python執行緒
- Python的多工程式設計Python程式設計
- python多程式基礎Python
- python---多工程式Python
- python 多程式詳解Python
- Python 多程式實踐Python
- python多程式取代多執行緒的探究Python執行緒
- [譯] Python 的多執行緒與多程式Python執行緒
- 【Python】 多程式與多執行緒Python執行緒
- python中的多工程式設計Python程式設計
- python 多程式通訊模組Python
- python多執行緒程式設計1— python對多執行緒的支援Python執行緒程式設計
- 入門python多執行緒/多程式Python執行緒
- 搞定python多執行緒和多程式Python執行緒
- 關於 Python 多執行緒/多程式Python執行緒
- python中的Queue與多程式(multiprocessing)Python
- Python 多執行緒及程式Python執行緒
- Python學習筆記 - 多程式Python筆記
- Python 201:多程式教程Python
- Python多程式記錄日誌Python
- 【Python從入門到精通】(二十五)Python多程式的使用Python
- python 多程式和多執行緒學習Python執行緒
- 什麼是python的多程式?好學嗎?Python
- 之前用的一個多程式python爬蟲Python爬蟲
- Python 多程式和資料傳遞的理解Python
- python 多執行緒程式設計Python執行緒程式設計
- Python多程式之資料交換PipePython
- python中socket+multiprocessing多程式Python
- Python多執行緒程式設計Python執行緒程式設計
- Python多程式之分享(multiprocessing包)Python
- Python多工程式設計介紹Python程式設計