You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

6 lines
143 B

  1. >>> # using urllib2:
  2. >>> import urllib2
  3. >>> urllib2.urlopen("PING_URL")
  4. >>> # using requests:
  5. >>> import requests
  6. >>> requests.get("PING_URL")