Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
python coding to run file
#1
Please help in the python command.

file location is below which has to be open and run command than save.
‪I:\new\ACR\FINAL AUTO ACER.xlsx

I want the python command to open the above file than press (ALT+F5) which is refress command
than wait for 15 seconds then save the same file and close.

thanks in advance.
Reply
#2
import time
import pyautogui
import os

# Specify the file path
file_path = r"I:\new\ACR\FINAL AUTO ACER.xlsx"

# Open the file
os.startfile(file_path)

# Wait for the file to open
time.sleep(2)  # Adjust this delay as needed

# Send ALT + F5 key to refresh
pyautogui.hotkey('alt', 'f5')

# Wait for 15 seconds
time.sleep(15)

# Save the file
pyautogui.hotkey('ctrl', 's')

# Wait briefly
time.sleep(2)

# Close the file (assuming it's already saved)
pyautogui.hotkey('alt', 'f4')
Make sure you have installed pyautogui (pip install pyautogui) before running this script. Adjust the timings (time.sleep) as necessary based on your system's responsiveness.
Gribouillis write Jun-18-2024, 11:18 AM:
Please post all code, output and errors (it it's entirety) between their respective tags. Refer to BBCode help topic on how to post. Use the "Preview Post" button to make sure the code is presented as you expect before hitting the "Post Reply/Thread" button.
Reply


Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020