Preview:
from pynput.keyboard import Key, Controller
import time

b = Controller()
time.sleep(10)
while True:
    for ai in "Wabba labba dub dub! Pickle Botez":
        b.press(ai)
        b.release(ai)
    b.press(Key.enter)
    b.release(Key.enter)
downloadDownload PNG downloadDownload JPEG downloadDownload SVG

Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!

Click to optimize width for Twitter