3.27 如何使用udp给飞秋发消息(python)
程序员文章站
2022-03-26 19:31:22
...
通过UDP发送飞秋消息
消息格式
1: 1213: 发送者的名字: 电脑名字: 32: 发送内容
飞秋默认端口
2425
代码
# encoding: utf-8
import socket
if __name__ == '__main__':
udp_socket = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
send_content = "1:1213:飞秋2013官方:PC-MAC:32: 测试测试"
send_data = send_content.encode("gbk")
udp_socket.sendto(send_data, ("192.168.21.106", 2425))
udp_socket.close()