Is there any way to pass master password automatically/programmatically. as per the below code we have to input password manually, can we avoid this
import keyring
keyring.set_password('testuser','testuser','testpassword')
test = keyring.get_password('testuser', 'testuser')
print(test)