Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How can I find the local IP address (i.e. 192.168.x.x or 10.0.x.x) in Python platform independently and using only the standard library?

share|improve this question
1  
The local IP? Or public IP? How are you going to deal with systems with multiple IPs? – Sargun Dhillon Nov 5 '08 at 17:29
use ifconfig -a and use the output from there... – Fredrik Pihl Jun 23 '11 at 11:18
3  
@Fredrik That's a bad idea. First of all, you're unnecessarily forking a new process, and that may prevent your program from working in tightly locked configurations (or, you'll have to allow rights your program doesn't need). Secondly, you'll introduce bugs for users of different locales. Thirdly, if you decide to start a new program at all, you shouldn't start a deprecated one - ip addr is far more suitable (and easier to parse, to boot). – phihag Jun 23 '11 at 13:07
4  
@phihag you are absolutely correct, thanks for correcting my stupidity – Fredrik Pihl Jun 24 '11 at 20:16
A more fundamental problem here is that in a properly written modern networking program the right (set of) local IP address(es) depends on the peer, or the set of potential peers. If the local IP address is needed to bind a socket to a particular interface, then it is a policy matter. If the local IP address is needed to hand it over to a peer so that the peer can "call back", i.e. to open a connection back to the local machine, then the situation depends on whether there are any NAT (Network Address Translation) boxes in between. If there are no NATs, getsocknameis a good choice. – Pekka Nikander Apr 30 '12 at 4:58

23 Answers

up vote 63 down vote accepted
import socket
socket.gethostbyname(socket.gethostname())

This won't work always (returns 127.0.0.1 on machines having the hostname in /etc/hosts as 127.0.0.1), a paliative would be what gimel shows, use socket.getfqdn() instead. Of course your machine needs a resolvable hostname.

share|improve this answer
9  
One should note that this isn't a platform independent solution. A lot of Linuxes will return 127.0.0.1 as your IP address using this method. – Jason Baker Oct 3 '08 at 12:07
7  
A variation: socket.gethostbyname(socket.getfqdn()) – gimel Oct 3 '08 at 12:08
19  
This appears to only return a single IP address. What if the machine has multiple addresses? – Jason R. Coombs Oct 23 '09 at 14:39
5  
On Ubuntu this returns 127.0.1.1 for some reason. – Reinis I. Mar 20 '12 at 5:52
1  
@Reinis I: on Ubuntu this returns 127.0.1.1 because of a line in /etc/hosts. This line can be removed without terrible consequences. – amarillion Sep 24 '12 at 8:50
show 2 more comments

I just found this but it seems a bit hackish, however they say tried it on *nix and I did on windows and it worked.

s = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
s.connect(("gmail.com",80))
print(s.getsockname()[0])
s.close()

This assumes you have an internet access, and that there is no local proxy.

share|improve this answer
8  
Nice if you have several interfaces on the machine, and needs the one which routes to e.g. gmail.com – elzapp Oct 20 '10 at 14:16
1  
Good one, worked for me. – Igor Ganapolsky Nov 10 '10 at 16:19
1  
It might be a good idea to catch socket.error exceptions which may be risen by s.connect()! – phobie Oct 14 '11 at 14:52
5  
It would be better to use IP address instead of a domain name -- it must be faster and independent from DNS availability. E.g. we can use 8.8.8.8 IP -- Google's public DNS server. – khrf Apr 16 '12 at 12:27
2  
Here's a one-liner for the commandline: python -c "import socket; s = socket.socket(socket.AF_INET, socket.SOCK_DGRAM); s.connect(('8.8.8.8', 80)); print(s.getsockname()[0]); s.close()" – Alexander May 30 '12 at 13:04
show 2 more comments
import socket
print([ip for ip in socket.gethostbyname_ex(socket.gethostname())[2] if not ip.startswith("127.")][:1])

I'm using this, because one of the computers I was on had an /etc/hosts with duplicate entries and references to itself. socket.gethostbyname() only returns the last entry in /etc/hosts. This solution weeds out the ones starting with "127.". Works with Python 3 and 2.5, possibly other versions too. Does not deal with several network devices or IPv6. Works on Linux and Windows.

