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,6 @@
# simple client server
#### Note:
- Run **`server.py`** first.
- Now, run **`client.py`**.
- verify the output.

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')))

View File

@@ -0,0 +1,21 @@
# server.py
import socket
HOST, PORT = '127.0.0.1', 1400
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
s.bind((HOST, PORT))
s.listen(1)
conn, addr = s.accept()
print('connected to:', addr)
while 1:
data = conn.recv(1024)
if not data:
break
conn.send(data + b' [ addition by server ]')
conn.close()