python-scripts/scripts/Socket_Programming_Python/client1.py

10 lines
263 B
Python
Raw Normal View History

2022-10-09 09:23:49 +00:00
import socket
client_socket=socket.socket(socket.AF_INET,socket.SOCK_STREAM)
port = 1024
host = socket.gethostbyname(socket.gethostname()) # get the hostname
client_socket.connect((host, port))
message = client_socket.recv(2048)
print(message.decode("utf-8"))