This commit is contained in:
2026-03-18 00:46:30 -07:00
commit 56b1607ec5
316 changed files with 266132 additions and 0 deletions

21
python/sockets/client.py Normal file
View File

@@ -0,0 +1,21 @@
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()

39
python/sockets/server.py Normal file
View File

@@ -0,0 +1,39 @@
import socket
# Create a socket object
server_socket = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
# Define the host and port on which the server will listen
host = '127.0.0.1'
port = 8000
# Bind the socket to the host and port
server_socket.bind((host, port))
# Listen for incoming connections
server_socket.listen()
print("Server listening on {}:{}".format(host, port))
while True:
# Accept a connection
client_socket, client_address = server_socket.accept()
print("Connection established with", client_address)
while True:
# Receive data from the client
data = client_socket.recv(1024)
if not data:
# If no data is received, client has closed the connection
print("Connection closed by", client_address)
break
print("Received:", data.decode())
# Send a response back to the client
client_socket.sendall("Hello from the server!".encode())
# Close the client socket
client_socket.close()
# Close the server socket (this part will never be reached in this loop)
server_socket.close()