AutoTyping Program Using Python
#Belgin Android Follow Me At Instgram --> @belgin_official
from time import sleep from pynput.keyboard import Controller keyboard=Controller() file=open("Test1.txt","r") data=file.readlines() for i in data: keyboard.type(i) sleep(0.5) file.close()
Comments
Post a Comment