Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@samsee
Created December 22, 2019 08:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save samsee/a0e933d5a0db800644cb88d5e7b5292c to your computer and use it in GitHub Desktop.
Save samsee/a0e933d5a0db800644cb88d5e7b5292c to your computer and use it in GitHub Desktop.
Auto PageDown Python script
from pynput.keyboard import Key, Controller
from time import sleep
keyboard = Controller()
sleep(5)
while(True):
keyboard.press(Key.page_down)
keyboard.release(Key.page_down)
sleep(1.2)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment