[code.view]

[top] / python / PyMOTW / socket / socket_getfqdn.py

     #!/usr/bin/env python
     # encoding: utf-8
     #
     # Copyright (c) 2010 Doug Hellmann.  All rights reserved.
     #
     """Look up the fully qualified domain name for a host.
     """
     #end_pymotw_header
     
     import socket
     
     for host in [ 'homer', 'www' ]:
         print '%6s : %s' % (host, socket.getfqdn(host))
     

[top] / python / PyMOTW / socket / socket_getfqdn.py

contact | logmethods.com