You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
client = Client(Username='userhere', blocking=False)
client.api.login('passhere')
ai = client.AuthInfo
print(ai)
This code yields None, while using the same credentials used to login via the UI. Is there anything special I need to do on my end to get this working? Tried skimming through source code to no avail.
Python 3.7
protonmail 0.1.5
client = Client(Username='userhere', blocking=False)
client.api.login('passhere')
ai = client.AuthInfo
print(ai)
This code yields
None, while using the same credentials used to login via the UI. Is there anything special I need to do on my end to get this working? Tried skimming through source code to no avail.