22 lines
497 B
Python
22 lines
497 B
Python
import socket
|
|
|
|
# Create a socket object
|
|
client_socket = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
|
|
|
|
# Define the host and port to connect to
|
|
host = '10.100.54.10'
|
|
port = 8000
|
|
|
|
# Connect to the server
|
|
client_socket.connect((host, port))
|
|
|
|
# Send data to the server
|
|
client_socket.sendall("Hello from the client!".encode())
|
|
|
|
# Receive a response from the server
|
|
response = client_socket.recv(1024)
|
|
print("Response from server:", response.decode())
|
|
|
|
# Close the connection
|
|
client_socket.close()
|