Python (qpython) socket programming

462 Views Asked by At
import socket
import sys

# creating socket object
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)

host = 'www.google.com'
port = "80"


x = "GET  /  HTTP/1.1\r\nHost :  "+ host + "\n\n"

s.connect((host, port)
s.send(request.encode()) # the line has error invalid syntax 

response  = s.recv(4096)

print (response)
2

There are 2 best solutions below

1
On

Error in this line:

s.send(request.encode()) # the line has error invalid syntax

Reason: you have defined request with variable name x so this should work for you,

s.send(x)
0
On

Adding to the existing answer about the problems with your code:

x = "GET  /  HTTP/1.1\r\nHost :  "+ host + "\n\n"

You are trying to construct a HTTP request here but get it wrong:

  1. there should be no space after Host, i.e. it should be Host: hostname and not Host: hostname as you do.
  2. The end of line should be \r\n and not \n. You get it right after the first line but not after the Host header and not for the end-of-header marker.