share|improve this answer
1  
seems to work fine in python 2.5 too :) – nornagon Feb 5 '10 at 2:31
1  
Awesome. Thanks. – ayaz Oct 20 '10 at 8:59
socket.gethostbyname_ex('') appears to work great without relying on the hostname of the computer. It happens to also return said hostname as the first item in tuple. So, socket.gethostbyname_ex('')[2] gives me all my local IPs and /not/ 127.0.0.1 for some reason. This is on Python 2.6.6 32bit, Windows 7 64bit. – Mark Ribau Sep 8 '11 at 3:58
Forgot to note, that the code in my comment above (cannot edit any longer) also gives me VPN IP addresses, which was important to me when I came here looking for an answer. – Mark Ribau Sep 8 '11 at 4:05
Odd I am not getting VPN IP's. (Thats what I am trying to access also) The above gives me my standard internal IP but not the IP for the VPN I am also connected too – kdbdallas Dec 4 '11 at 7:25
show 1 more comment

You can use the netifaces module. Just type:

easy_install netifaces

in your command shell and it will install itself on default Python installation.

Then you can use it like this:

from netifaces import interfaces, ifaddresses, AF_INET
for ifaceName in interfaces():
    addresses = [i['addr'] for i in ifaddresses(ifaceName).setdefault(AF_INET, [{'addr':'No IP addr'}] )]
    print '%s: %s' % (ifaceName, ', '.join(addresses))

On my computer it printed:

{45639BDC-1050-46E0-9BE9-075C30DE1FBC}: 192.168.0.100
{D43A468B-F3AE-4BF9-9391-4863A4500583}: 10.5.9.207

Author of this module claims it should work on Windows, UNIX and Mac OS X.

share|improve this answer
7  
As stated in the question I want something from the default install, as in no additional installs needed. – UnkwnTech Oct 3 '08 at 12:52
1  
This would be my favorite answer, except that netifaces doesn't support IPv6 on Windows and appears unmaintained. Has anyone figured out how to get IPv6 addresses on Windows? – Jean-Paul Calderone Jun 28 '11 at 12:57
Best answer for me. Awesome. – Vinicius Massuchetto Jul 23 '11 at 19:28
1  
netifaces doesn't support py3k, and requires a C compiler which is a PITA on windows. – Matt Joiner Jun 5 '12 at 6:43

Socket API method

import socket

# from http://commandline.org.uk/python/how-to-find-out-ip-address-in-python/
def getNetworkIp():
    s = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
    s.connect(('google.com', 0))
    return s.getsockname()[0]

Downsides:

  • Not cross-platform.
  • Requires more fallback code, tied to existence of particular addresses on the internet
  • This will also not work if you're behind a NAT
  • Probably creates a UDP connection, not independent of (usually ISP's) DNS availability (see other answers for ideas like using 8.8.8.8: Google's (coincidentally also DNS) server)

Reflector method

(Do note that this does not answer the OP's question of the local IP address, e.g. 192.168...; it gives you your public IP address, which might be more desirable depending on use case.)

You can query some site like whatismyip.com (but with an API), such as:

from urllib.request import urlopen
import re
def getPublicIp():
    data = str(urlopen('http://checkip.dyndns.com/').read())
    # data = '<html><head><title>Current IP Check</title></head><body>Current IP Address: 65.96.168.198</body></html>\r\n'

    return re.compile(r'Address: (\d+\.\d+\.\d+\.\d+)').search(data).group(1)

or if using python2:

from urllib import urlopen
import re
def getPublicIp():
    data = str(urlopen('http://checkip.dyndns.com/').read())
    # data = '<html><head><title>Current IP Check</title></head><body>Current IP Address: 65.96.168.198</body></html>\r\n'

    return re.compile(r'Address: (\d+\.\d+\.\d+\.\d+)').search(data).group(1)

Advantages:

  • One upside of this method is it's cross-platform
  • It works from behind ugly NATs (e.g. your home router).

Disadvantages (and workarounds):

  • Requires this website to be up, the format to not change (almost certainly won't), and your DNS servers to be working. One can mitigate this issue by also querying other third-party IP address reflectors in case of failure.
  • Possible attack vector if you don't query multiple reflectors (to prevent a compromised reflector from telling you that your address is something it's not), or if you don't use HTTPS (to prevent a man-in-the-middle attack pretending to be the server)

edit: Though initially I thought these methods were really bad (unless you use many fallbacks, the code may be irrelevant many years from now), it does pose the question "what is the internet?". A computer may have many interfaces pointing to many different networks. For a more thorough description of the topic, google for gateways and routes. A computer may be able to access an internal network via an internal gateway, or access the world-wide web via a gateway on for example a router (usually the case). The local IP address that the OP asks about is only well-defined with respect to a single link layer, so you have to specify that ("is it the network card, or the ethernet cable, which we're talking about?"). There may be multiple non-unique answers to this question as posed. However the global IP address on the world-wide web is probably well-defined (in the absence of massive network fragmentation): probably the return path via the gateway which can access the TLDs.

share|improve this answer
This will return your LAN-wide address if you're behind a NAT. If you're connecting to the Internet, you can connect to a web service that returns one of your public IP addresses. – phihag Jun 23 '11 at 11:10
1  
@phihag: you must by psychic, because I was just editing my answer to say that! – ninjagecko Jun 23 '11 at 11:11
It doesn't create a TCP connection because it creates a UDP connection. – Anuj Gupta Mar 26 at 16:41
@AnujGupta: ah oops, of course, thank you... – ninjagecko Apr 9 at 15:52

I use this on my ubuntu machines:

import commands
commands.getoutput("/sbin/ifconfig").split("\n")[1].split()[1][5:]
share|improve this answer
Nice and simple. Works on Amazon's Linux AMI as well, but only if I am root. Otherwise I would get an error: 'sh: ifconfig: command not found' – Igor Ganapolsky Nov 10 '10 at 16:52
So you should use "/sbin/ifconfig" like gavaletz said. It also works on Red Hat 4.1.2-48. – Igor Ganapolsky Nov 10 '10 at 17:05
1  
Deprecated since 2.6. Use the subprocess module to run commands. – Colin Dunklau Mar 18 at 21:06
And ifconfig is deprecated as well. Use iproute2. – Helmut Apr 9 at 13:04

If you don't want to use external packages and don't want to rely on outside Internet servers, this might help. It's a code sample that I found on Google Code Search and modified to return required information:

def getIPAddresses():
    from ctypes import Structure, windll, sizeof
    from ctypes import POINTER, byref
    from ctypes import c_ulong, c_uint, c_ubyte, c_char
    MAX_ADAPTER_DESCRIPTION_LENGTH = 128
    MAX_ADAPTER_NAME_LENGTH = 256
    MAX_ADAPTER_ADDRESS_LENGTH = 8
    class IP_ADDR_STRING(Structure):
        pass
    LP_IP_ADDR_STRING = POINTER(IP_ADDR_STRING)
    IP_ADDR_STRING._fields_ = [
        ("next", LP_IP_ADDR_STRING),
        ("ipAddress", c_char * 16),
        ("ipMask", c_char * 16),
        ("context", c_ulong)]
    class IP_ADAPTER_INFO (Structure):
        pass
    LP_IP_ADAPTER_INFO = POINTER(IP_ADAPTER_INFO)
    IP_ADAPTER_INFO._fields_ = [
        ("next", LP_IP_ADAPTER_INFO),
        ("comboIndex", c_ulong),
        ("adapterName", c_char * (MAX_ADAPTER_NAME_LENGTH + 4)),
        ("description", c_char * (MAX_ADAPTER_DESCRIPTION_LENGTH + 4)),
        ("addressLength", c_uint),
        ("address", c_ubyte * MAX_ADAPTER_ADDRESS_LENGTH),
        ("index", c_ulong),
        ("type", c_uint),
        ("dhcpEnabled", c_uint),
        ("currentIpAddress", LP_IP_ADDR_STRING),
        ("ipAddressList", IP_ADDR_STRING),
        ("gatewayList", IP_ADDR_STRING),
        ("dhcpServer", IP_ADDR_STRING),
        ("haveWins", c_uint),
        ("primaryWinsServer", IP_ADDR_STRING),
        ("secondaryWinsServer", IP_ADDR_STRING),
        ("leaseObtained", c_ulong),
        ("leaseExpires", c_ulong)]
    GetAdaptersInfo = windll.iphlpapi.GetAdaptersInfo
    GetAdaptersInfo.restype = c_ulong
    GetAdaptersInfo.argtypes = [LP_IP_ADAPTER_INFO, POINTER(c_ulong)]
    adapterList = (IP_ADAPTER_INFO * 10)()
    buflen = c_ulong(sizeof(adapterList))
    rc = GetAdaptersInfo(byref(adapterList[0]), byref(buflen))
    if rc == 0:
        for a in adapterList:
            adNode = a.ipAddressList
            while True:
                ipAddr = adNode.ipAddress
                if ipAddr:
                    yield ipAddr
                adNode = adNode.next
                if not adNode:
                    break

Usage:

>>> for addr in getIPAddresses():
>>>    print addr
192.168.0.100
10.5.9.207

As it relies on windll, this will work only on Windows.

share|improve this answer
The one liner solution above generally works on windows. It's the Linux one that's being a problem. – ricree Jun 18 '09 at 0:19
3  
+1 This technique at least attempts to return all addresses on the machine. – Jason R. Coombs Oct 23 '09 at 14:42
This script fails on my machine after returning the first address. Error is "AttributeError: 'LP_IP_ADDR_STRING' object has no attribute 'ipAddress'" I suspect it has something to do with the IPv6 address. – Jason R. Coombs Oct 23 '09 at 14:43
It turns out the issue is that for anything but the first IP address, the adNode isn't dereferenced. Add one more line to the example in the while loop and it works for me: adNode = adNode.contents – Jason R. Coombs Oct 23 '09 at 16:09

im using following module:

#!/usr/bin/python

# module for getting the lan ip address of the computer

import os

import socket

if os.name != "nt":

    import fcntl

    import struct

    def get_interface_ip(ifname):

    	s = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)

    	return socket.inet_ntoa(fcntl.ioctl(

    			s.fileno(),

    			0x8915,  # SIOCGIFADDR

    			struct.pack('256s', ifname[:15])

    		)[20:24])



