Python Forum

Full Version: TCp code explained
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hey guys,

I am new to this field and I would like to get some assistance in explaining this code's output.
Currently when I run it doesn't produce any output. I am using WingIDE.

import socket

target_host = "www.google.com"
target_port = 80

#create a socket object

client = socket.socket(socket.AF_INET, socket.SOCK_STREAM)

#connect the client

client.connect((target_host,target_port))

#send some data

client.send("GET / HTTP/1.1\r\nHOST: google.com\r\n\r\n")

#receive some data

response = client.recv(4096)
add the following after line 20
print(response)
Thanks! forgot to add that LoL! Dance Dance