Python implementation query IP address location

Source: Internet
Author: User
Tags get ip
Use the IP138 database to query the geographic location for the domain name or IP address.

#-*-CODING:GBK-*-import Urllib2import re try: while  True:    ipaddr = Raw_input ("Enter IP Or Domain Name:")    if IPAddr = = "" or ipaddr = = ' exit ': Break    else:      url = "http://www.ip138.com/ips138.asp?ip=%s&action=2"% ipaddr      u = urllib2.urlopen (URL)      s = u.read ()      #Get IP address      ip = re.findall (R ' \d{1,3}\.\d{1,3}\.\d{ 1,3}\.\d{1,3} ', s)      print "\n****** Below Result from IP138 Database * * * * *"      print "IP address:", ip[0]      #Get IP Address location      result = Re.findall (R ' (
  • .*?
  • ) ', s) for i in result: print i[4:-5] print "*" *45 print "\ n" except: print "Not Data Find"

    The above is the whole content of this article I hope you can enjoy.

  • Related Article

    Contact Us

    The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

    If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.