摘要: 1 # getipinfo.py 2 def getipinfo(ip): 3 import requests 4 url='http://ip.taobao.com/service/getIpInfo.php?ip=' 5 r=requests.get(url+ip) 6 r1=r.json() 7 a={} 8 a['coun... 阅读全文
posted @ 2018-05-09 19:44 在星辰大海 阅读(506) 评论(0) 推荐(0)