Python3: UDP を受信
こちらの記事を参考にしました。
UDPでデータを受信する最も単純なPythonコード(Jupyter notebook版)
次のバージョンで確認しました。
$ python3 --version Python 3.7.3
ポート 8092 の受信
receive.py
#! /usr/bin/python3
#
# receive.py
#
# Aug/25/2021
#
import socket
import sys
udp = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
udp.bind(("0.0.0.0",8092))
sys.stderr.write("*** start ***\n")
while True:
try:
rcv_byte = bytes() #バイトデータ受信用変数
rcv_byte, addr = udp.recvfrom(1024) #括弧内は最大バイト数設定
msg = rcv_byte.decode() #バイトデータを文字列に変換
print(len(msg))
print(msg)
if msg.strip() == 'close':
udp.close()
break
except KeyboardInterrupt:
udp.close()
ポート 8092 に udp で送信するスクリプト
echo 'Good Morning' | ncat -4 -u -w 1 localhost 8092
終了させるスクリプト
echo 'close' | ncat -4 -u -w 1 localhost 8092
Author And Source
この問題について(Python3: UDP を受信), 我々は、より多くの情報をここで見つけました https://qiita.com/ekzemplaro/items/4d65001547ec8825479e著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .