python tcp socket example
Example 1: send data through tcp sockets python
import socket
TCP_IP = '127.0.0.1'
TCP_PORT = 5005
BUFFER_SIZE = 1024
MESSAGE = "Hello, World!"
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
s.connect((TCP_IP, TCP_PORT))
s.send(MESSAGE)
data = s.recv(BUFFER_SIZE)
s.close()
print "received data:", data
Example 2: send request to website python tcp socket
target_host = "www.google.com"
target_port = 80
client = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
client.connect((target_host,target_port))
request = "GET / HTTP/1.1\r\nHost:%s\r\n\r\n" % target_host
client.send(request.encode())
response = client.recv(4096)
http_response = repr(response)
http_response_len = len(http_response)
gh_imgui.text("[RECV] - length: %d" % http_response_len)
gh_imgui.text_wrapped(http_response)
Example 3: socket programming in python
import socket
HOST = '127.0.0.1'
PORT = 65432
with socket.socket(socket.AF_INET, socket.SOCK_STREAM) as s:
s.bind((HOST, PORT))
s.listen()
conn, addr = s.accept()
with conn:
print('Connected by', addr)
while True:
data = conn.recv(1024)
if not data:
break
conn.sendall(data)
Example 4: python socket server
import socket
socket = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
socket.bind(('', 15555))
while True:
socket.listen(5)
client, address = socket.accept()
print "{} connected".format( address )
response = client.recv(255)
if response != "":
print response
print "Close"
client.close()
stock.close()
Example 5: python tcp socket example
import socket
socket = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
print("Choose mode. s - server, c - client")
mode = input("> ")
if mode == "s":
ip = input("Your computer's ip address: ")
port = 80
socket.bind((ip, port))
socket.listen(1)
sock, addr = socket.accept()
print("Client connected from", addr)
while True:
data = sock.recv(16384)
text = data.decode('utf-8')
print("Message from client:", text)
elif mode == "c":
ip = input("Server ip address: ")
socket.connect((ip, 80))
while True:
socket.send(input("Message: ").encode('utf-8'))