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