forked from GithubBackups/healthchecks
8 lines
151 B
Plaintext
8 lines
151 B
Plaintext
# urllib with python 3.x:
|
|
import urllib.request
|
|
urllib.request.urlopen("PING_URL")
|
|
|
|
# urllib with python 2.x:
|
|
import urllib
|
|
urllib.urlopen("PING_URL")
|