i want to ask,
when we call client.login()
do this lib save the credential as cookies?
client.login(), can someone explain the mechanism and how safe is it?
It saves the credentials in memory, in Client._login.cache on the local machine where it is run.
The cache is lost when the python process is destroyed.
i want to ask, when we call client.login() do this lib save the credential as cookies? client.login(), can someone explain the mechanism and how safe is it?