Created
February 13, 2016 21:17
-
-
Save rowanphipps/bece0f5abc2a05b4aa80 to your computer and use it in GitHub Desktop.
find ip address in python
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import netifaces | |
import struct | |
def get_ip(version=4): | |
""" | |
Returns the ip address of this computer | |
""" | |
v = 2 | |
# if version == 4: | |
# v = netifaces.AF_INET | |
# elif version == 6: | |
# v = netifaces.AF_INET6 | |
# else: | |
# raise ValueError("version should equal 4 or 6") | |
for i in netifaces.interfaces(): | |
d = netifaces.ifaddresses(i) | |
if v in d.keys(): | |
dd = d[v][0] | |
if "broadcast" in dd.keys(): | |
# print i | |
# print dd | |
return dd["addr"] | |
def pack_ip(ip=None): | |
if ip == None: | |
ip == get_ip() | |
parts = map(int, get_ip().split(".")) | |
out = struct.pack("!BBBB", parts[0], parts[1], parts[2], parts[3]) | |
return out | |
def unpack_ip(data): | |
return ".".join(map(str, struct.unpack("!BBBB", data))) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment