Skip to content

Instantly share code, notes, and snippets.

@alibabayev0
Created February 13, 2023 19:11
Show Gist options
  • Save alibabayev0/f9aa80e8519d89ec2feb8f49b4ef038f to your computer and use it in GitHub Desktop.
Save alibabayev0/f9aa80e8519d89ec2feb8f49b4ef038f to your computer and use it in GitHub Desktop.
KeyboardMaster
## Keyboard master code
import pyautogui
import time
import os
with open('need_copy_text.txt', 'r') as file:
content = file.read() ## The file where we will take the text.
time.sleep(8) ## You can set, how many minutes you want to break/stop time to focus on field or etc.
pyautogui.typewrite(content, interval = 0.03) ## And it will write your text automatically as u want to output.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment