mirror of
https://github.com/adulau/mmdb-server.git
synced 2024-11-07 11:36:24 +00:00
chg: [doc] update JSON output and CIRCL public service
This commit is contained in:
parent
d92638a137
commit
6623b12d67
1 changed files with 23 additions and 1 deletions
24
README.md
24
README.md
|
@ -31,6 +31,15 @@ Python 3.8+ is required to run the mmdb-server with some [additional requirement
|
|||
"build_db": "2022-01-23 16:13:05",
|
||||
"db_source": "GeoOpen-Country",
|
||||
"nb_nodes": 1156125
|
||||
},
|
||||
"ip": "188.65.220.25",
|
||||
"country_info": {
|
||||
"Country": "Belgium",
|
||||
"Alpha-2 code": "BE",
|
||||
"Alpha-3 code": "BEL",
|
||||
"Numeric code": "56",
|
||||
"Latitude (average)": "50.8333",
|
||||
"Longitude (average)": "4"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
@ -51,6 +60,15 @@ Python 3.8+ is required to run the mmdb-server with some [additional requirement
|
|||
"build_db": "2022-01-23 16:13:05",
|
||||
"db_source": "GeoOpen-Country",
|
||||
"nb_nodes": 1156125
|
||||
},
|
||||
"ip": "2a02:21d0::68:69:25",
|
||||
"country_info": {
|
||||
"Country": "Belgium",
|
||||
"Alpha-2 code": "BE",
|
||||
"Alpha-3 code": "BEL",
|
||||
"Numeric code": "56",
|
||||
"Latitude (average)": "50.8333",
|
||||
"Longitude (average)": "4"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
@ -58,7 +76,11 @@ Python 3.8+ is required to run the mmdb-server with some [additional requirement
|
|||
|
||||
# Output format
|
||||
|
||||
The output format is an array of JSON object (to support the ability to serve multiple geo location database). Each JSON object of the JSON array includes a `meta` and a `country` fields. The `country` give the geographic location of the IP address queried. The `meta` field includes the origin of the MMDB database which the the metadata.
|
||||
The output format is an array of JSON object (to support the ability to serve multiple geo location database). Each JSON object of the JSON array includes a `meta`, `country`, `ip` and `country_info` fields. The `country` give the geographic location of the IP address queried. The `meta` field includes the origin of the MMDB database which the the metadata. `ip` returns the queried IP address. `country_info` gives additional information about the country such as `Country`, `Alpha-2 code`, `Alpha-3 code`, `Numeric code`, Latitude and Longitude (average centric value).
|
||||
|
||||
# Public online version of mmdb-server
|
||||
|
||||
- [https://ip.circl.lu/](https://ip.circl.lu/) - lookup via [https://ip.circl.lu/geolookup/8.8.8.8](https://ip.circl.lu/geolookup/8.8.8.8)
|
||||
|
||||
# License
|
||||
|
||||
|
|
Loading…
Reference in a new issue