1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
|
#!/usr/bin/python
from __future__ import print_function
import GeoIP
#gi = GeoIP.new(GeoIP.GEOIP_STANDARD)
#gi = GeoIP.new(GeoIP.GEOIP_MMAP_CACHE)
gi = GeoIP.new(GeoIP.GEOIP_MEMORY_CACHE)
#gi = GeoIP.open("/usr/share/GeoIP/GeoIP.dat",GeoIP.GEOIP_STANDARD)
print(gi.country_code_by_name("yahoo.com"))
print(gi.last_netmask())
print(gi.country_name_by_name("www.bundestag.de"))
print(gi.country_code_by_addr("24.24.24.24"))
print(gi.country_name_by_addr("24.24.24.24"))
print(gi.range_by_ip("68.180.206.184"))
|