


# https://www.globalsino.com/ICs/page4853.html

from pynput.mouse import Button, Controller
import time

the_mouse = Controller()

time.sleep(2)
# Scroll 10 steps up
the_mouse.scroll(0, -10)
