Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 783 Bytes

README.md

File metadata and controls

29 lines (21 loc) · 783 Bytes

socket

簡單的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 為自行輸入

###example

$ python server.py 8880
$ python client.py 8880

server 以prot 8880開啟
client 以prot 8880連線

###reference

Python socket document
Python socket – network programming tutorial
Python socket – network programming tutorial 中文翻譯