0
open -a KeyboardViewer

I found that it's possible to launch on screen keyboard via the above terminal command.

I am trying to open the OSK from my python code. How can I launch it ( osX)

suhail
  • 21
  • 4

1 Answers1

0
import os
cmd = 'open -a KeyboardViewer'
os.system(cmd)

the above code will simply launch the virtual keyboard.

Buddy
  • 10,874
  • 5
  • 41
  • 58
suhail
  • 21
  • 4