Takes a host name on the command like and prints all resulting matches for it. : Address Info : Network PYTHON examples


PYTHON examples » Network » Address Info »

 

Takes a host name on the command like and prints all resulting matches for it.


Takes a host name on the command like and prints all resulting matches for it.

import sys, socket

result = socket.getaddrinfo('www.google.com', None, 0, socket.SOCK_STREAM)

counter = 0
for item in result:
    print "%-2d: %s" (counter, item[4])
    counter += 1


           
       



Leave a Comment / Note


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


PYTHON examples

 Navioo Network
» Address Info