json output
This commit is contained in:
parent
7f6b5dda21
commit
1f7ae3959c
9
ip.py
9
ip.py
@ -9,21 +9,16 @@ def header():
|
||||
|
||||
def main():
|
||||
params = cgi.FieldStorage()
|
||||
out = {
|
||||
"ip": None,
|
||||
"country": None,
|
||||
"continent": None,
|
||||
"location": None
|
||||
}
|
||||
header()
|
||||
client_ip = os.environ["REMOTE_ADDR"]
|
||||
if(len(params) > 0):
|
||||
for key in params:
|
||||
if key == "geo":
|
||||
import json
|
||||
gi = pygeoip.GeoIP('GeoLiteCity.dat')
|
||||
geo_info = gi.record_by_addr(client_ip)
|
||||
geo_info['ip'] = client_ip
|
||||
print(geo_info)
|
||||
print(json.dumps(geo_info))
|
||||
else:
|
||||
print(client_ip)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user