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
  • 11
  • 3

1 Answers1

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

the above code will simply launch the virtual keyboard.

Buddy
  • 10,627
  • 5
  • 40
  • 57
suhail
  • 11
  • 3