summaryrefslogtreecommitdiff
path: root/inbox_for_todoist.widget/online.py
diff options
context:
space:
mode:
Diffstat (limited to 'inbox_for_todoist.widget/online.py')
-rw-r--r--inbox_for_todoist.widget/online.py19
1 files changed, 19 insertions, 0 deletions
diff --git a/inbox_for_todoist.widget/online.py b/inbox_for_todoist.widget/online.py
new file mode 100644
index 0000000..6fb471b
--- /dev/null
+++ b/inbox_for_todoist.widget/online.py
@@ -0,0 +1,19 @@
+# -*-coding:utf-8 -*
+from urllib.error import URLError
+import urllib.request
+
+def main():
+ loop_value = 0
+ while loop_value < 5:
+ try:
+ urllib.request.urlopen("http://www.google.com")
+ loop_value = 6 # Loops ends, cant +1 up to 6, online must be true
+ except URLError as e:
+ loop_value += 1 # Loops ends, all attempts are out, online must be false
+ if loop_value == 6:
+ return(True)
+ else:
+ return(False)
+
+if __name__ == '__main__':
+ main()