#!/usr/bin/python3 import time # https://docs.python.org/fr/3/library/time.html #https://realpython.com/python-sockets/ import socket HOST = '127.0.0.1' # The server's hostname or IP address PORT = 30000 # The port used by the server ######################################################################################################################## if __name__ == '__main__': try: with socket.socket(socket.AF_INET, socket.SOCK_STREAM) as s: s.connect((HOST, PORT)) while True: s.sendall(b'r 1 2 3') data = s.recv(1024) # print('Received', repr(data)) print(repr(data)) time.sleep(0.01) except KeyboardInterrupt: print("bye")