tkinter

Informatico de Neurodesarrollo infneurodcr.mtz at infomed.sld.cu
Mon Mar 18 12:00:06 EDT 2019


Hello friends:

I am a beginner on programming in python.

I want make a simple program that test continuously (every 5 seg) the 
connection  to internet and change the background color when are not 
available. I try this , but not work properly:

  #!/usr/bin/env python3
# -*- coding: utf-8 -*-
#
from tkinter import *
import socket, time

def DetectarConexion():
     testConn = socket.socket(socket.AF_INET,socket.SOCK_STREAM)
     try:
         testConn.connect(('8.8.8.8', 80))
         testConn.close()
         return True
     except:
         testConn.close()
         return False

root = Tk()
root.title("Conexión")
root.geometry("80x50")

while True:
     if DetectarConexion():
         # Background:Green
         root.config(background="#38EB5C")
     else:
         # Background:Red
         root.config(background="#F50743")
     time.sleep(5)

root.mainloop()


Any ideas, will be welcome.


T.I.A


-- 

Ing. Jesús Reyes Piedra
Admin Red Neurodesarrollo,Cárdenas
La caja decía:"Requiere windows 95 o superior"...
Entonces instalé LINUX.


--
Este mensaje le ha llegado mediante el servicio de correo electronico que ofrece Infomed para respaldar el cumplimiento de las misiones del Sistema Nacional de Salud. La persona que envia este correo asume el compromiso de usar el servicio a tales fines y cumplir con las regulaciones establecidas

Infomed: http://www.sld.cu/




More information about the Python-list mailing list