python에서udp 데이터 보고 전송을 실현하는 방법

1385 단어
본고의 실례는 Python이 UDP 데이터 보고 전송을 실현하는 방법을 설명하여 매우 실용적 가치를 가진다.여러분에게 참고하도록 공유하다.구체적인 방법은 다음과 같다.
서버 코드:

import socket 
port = 8081 
s = socket.socket(socket.AF_INET,socket.SOCK_DGRAM) 
#      ,      ,  UDP    
s.bind(("",port)) 
print 'waiting on port:',port 
while True: 
  data,addr = s.recvfrom(1024) 
  #       (   1024  ) 
  print 'reciveed:',data,"from",addr 

클라이언트 코드:

import socket 
port = 8081 
host = "localhost" 
s = socket.socket(socket.AF_INET,socket.SOCK_DGRAM) 
s.sendto("hello world",(host,port)) 


결과: 먼저 서버를 실행한 다음에 클라이언트를 실행하면 서버가 출력됩니다.

waiting on port: 8081
reciveed: hello world from ('127.0.0.1', 62644)

보충:socket.sendto(string[, flags], address)
공식 문서는 다음과 같습니다.
Send data to the socket. The socket should not be connected to a remote socket, since the destination socket is specified by address. The optional flags argument has the same meaning as for recv() above. Return the number of bytes sent. (The format of address depends on the address family ― see above.)address 파라미터는 프로토콜 형식에서 socket입니다.SOCK_DGRAM 시 address의 구조는 하나의 원조 (host,port) 형식이다
본고에서 서술한 것이 여러분의 파이톤 프로그램 설계에 도움이 되었으면 합니다.

좋은 웹페이지 즐겨찾기