As a beginner in Python, I really don't know what I'm doing wrong here?
I would like to work with pyautogui:
 >>> import pyautogui
 >>> pyautogui.PAUSE = 1
 >>> pyautogui.FAILSAFE = True
 >>> pyautogui.size()
 Traceback (most recent call last):
  File "<pyshell#6>", line 1, in <module>
    pyautogui.size()
 AttributeError: module 'pyautogui' has no attribute 'size'
Don't know why it doesn't show my resolution? And in general, pyautogui doesn't work with commands like:
 >>> pyautogui.moveTo(100, 100, duration=0.25)
Traceback (most recent call last):
  File "<pyshell#8>", line 1, in <module>
    pyautogui.moveTo(100, 100, duration=0.25)
AttributeError: module 'pyautogui' has no attribute 'moveTo'
>>> 
I'm sure I installed pip.
 
     
    