basic client-server implementation

This commit is contained in:
Harshil
2018-04-16 06:56:53 +02:00
parent ca5c6f268a
commit 621192998e
4 changed files with 41 additions and 43 deletions

View File

@@ -0,0 +1,14 @@
# client.py
import socket
HOST, PORT = '127.0.0.1', 1400
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
s.connect((HOST, PORT))
s.send(b'Hello World')
data = s.recv(1024)
s.close()
print(repr(data.decode('ascii')))