python中socket+multiprocessing多程式
sockect的multiprocessing多程式使用
# 多程式.
import socket
import multiprocessing
def func(cnn):
while True:
try:
request = cnn.recv(1024)
print(request)
cnn.send(b'%s' % request)
except ConnectionResetError:
cnn.close()
break
if __name__ == '__main__':
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
s.bind(('0.0.0.0', 4444))
s.listen(5)
while True:
try:
print("開始監聽")
cnn, addr = s.accept()
m = multiprocessing.Process(target=func, args=(cnn,))
m.daemon = True # daemon True設定為守護即主死子死.
m.start() # 開啟一個子程式, func中的while 來接受cnn後續內容.
except ConnectionResetError:
pass
except Exception as e:
print(e)
相關文章
- Python中的多程式Python
- python中的多工程式設計Python程式設計
- Python多程式Python
- python:python的多程式Python
- python使用多程式Python
- 豬行天下之Python基礎——9.2 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多程式之分享(multiprocessing包)Python
- Python的多工程式設計Python程式設計
- 【多程式】Linux中fork()函式詳解|多程式Linux函式
- python多程式簡介,和VNPY多程式引數優化程式碼分析Python優化
- python中多程式處理資料庫連線的問題Python資料庫
- Android中的多程式、多執行緒Android執行緒
- python 多執行緒程式設計Python執行緒程式設計
- Python多執行緒程式設計Python執行緒程式設計
- Python多工程式設計介紹Python程式設計
- python爬蟲入門八:多程式/多執行緒Python爬蟲執行緒
- Python多程式程式設計基礎——圖文版Python程式設計
- Python——程式、執行緒、協程、多程式、多執行緒(個人向)Python執行緒
- 豬行天下之Python基礎——9.1 Python多執行緒與多程式(上)Python執行緒
- 豬行天下之Python基礎——9.3 Python多執行緒與多程式(下)Python執行緒
- Python中的繼承和多型Python繼承多型
- Python多程式之資料交換PipePython
- python中多執行緒和多程序的應用Python執行緒