How would I use python to convert an IP address that comes as a str
to a decimal number and vice versa?
For example, for the IP 186.99.109.000 <type'str'>
, I would like to have a decimal or binary form that is easy to store in a database, and then retrieve it.
Advertisement
Answer
converting an IP string to long integer:
JavaScript
x
9
1
import socket, struct
2
3
def ip2long(ip):
4
"""
5
Convert an IP string to long
6
"""
7
packedIP = socket.inet_aton(ip)
8
return struct.unpack("!L", packedIP)[0]
9
the other way around:
JavaScript
1
3
1
>>> socket.inet_ntoa(struct.pack('!L', 2130706433))
2
'127.0.0.1'
3