1 Star 0 Fork 0

9yen/python-chatdemo

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
server.py 685 Bytes
一键复制 编辑 原始数据 按行查看 历史
9yen 提交于 2023-01-12 17:33 . first commit
import socket
# 创建socket
s = socket.socket()
# 绑定IP和端口
# host = socket.gethostname()
host = "127.0.0.1"
port = 12345
s.bind((host, port))
# 设置最大连接数
s.listen(5)
print('Waiting for connection...')
# 接受客户端的连接
while True:
conn, addr = s.accept()
print('Got connection from', addr)
# 向客户端发送消息
conn.send('Welcome to the chat server!'.encode())
while True:
# 接收客户端消息
data = conn.recv(1024).decode()
if not data:
break
print('Received from client: ', data)
# 发送响应消息
conn.send(data.encode())
# 关闭连接
conn.close()
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/yen9/python-chatdemo.git
git@gitee.com:yen9/python-chatdemo.git
yen9
python-chatdemo
python-chatdemo
main

搜索帮助