qgao007 commited on
Commit
20fd149
1 Parent(s): f6c533e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -2
app.py CHANGED
@@ -24,9 +24,11 @@ url = "https://146.152.226.61:443"
24
  subprocess.run(["curl", "ipinfo.io"])
25
 
26
  resp1 = requests.get("http://3.231.107.102")
27
- print(resp1)
 
28
 
29
  resp2 = requests.get(url)
30
 
31
- print(resp2)
 
32
  # one more
 
24
  subprocess.run(["curl", "ipinfo.io"])
25
 
26
  resp1 = requests.get("http://3.231.107.102")
27
+ print(resp1.status_code)
28
+ print(resp1.text)
29
 
30
  resp2 = requests.get(url)
31
 
32
+ print(resp2.status_code)
33
+ print(resp2.text)
34
  # one more