This repository has been archived on 2026-03-18. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
pants/python/sockets/client.py
2026-03-18 00:46:30 -07:00

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