Crear una alarma de sitio web usando Python

Usamos marcadores para recordar los sitios web importantes que creemos que usaremos con mucha frecuencia en el futuro.
Aquí hay un código Python simple que toma la URL del sitio web como su primera entrada y la hora en que desea abrirlo como la segunda entrada.

A medida que el tiempo alcance su valor de tiempo determinado, se abrirá automáticamente la URL que solicitó en el navegador web.
En este código, importaremos dos módulos de Python: Time y Webbrowser.

# Import the time module, it provides various time-related 
# functions. 
import time 
  
# Import the webbrowser module, it is used to 
# display various HTML documents to the user. 
import webbrowser 
  
# First Input: It is the time of the form 
# 'Hours:Minutes:Seconds' that you'll 
# use to set the alarm. 
Set_Alarm = input("Set the website alarm as H:M:S:") 
  
# Second Input: It is the URL that you want 
# to open on the given time. 
url = input("Enter the website you want to open:") 
  
# This is the actual time that we will use to print. 
Actual_Time = time.strftime("%I:%M:%S") 
  
# This is the while loop that'll print the time 
# until it's value will be equal to the alarm time 
while (Actual_Time != Set_Alarm): 
    print ("The time is " + Actual_Time) 
    Actual_Time = time.strftime("%I:%M:%S") 
    time.sleep(1) 
  
  
# This if statement plays the role when its the 
# alarm time and executes the code within it. 
if (Actual_Time == Set_Alarm): 
    print ("You should see your webpage now :-)")
  
    # We are calling the open() 
    # function from the webrowser module. 
    webbrowser.open(url) 

Puede contribuir al código yendo aquí .

Este artículo es una contribución de Shivam Sharma . Si le gusta GeeksforGeeks y le gustaría contribuir, también puede escribir un artículo usando contribuya.geeksforgeeks.org o envíe su artículo por correo a contribuya@geeksforgeeks.org. Vea su artículo que aparece en la página principal de GeeksforGeeks y ayude a otros Geeks.

Puede contribuir al código yendo aquí .

Publicación traducida automáticamente

Artículo escrito por GeeksforGeeks-1 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *