Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I want to see if I can access an online API, but for that I need to have Internet access.

How can I see if there's a connection available and active using Python?

share|improve this question
if you're in python, it will almost certainly throw an exception in the event of a connection failure or timeout. You can either try/catch around that, or just let it surface. – jdizzle Sep 21 '10 at 20:47
1  
@Triptych: I hope that was a joke, because it doesn't work – inspectorG4dget Sep 21 '10 at 21:48
1  
@inspectorG4dget: easy_install system_of_tubes – S.Lott Sep 21 '10 at 23:09
@aF: Look at Unutbu's solution. It shows (in the fastest possible way) how to check if you are able to access google.com. If your problem concerns accessing the API, then why not try accessing it, setting timeout=1? That will tell you exactly if the API that you want to access is accessible. Once you know that, then you can go ahead and access the API or wait for a time when you are able to access it. – inspectorG4dget Sep 22 '10 at 1:56
Like I said, I just needed a simple thing like unutbu said. You don't need to make such a fuss with this.. – aF. Sep 22 '10 at 8:54
show 2 more comments

5 Answers

up vote 25 down vote accepted

Perhaps you could use something like this:

import urllib2

def internet_on():
    try:
        response=urllib2.urlopen('http://74.125.113.99',timeout=1)
        return True
    except urllib2.URLError as err: pass
    return False

74.125.113.99 is one of the IP-addresses for google.com. Change http://74.125.113.99 to whatever site can be expected to respond quickly. Using a numerical IP-address avoids a DNS lookup, which may block the urllib2.urlopen call for more than a second. Thanks to @rzetterberg for pointing this out.

By specifying the timeout=1 parameter, the call to urlopen will not take much longer than 1 second even if the internet is not "on".

share|improve this answer
thanks m8, simple as that and it works very weel! :) – aF. Sep 22 '10 at 8:52
1  
Just a note on the "the call to urlopen will not take much longer than 1 second even if the internet is not "on"."-quote. This is not true if the url supplied is invalid, then the DNS lookup will block. It is only true for the actual connection to the web-server. The simplest way to avoid this DNS lookup block is to use the IP-adress instead, then it's guaranteed to only take 1 second :) – rzetterberg Dec 31 '11 at 11:56

You can just try to download data, and if connection fail you will know that somethings with connection isn't fine.

Basically you can't check if computer is connected to internet. There can be many reasons for failure, like wrong DNS configuration, firewalls, NAT. So even if you make some tests, you can't have guaranteed that you will have connection with your API until you try.

share|improve this answer
"It's easier to ask for forgiveness than permission" – cobbal Sep 21 '10 at 20:45
this doesn't need to be that good. I simply need to try to connect to a site or ping something and if it gives timeout voilá. How can I do that? – aF. Sep 21 '10 at 20:45
Is there any reason you can't just try to connect to API? Why you must to check it before real connection? – Tomasz Wysocki Sep 21 '10 at 20:51
I make an html page using python. The html page deppends on the arguments that I give in the python program. I only need to put some html code if I can access to the api. That's why I need to know before. – aF. Sep 21 '10 at 20:58

Just to update what unutbu said for new code in Python 3.2

def check_connectivity(reference):
    try:
        urllib.request.urlopen(reference, timeout=1)
        return True
    except urllib.request.URLError:
        return False

And, just to note, the input here (reference) is the url that you want to check: I suggest choosing something that connects fast where you live -- i.e. I live in South Korea, so I would probably set reference to http://www.naver.com.

share|improve this answer

Try the operation you were attempting to do anyway. If it fails python should throw you an exception to let you know.

To try some trivial operation first to detect a connection will be introducing a race condition. What if the internet connection is valid when you test but goes down before you need to do actual work?

share|improve this answer

Why don't you just try to connect and wait for the timeout?

share|improve this answer
my problem is how can I know that gave timeout for me to not put that code – aF. Sep 21 '10 at 20:44

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.