Home > Software design >  How can i make a program that changes your keybored language and layout with python
How can i make a program that changes your keybored language and layout with python

Time:09-19

I am going to make this simple, what I am trying to build is a program that can change your computers keyboards language, I want to make these program cause my country's language is not supported by most keyboards cause it has more than 70 letters, I will get over this issue by making some letters a combination of two letters or more.

I want to build this program with python if possible.

issues:-

  1. how can I overwrite what the keyboared writes with python keyboared module?
  2. how can I use two letter combinations to change the letter written?

CodePudding user response:

This question is a duplicate of many other questions on StackOverflow, so please check before asking such questions. For your convenience I am listing a few links here:

change-keyboard-layout-with-python

programmatically-change-keyboard-to-dvorak

CodePudding user response:

Very easy you can just use the pyautogui module give some time and you will be able to do it.

Here is the documentation btw: https://pyautogui.readthedocs.io/en/latest/

  • Related