Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #62049 > unrolled thread
| Started by | Larry Martell <larry.martell@gmail.com> |
|---|---|
| First post | 2013-12-16 06:54 -0500 |
| Last post | 2013-12-16 06:54 -0500 |
| Articles | 1 — 1 participant |
Back to article view | Back to comp.lang.python
This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by
below is the oldest one visible, not the original post.
Re: Question RE urllib Larry Martell <larry.martell@gmail.com> - 2013-12-16 06:54 -0500
| From | Larry Martell <larry.martell@gmail.com> |
|---|---|
| Date | 2013-12-16 06:54 -0500 |
| Subject | Re: Question RE urllib |
| Message-ID | <mailman.4206.1387194895.18130.python-list@python.org> |
On Mon, Dec 16, 2013 at 6:40 AM, Jeff James <jeff@jeffljames.com> wrote: > So I'm using the following script to check our sites to make sure they are > all up and some of them are reporting they are "down" when, in fact, they > are actually up. These sites do not require a logon in order for the home > page to come up. Could this be due to some port being blocked internally ? > Only one of the sites reporting as down is "https" but all are internal > sites. Is there some other component I should be including in the script ? > There are about 30 or 40 sites that I have listed in all. I just use those > in the following script as examples. Thanks > > import urllib > > sites = ["http://www.amazon.com/", "https://internalsite.com/intranet.html", > etc.] > > for site in sites: > try: > urllib.urlopen(site) > print site + " " > except Exception, e: > print site + " is down" In the handler print out the exception you are getting.
Back to top | Article view | comp.lang.python
csiph-web