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) 형식이다
본고에서 서술한 것이 여러분의 파이톤 프로그램 설계에 도움이 되었으면 합니다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
다양한 언어의 JSONJSON은 Javascript 표기법을 사용하여 데이터 구조를 레이아웃하는 데이터 형식입니다. 그러나 Javascript가 코드에서 이러한 구조를 나타낼 수 있는 유일한 언어는 아닙니다. 저는 일반적으로 '객체'{}...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.