Advertisement
Guest User

Untitled

a guest
Jan 25th, 2020
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. def put_sign(self):
  2. time.sleep(0.01)
  3. keyboard.send('shift', do_press=True, do_release=False)
  4. time.sleep(0.01)
  5. mouse.click(button='right')
  6. time.sleep(0.01)
  7. keyboard.release('shift')
  8. time.sleep(0.1)
  9.  
  10. def paste_data_and_esc(self, data):
  11. keyboard.write(data.rstrip())
  12. time.sleep(0.5)
  13. keyboard.send('esc')
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement