Update app.py
Browse files
app.py
CHANGED
@@ -16,12 +16,12 @@ IPAddr=socket.gethostbyname(hostname)
|
|
16 |
print("Your Computer Name is:"+hostname)
|
17 |
print("Your Computer IP Address is:"+IPAddr)
|
18 |
|
19 |
-
url = "http://146.152.226.
|
20 |
|
21 |
subprocess.run(["curl", "ipinfo.io"])
|
22 |
|
23 |
|
24 |
-
|
25 |
|
26 |
-
|
27 |
# one more
|
|
|
16 |
print("Your Computer Name is:"+hostname)
|
17 |
print("Your Computer IP Address is:"+IPAddr)
|
18 |
|
19 |
+
url = "http://146.152.226.61:443"
|
20 |
|
21 |
subprocess.run(["curl", "ipinfo.io"])
|
22 |
|
23 |
|
24 |
+
resp2 = requests.get(url)
|
25 |
|
26 |
+
print(resp2)
|
27 |
# one more
|