Browse Source

Beautification of code output

master
Michael Heidelberger 6 years ago
parent
commit
6d87f98c35
  1. 8
      ip-api.py

8
ip-api.py

@ -11,10 +11,10 @@ def query_api(host):
json_data = requests.get(main_api + x).json()
# Print out wanted JSON data formatted nicely
print('\nCity\State: {}, {}\n'
'Country: {}\n'
'ISP: {}\n'
'IP: {}\n'
'MX: {}'.format(
'Country: {}\n'
'ISP: {}\n'
'IP: {}\n'
'MX: {}'.format(
json_data['city'],
json_data['regionName'],
json_data['country'],

Loading…
Cancel
Save