VOOZH about

URL: https://www.geeksforgeeks.org/python/how-to-keep-your-pc-awake-automatically-using-python/

⇱ How to keep your PC awake automatically using Python? - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

How to keep your PC awake automatically using Python?

Last Updated : 3 Jan, 2021

In this article, we are going to discuss how to keep your PC awake using Python. In order to perform this task, we are going to use an external Python module. 

Here we will be using a python package PyAutoGUI (cross-platform GUI automation Python module used to programmatically control the mouse & keyboard. ) This will keep your PC awake forever till you close the program. Use the below command to install this module:

pip install pyautogui

After installing the module execute the below program:

On executing the above program, you will see that after the specified time in time.sleep() the mouse pointer moves to extreme left corner (can customize this too by mentioning the co-ordinates inside pyautogui.moveTo() to your preferred x co-ordinate and y co-ordinate of the screen and starts moving down.

Comment