def get_lan_ip():

    ip = socket.gethostbyname(socket.gethostname())

    if ip.startswith("127.") and os.name != "nt":

    	interfaces = ["eth0","eth1","eth2","wlan0","wlan1","wifi0","ath0","ath1","ppp0"]

    	for ifname in interfaces:

    		try:

    			ip = get_interface_ip(ifname)

    			break;

    		except IOError:

    			pass

    return ip

Tested with windows and linux (and doesnt require additional modules for those) intended for use on systems which are in a single LAN.

share|improve this answer

On Linux:

>>> import socket, struct, fcntl
>>> sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
>>> sockfd = sock.fileno()
>>> SIOCGIFADDR = 0x8915
>>>
>>> def get_ip(iface = 'eth0'):
...     ifreq = struct.pack('16sH14s', iface, socket.AF_INET, '\x00'*14)
...     try:
...         res = fcntl.ioctl(sockfd, SIOCGIFADDR, ifreq)
...     except:
...         return None
...     ip = struct.unpack('16sH2x4s8x', res)[2]
...     return socket.inet_ntoa(ip)
... 
>>> get_ip('eth0')
'10.80.40.234'
>>> 
share|improve this answer

I'm afraid there aren't any good platform independent ways to do this other than connecting to another computer and having it send you your IP address. For example: findmyipaddress. Note that this won't work if you need an IP address that's behind NAT unless the computer you're connecting to is behind NAT as well.

Here's one solution that works in Linux: get the IP address associated with a network interface.

share|improve this answer

127.0.1.1 is your real IP address. More generally speaking, a computer can have any number of IP addresses. You can filter them for private networks - 127.0.0.0/8, 10.0.0.0/8, 172.16.0.0/12 and 192.168.0.0/16.

However, there is no cross-platform way to get all IP addresses. On Linux, you can use the SIOCGIFCONF ioctl.

share|improve this answer
2  
He means his externally visible IP. The 127.*.*.* range typically refers to localhost or an internal network, which is clearly not what he wants. – Cerin May 17 '12 at 18:59

