#!/usr/bin/env python3 # -*- coding: utf-8 -*- """ Created on Mon Jun 22 16:29:12 2020 @author: edoardottt """ import socket target_host = "0.0.0.0" target_port = 9999 # 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(b"GET / HTTP/1.1\r\nHost: localhost\r\n\r\n") # receive some data response = client.recv(4096) print(response)