Sending an HTTP GET Request from a Python Script : HTTP Request : Network PYTHON TUTORIALS


PYTHON TUTORIALS » Network » HTTP Request »

 

Sending an HTTP GET Request from a Python Script


import httplib

def printText(txt):
    lines = txt.split('n')
    for line in lines:
        print line.strip()

httpServ = httplib.HTTPConnection("127.0.0.1"80)
httpServ.connect()

httpServ.request('GET', "/test.html")

response = httpServ.getresponse()
if response.status == httplib.OK:
    print "Output from HTML request"
    printText (response.read())

httpServ.request('GET', '/cgi_form.cgi?name=Brad&quote=Testing.')

response = httpServ.getresponse()
if response.status == httplib.OK:
    print "Output from CGI request"
    printText (response.read())

httpServ.close()



Leave a Comment / Note


 
Verification is used to prevent unwanted posts (spam). .


PYTHON TUTORIALS

 Navioo Network
» HTTP Request