【说站】python socket连接客户端的方法
2024-12-08
10
python socket连接客户端的方法
流程
1、建立基于IPV4和TCP协议的Socket。
这里的AF_INET是指使用IPV4协议,SOCK_STREAM指定使用面向流的TCP协议,将监视端口连接起来,设定等待连接的数量。
2、建立永久循环,获得客户请求的连接,accept()等待客户返回连接
3、连接建立后,等待客户端数据,接受客户端数据后,将数据返回客户端,最后关闭连接。
实例
# -*- coding: utf-8 -*- from socket import socket, AF_INET, SOCK_STREAM def echo_handler(sock ,address): print("Get Connection from address:", address) while True: response = sock.recv(8192) if not response: break print(f"Got {response}") sock.sendall(response) def echo_server(address, back_log=5): sock = socket(AF_INET, SOCK_STREAM) sock.bind(address) sock.listen(back_log) while True: sock_client, address = sock.accept() echo_handler(sock_client, address) if __name__ == "__main__": echo_server(('localhost', 5000))
以上就是python socket连接客户端的方法,希望对大家有所帮助。更多Python学习指路:python基础教程
本文教程操作环境:windows7系统、Python 3.9.1,DELL G3电脑。
更新于:3天前赞一波!2
相关文章
- js 数组方法 - 修改篇
- 【说站】python阻塞调度如何使用
- 【说站】python chardet库的函数用法
- 【说站】python中使用动量交易策略
- 【说站】python迭代器协议支持的两种方法
- 【说站】python中chardet库的安装和导入
- 【说站】python PyQt5如何实现窗口功能
- 【说站】python动量交易策略的四个步骤
- 【说站】Python中__slots__限制属性
- 【说站】python如何实现事务机制
- 【说站】Python bs4的四种对象
- 【说站】python动态规划算法的使用过程
- 【说站】Python unittest有哪些使用方法
- 【说站】python线程安全的介绍及解决方法
- 【说站】Python测试前置操作的方法
- 【说站】python tqdm有哪些用法
- 【说站】python正态分布中的normal函数
- 【说站】python socketserver处理客户端的流程
- 【说站】python TCP和UDP协议的区别分析
- 【说站】python if三元表达式如何使用
文章评论
评论问答