mirror of
https://github.com/TheAlgorithms/Python.git
synced 2026-03-13 09:50:19 +08:00
basic client-server implementation
This commit is contained in:
6
simple-client-server/README.md
Normal file
6
simple-client-server/README.md
Normal file
@@ -0,0 +1,6 @@
|
||||
# simple client server
|
||||
|
||||
#### Note:
|
||||
- Run **`server.py`** first.
|
||||
- Now, run **`client.py`**.
|
||||
- verify the output.
|
||||
14
simple-client-server/client.py
Normal file
14
simple-client-server/client.py
Normal 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')))
|
||||
21
simple-client-server/server.py
Normal file
21
simple-client-server/server.py
Normal 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()
|
||||
Reference in New Issue
Block a user