FYI I can verify that the method:

import socket
addr = socket.gethostbyname(socket.gethostname())

Works in OS X (10.6,10.5), Windows XP, and on a well administered RHEL department server. It did not work on a very minimal CentOS VM that I just do some kernel hacking on. So for that instance you can just check for a 127.0.0.1 address and in that case do the following:

if addr == "127.0.0.1":
     import commands
     output = commands.getoutput("/sbin/ifconfig")
     addr = parseaddress(output)

And then parse the ip address from the output. It should be noted that ifconfig is not in a normal user's PATH by default and that is why I give the full path in the command. I hope this helps.

share|improve this answer

One simple way to produce "clean" output via command line utils:

import commands
ips = commands.getoutput("/sbin/ifconfig | grep -i \"inet\" | grep -iv \"inet6\" | " +
                         "awk {'print $2'} | sed -ne 's/addr\:/ /p'")
print ips

It will show all IPv4 addresses on the system.

share|improve this answer
It will not show all IPv4 addresses, because ifconfig only tells you about primary ones. You need to use "ip" from iproute2 to see all addresses. – Helmut Apr 9 at 13:02

I had to solve the problem "Figure out if an IP address is local or not", and my first thought was to build a list of IPs that were local and then match against it. This is what led me to this question. However, I later realized there is a more straightfoward way to do it: Try to bind on that IP and see if it works.

_local_ip_cache = []
_nonlocal_ip_cache = []
def ip_islocal(ip):
    if ip in _local_ip_cache:
        return True
    if ip in _nonlocal_ip_cache:
        return False
    s = socket.socket()
    try:
        try:
            s.bind((ip, 0))
        except socket.error, e:
            if e.args[0] == errno.EADDRNOTAVAIL:
                _nonlocal_ip_cache.append(ip)
                return False
            else:
                raise
    finally:
        s.close()
    _local_ip_cache.append(ip)
    return True

I know this doesn't answer the question directly, but this should be helpful to anyone trying to solve the related question and who was following the same train of thought. This has the advantage of being a cross-platform solution (I think).

share|improve this answer

This will work on most linux boxes:

import socket, subprocess, re
def get_ipv4_address():
    """
    Returns IP address(es) of current machine.
    :return:
    """
    p = subprocess.Popen(["ifconfig"], stdout=subprocess.PIPE)
    ifc_resp = p.communicate()
    patt = re.compile(r'inet\s*\w*\S*:\s*(\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3})')
    resp = patt.findall(ifc_resp[0])
    print resp

get_ipv4_address()
share|improve this answer

A slight refinement of the commands version that uses the IP command, and returns IPv4 and IPv6 addresses:

import commands,re,socket

#A generator that returns stripped lines of output from "ip address show"
iplines=(line.strip() for line in commands.getoutput("ip address show").split('\n'))

#Turn that into a list of IPv4 and IPv6 address/mask strings
addresses1=reduce(lambda a,v:a+v,(re.findall(r"inet ([\d.]+/\d+)",line)+re.findall(r"inet6 ([\:\da-f]+/\d+)",line) for line in iplines))
#addresses1 now looks like ['127.0.0.1/8', '::1/128', '10.160.114.60/23', 'fe80::1031:3fff:fe00:6dce/64']

#Get a list of IPv4 addresses as (IPstring,subnetsize) tuples
ipv4s=[(ip,int(subnet)) for ip,subnet in (addr.split('/') for addr in addresses1 if '.' in addr)]
#ipv4s now looks like [('127.0.0.1', 8), ('10.160.114.60', 23)]

#Get IPv6 addresses
ipv6s=[(ip,int(subnet)) for ip,subnet in (addr.split('/') for addr in addresses1 if ':' in addr)]
share|improve this answer
import socket
socket.gethostbyname(socket.getfqdn())
share|improve this answer
Rather than only post a block of code, please explain why this code solves the problem posed. Without an explanation, this is not an answer. – Martijn Pieters Oct 20 '12 at 12:27

This answer is my personal attempt to solve the problem of getting the LAN IP, since socket.gethostbyname(socket.gethostname()) also returned 127.0.0.1. This method does not require Internet just a LAN connection. Code is for Python 3.x but could easily be converted for 2.x. Using UDP Broadcast:

