jsb-netgame/demo1.py

9 lines
164 B
Python

import network, sys, time
sock = network.Sock()
destination = ["192.168.0.255", 33077]
while True:
message = input("envoyer: ")
sock.send(message, destination)