前言目前,免费的 ip 地址库不多,收费的感觉用起来不爽。淘宝有个 api 接口,但是有访问量限制。于是想到用 node 做一个自己的 api 接口。先从自己的数据库查,如果查不到的话,就到淘宝的接口查,查到后插入到自己的数据库。需要的模块
express
requset
mongoose
代码function get_local_by_ip(req, res) {
ip_local.fin...
http://int.dpool.sina.com.cn/iplookup/iplookup.php?format=js返回值数据格式:var remote_ip_info = {“ret”:1,”start”:”59.37.164.179″,”end”:”59.37.165.17″,”countr...
#!/bin/bash
ipp(){
exec<$1
whilereada
do
string1=`curl-s"http://www.ip138.com/ips138.asp?ip=${a}&action=2"|iconv-fgb2312-tutf-8|grep‘<ulclass="ul1"><li>‘|awk-F‘[<>]+‘‘{printsubstr($5,7)}‘`
echo$a
echo-e"\033[44;37;5m$string1\033[0m"..
分类:
系统相关 时间:
2015-02-26 16:49:11
阅读次数:
185
百度提供有查询 ip 归属地的开放接口,当你在搜索框中输入一个 ip 地址进行搜索,就会打开由 ip138 提供的百度框应用,你能够在框内直接输入 ip 地址查询。我查看了页面请求,提取出查询 ip 归属地的接口,据此使用 Qt 写了个简单的 ip 归属地查询应用。能够在电脑和 Android .....
分类:
移动开发 时间:
2015-01-23 20:01:17
阅读次数:
274
本来想调用阿里的ip接口查询ip归属地。结果发现阿里的接口非常不给力,主要是不准确,不过是免费的且有地区和ISP的信息。以下是实现代码#-*-coding:utf-8-*-
importrequests
defcheckip(ip):
URL=‘http://ip.taobao.com/service/getIpInfo.php‘
try:
r=requests.get(URL,para..
分类:
编程语言 时间:
2014-12-10 14:30:31
阅读次数:
207
使用hadoop实现IP归属地的统计,为分析用户的地区分布提供数据...
分类:
其他好文 时间:
2014-10-29 17:14:00
阅读次数:
263
今天同事给了6W多个IP叫我查出ISP和归属地,果断用pythonurllib2搞之,数据库用是淘宝的API接口#!/usr/bin/python
#coding:utf-8
importurllib2
importjson
importtime
url=‘http://ip.taobao.com/service/getIpInfo.php?ip=‘
defcheckTaobaoIP(ip):
try:
response=urllib2...
分类:
编程语言 时间:
2014-08-01 20:06:12
阅读次数:
256
10.1 GET请求10.2 XML解析10.3 JSON解析10.4 POST请求10.1 GET请求通过一个第三方提供的云服务,查询IP归属地:http://www.youdao.com/smartresult-xml/search.s?type=ip&q=218.241.121.186它的返回...
分类:
移动开发 时间:
2014-07-14 09:13:51
阅读次数:
372