I tried to get a page contents of the following URL
http://username:5000/check/e9549df676ecca6344ad8ba068d05a6d
So I tried to write the following script but with no success
import http.client
conn = http.client.HTTPSConnection("username",5000)
conn.request("GET", "/check/e9549df676ecca6344ad8ba068d05a6d")
r1 = conn.getresponse()
print(r1.read())
When I run the script it would just hang, could anyone help me please?
Thank you