diff --git a/ip.py b/ip.py index 229cc99..2bdabbe 100755 --- a/ip.py +++ b/ip.py @@ -18,7 +18,7 @@ def main(): gi = pygeoip.GeoIP('GeoLiteCity.dat') geo_info = gi.record_by_addr(client_ip) geo_info['ip'] = client_ip - print(json.dumps(geo_info)) + print(json.dumps(geo_info, indent=2)) else: print(client_ip)