簡單的socket example
分為兩個檔案 server.py and client.py
server.py 為server端,client.py為client端(multi thread處理)
$ python server.py port
$ python client.py port
ip 寫在程式裡面,預設為 localhost,port 為自行輸入
$ python server.py 8880
$ python client.py 8880
server 以prot 8880開啟
client 以prot 8880連線
Python socket document
Python socket – network programming tutorial
Python socket – network programming tutorial 中文翻譯