<span style="font-family: Arial, Helvetica, sans-serif; background-color: rgb(255, 255, 255);">我欺骗了你, 不是一句话,因为这是个函数, 所以有2句, 再加些import那句更多了。</span>
从这http://www.ip138.com/获得数据
虽然普遍回去用淘宝的,但淘宝不会告诉我单位,比如我不仅想要知道这ip是南京的
我还更想知道他是不是南京大学的。
所以我自己写了, 调好正则相当痛快
就这句代码了
def ip2loc( ip ): print re.search(re.compile("\"ul1.{18}(.*?)</li>"), requests.get('http://www.ip138.com/ips138.asp?ip='+ip).content).group(1)
看看效果吧
In [45]: ip2loc('202.119.32.7') 江苏省南京市 南京大学鼓楼校区 教育网
seems good
时间: 2024-10-11 07:30:26