Kvikontent commited on
Commit
b66f72d
·
verified ·
1 Parent(s): 754fdf2

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -33,7 +33,7 @@ if get == "Input":
33
  if sub:
34
  data = get_location(ip)
35
  if data:
36
- st.header(f"""Information that we searched for this ip address: {data['ip']}
37
  City: {data['city']}
38
  Region: {data['region']}
39
  Country: {data['country']}
@@ -51,7 +51,7 @@ if get == "Get yours":
51
  if sub:
52
  data = get_location(ip)
53
  if data:
54
- st.header(f"""Information that we searched for this ip address: {data['ip']}
55
  City: {data['city']}
56
  Region: {data['region']}
57
  Country: {data['country']}
 
33
  if sub:
34
  data = get_location(ip)
35
  if data:
36
+ st.write(f"""Information that we searched for this ip address: {data['ip']}
37
  City: {data['city']}
38
  Region: {data['region']}
39
  Country: {data['country']}
 
51
  if sub:
52
  data = get_location(ip)
53
  if data:
54
+ st.write(f"""Information that we searched for this ip address: {data['ip']}
55
  City: {data['city']}
56
  Region: {data['region']}
57
  Country: {data['country']}