import select
import socket
import threading
from queue import Queue, Empty

def get_local_ip():
        def udp_listening_server():
            s = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
            s.bind(('<broadcast>', 8888))
            s.setblocking(0)
            while True:
                result = select.select([s],[],[])
                msg, address = result[0][0].recvfrom(1024)
                msg = str(msg, 'UTF-8')
                if msg == 'What is my LAN IP address?':
                    break
            queue.put(address)

        queue = Queue()
        thread = threading.Thread(target=udp_listening_server)
        thread.queue = queue
        thread.start()
        s2 = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
        s2.setsockopt(socket.SOL_SOCKET, socket.SO_BROADCAST, 1)
        waiting = True
        while waiting:
            s2.sendto(bytes('What is my LAN IP address?', 'UTF-8'), ('<broadcast>', 8888))
            try:
                address = queue.get(False)
            except Empty:
                pass
            else:
                waiting = False
        return address[0]

if __name__ == '__main__':
    print(get_local_ip())
share|improve this answer

For a list of IP addresses on *nix systems,

import subprocess
co = subprocess.Popen(['ifconfig'], stdout = subprocess.PIPE)
ifconfig = co.stdout.read()
ip_regex = re.compile('((25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-4]|2[0-5][0-9]|[01]?[0-9][0-9]?))')
[match[0] for match in ip_regex.findall(ifconfig, re.MULTILINE)]

Though it's a bit late for this answer, I thought someone else may find it useful :-)

PS : It'll return Broadcast addresses and Netmask as well.

share|improve this answer
1  
FWIW, I find hostname -i and hostname -I (note the capital i) an easier alternative to ifconfig. The capital version returns all addresses, while the lower case returns the "default", which may be 127.0.1.1 (i.e. useless) – RobM Apr 4 '11 at 18:02
hostname -I (the one with the capital I) is not available in older versions of various operating systems. For example, CentOS 5.2. So, I guess the above script should be preferred to be on the safe side. PS : Thanks for the comment. The command is helpful for latest OS versions. – Kulbir Saini Apr 30 '11 at 6:13
Of note, the use of hostname as suggested by Rob is Linux specific. Solaris, for instance, will happily change your hostname to "-I" if you invoke the command given as root. – Eli Heady Nov 23 '11 at 1:19
Thank you for that note @EliHeady , that save million lives :D – V3ss0n Feb 28 '12 at 14:10

A machine can have multiple network interfaces (including the local loopback 127.0.0.1) you mentioned. As far as the OS is concerned, it's also a "real IP address".

If you want to track all of interfaces, have a look at the following Puthon package : http://alastairs-place.net/netifaces/

I think you can avoid having gethostbyname return 127.0.0.1 if you ommit the loopback entry from your hosts file. (to be verified).

share|improve this answer

Ok so this is Windows specific, and requires the installation of the python WMI module, but it seems much less hackish than constantly trying to call an external server. It's just another option, as there are already many good ones, but it might be a good fit for your project.

Import WMI

def getlocalip():
    local = wmi.WMI()
    for interface in local.Win32_NetworkAdapterConfiguration(IPEnabled=1):
        for ip_address in interface.IPAddress:
            if ip_address != '0.0.0.0':
                localip = ip_address
    return localip







>>>getlocalip()
u'xxx.xxx.xxx.xxx'
>>>

By the way, WMI is very powerful... if you are doing any remote admin of window machines you should definitely check out what it can do.

share|improve this answer

Another option is to ping whatismyip

the below script will return your public ip as a string - advantage is that they allow this http://www.whatismyip.com/faq/automation.asp

def findIP():
    headers = { 'User-Agent' : 'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:12.0)' \
                    + ' Gecko/20100101 Firefox/12.0' }
    return = urllib2.urlopen(
                urllib2.Request(
                        "http://automation.whatismyip.com/n09230945.asp",
                         None, headers )
                ).read()

executable version available at https://gist.github.com/2786450

share|improve this answer
import socket
[i[4][0] for i in socket.getaddrinfo(socket.gethostname(), None)]
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.