14
16

More than 5 years have passed since last update.

PythonでSendKeys

Last updated at Posted at 2014-07-15

ダウンロードファイル一覧 - Notepad++ Python Script - SourceForge.JPから

  • ExtraPythonLibs -> SendKeys.zip

をダウンロードし展開。

使用例
import SendKeys
SendKeys.SendKeys("{ENTER}")

もしimport出来ない場合はPATHが通っていない。

PATHの追加
import sys
sys.path.append('sendkeys')
import SendKeys

詳しい使い方はPythonから電卓を起動し勝手に計算してもらう - MTKの日記を見るとよい。

14
16
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
14
16