From 70b65b88ac2119600b68e1a75e3053459d171764 Mon Sep 17 00:00:00 2001 From: jbjjbjjbj Date: Fri, 13 Jan 2017 20:02:01 +0100 Subject: Added new scripts --- Scripts/pythonSocket.py | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 Scripts/pythonSocket.py (limited to 'Scripts/pythonSocket.py') diff --git a/Scripts/pythonSocket.py b/Scripts/pythonSocket.py new file mode 100644 index 0000000..06c434b --- /dev/null +++ b/Scripts/pythonSocket.py @@ -0,0 +1,23 @@ +import socket +sock = socket.socket() + +server_addr = ('192.168.43.86', 5001) +sock.bind(server_addr) + +sock.listen(1) +print("Waiting for connection on " + str(server_addr)) +while True: + connection, client_address = sock.accept() + try: + print ('connection from', client_address) + + # Receive the data in small chunks and retransmit it + while True: + data = connection.recv(16) + print('received ' ,data) + if not data: + print('no more data from', client_address) + break + finally: + # Clean up the connection + connection.close() \ No newline at end of file -- cgit v1.2.3