[Python-es] IP en Python

Carlos Math gunmath987 en gmail.com
Mie Mayo 4 02:10:45 CEST 2011


> [2] http://code.google.com/p/python-ifconfig/
>>
>
Probe con esta url, la cual me llevo a otro enlace y al final llegue a este
pequeño codigo. Que me dice precisamente lo que quiero asi que de 10,
gracias :)

def get_ip_address(ifname="wlan0"):
   try:
      s = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
      return socket.inet_ntoa(fcntl.ioctl(
         s.fileno(),
         0x8915,
         struct.pack('256s', ifname[:15])
      )[20:24])
   except:
      return "La interfaz no está conectada a ninguna red"

-- 
Matt's
------------ próxima parte ------------
Se ha borrado un adjunto en formato HTML...
URL: <http://mail.python.org/pipermail/python-es/attachments/20110503/e3fda1e1/attachment.html>


Más información sobre la lista de distribución Python-es