jsb-netgame/demo1.py

9 lines
164 B
Python
Raw Permalink Normal View History

2024-02-17 17:05:21 +00:00
import network, sys, time
sock = network.Sock()
destination = ["192.168.0.255", 33077]
while True:
message = input("envoyer: ")
sock.send(message, destination)