채팅방

    [소켓프로그래밍] 간단한 채팅방 구현

    [소켓프로그래밍] 간단한 채팅방 구현

    먼저 채팅방을 구현하려면 서버와 클라이언트가 필요하다. 즉, 두 명 이상이서 채팅을 주고받아야 한다. 서버측의 전체 코드부터 보자면 from socket import * import threading import time def send(sock): while True: sendData = input('>>>') sock.send(sendData.lower().encode('utf-8')) def receive(sock): while True: recvData = sock.recv(1024) print('Client :', recvData.decode('utf-8')) port = 8081 serverSock = socket(AF_INET, SOCK_STREAM) serverSock.bind(('', p..