-
Python Socket server,client examplePython/Python 2020. 5. 29. 18:40반응형
별건없고 소켓통신 클라이언트랑 서버 기초 예제이다 .
import socket HOST = "127.0.0.1" PORT = 2333 serverSocket = socket.socket(socket.AF_INET , socket.SOCK_STREAM) serverSocket.bind((HOST,PORT)) serverSocket.listen() clientSocket,addr = serverSocket.accept() print("통신 주소 " , addr) while True: data = clientSocket.recv(1024) if not data: break print("받은 데이터", addr, data.decode()) clientSocket.close() serverSocket.close()
import socket HOST = "127.0.0.1" PORT = 2333 clientSocket = socket.socket(socket.AF_INET, socket.SOCK_STREAM) clientSocket.connect((HOST, PORT)) while True: a = input() if a == 'q': break clientSocket.sendall(a.encode()) clientSocket.close()
server , client 순이다 코드는 간단해서 따로 설명은 생략 .
반응형'Python > Python' 카테고리의 다른 글
python pip3 install face_recognition In Ubuntu (0) 2020.09.21 Python webcam example (0) 2020.05.29 Python 알고리즘 ( 백준 2446) (0) 2020.04.29 Python (Pysafebrowsing 키 발급 및 패키지 설치 ) (0) 2020.04.29 Python 윈도우 잠금 하기 (0) 2020.04.09