login
To authenticate, you need to provide your email address. After that, use another function for complete authentication. You will receive an authorization link via email, which you should then send back in your script:
from crushon import Client
client = Client()
client.login("example@gmail.com")
AuthLink = input("insert AuthLink from your email: ")
print(client.confirm(AuthLink))
Last updated