python 实现简单服务器server和客户端client

时间:2025-01-17 10:57:18

服务端

import socket

s = ()

host = ()
port = 8000
((host,port))

(5)
while True:
    c, addr = ()
    print("got connection from",addr)
    data = 'Thank you for connecting'
    (())
    ()

客户端

import socket

s = ()

host = ()
port = 8000

((host, port))
print((1024).decode())

server运行结果:

got connection from ('10.39.3.146', 65192)

client运行结果:

Thank you for connecting

还有个python2和Python3的坑:
TypeError: a bytes-like object is required, not ‘str’

In python 3, bytes strings and unicodestrings are now two different types. Since sockets are not aware of string encodings, they are using raw bytes strings, that have a slightly differentinterface from unicode strings.
So, now, whenever you have a unicode stringthat you need to use as a byte string, you need toencode() it. And whenyou have a byte string, you need to decode it to use it as a regular(python ) string.
Unicode strings are quotes enclosedstrings. Bytes strings are b”” enclosed strings
When you use client_socket.send(data),replace it by client_socket.send(()). When you get datausing data = client_socket.recv(512), replace it by data =client_socket.recv(512).decode()