简体   繁体   中英

Can I run a python script from a keyboard shortcut?

I want to be able to run a python script like a keyboard macro, just by pressing a certain combination of buttons. Is it possible, if yes, how?

Depending on your operating system there will be different ways to run scripts via hot keys. If you create and auto run a script with "key listeners" you can use that to execute other scripts. There are a few libraries you could use and I've attached a couple of them below.

PyAutoGUI

Pynput

Yes, if you're on a Mac, you can create a 'quick action' in Automate using an apple script to tell Terminal to do something like 'tell application "Terminal" to do script "python myscript.py"'. Then, you can go into your keyboard shortcut preferences and add a hotkey to the action.

you click f5 if you have windows

Try Ctrl + F5 . It worked for me.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM