1. 程式人生 > >python編寫簡單聊天程式

python編寫簡單聊天程式

socket模組相關的方法和類

  • socket.socket():返回一個 socket物件。
  • socket.create_connection(address):建立一個連線到給定地址的 socket物件(注意:此處的 address是一個二元元組(host, port)。
  • 注意:上面兩點中的 socket指 socket模組,以下的 socket均指 socket物件。
  • socket.bind(address):將 socket物件繫結到給定的地址上。
  • socket.listen():監聽 socket繫結的地址,在呼叫該方法後如果有連線請求,就可以呼叫 socket.accept()
    接受連線。
  • socket.accept():在呼叫 socket.listen()方法後,呼叫該方法來接受連線請求。
  • socket.connect(address):連線到給定地址。
  • socket.send(bytes):傳送二進位制資料。
  • socket.recv(bufsize):接受一段 bufsize大小的資料,通常 bufsize是 2的 n次方,如 1024,40258等。

簡單的 socket伺服器端

import socket


HOST = '127.0.0.1'
PORT = 8888

server = socket.socket()
server.bind((HOST, PORT))
server.listen(1)


print(f'the server is listening at {HOST}:{PORT}')
print('waiting for conntection...')
conn, addr = server.accept()

print(f'connect success addr={addr}')
print('waiting for message')
while True:
    msg = conn.recv(1024)
    print('the clint send:', msg.decode())
    response = input('enter your response: ')
    conn.send(response.encode())
    print('waiting for answer')
    

簡單的 socket客戶端

import socket
import sys


try:
    host, port = input('please enter host address like host:port: ').split(':')
except ValueError:
    print('the address is wrong')
    sys.exit(-1)

if len(host) == 0 or len(port) == 0:
    print('the address is wrong')
    sys.exit(-1)
else:
    client = socket.create_connection((host, int(port)))
    
    print('connect successfully. waiting for response...')
    
    client.send(b'hello server.')
    while True:
        response = client.recv(1024)
        print('the response is:', response.decode())
        msg = input('please enter a answer: ')
        client.send(msg.encode())
        print('waiting for response...')

執行截圖:

8516750-806f3d92afca6d8e.png