Как взять пароль с помощью pyautogui

import pyautogui
a = pyautogui.password(text='', title='', default='', mask='*')
print(a)
Adventurous Alligator