Python SDK
Managing Website Credentials
Use login session functions to manage your website credentials.
If this is confusing, you’re probably missing context. Check out Managing Website Credentials in the Getting Started section for more information.
create_login_session
The URL of the website you want to create a login session for.
A tuple containing:
- succeeded (bool): Whether the login session was created successfully
- login_session_url (str): URL to access the login session page where you can enter your credentials
Sample Usage
In this example, we’ll create a login session for a website that requires authentication.
restore_login_session
The path to the login session JSON file you want to restore.
Whether the login session was restored successfully.
Sample Usage
In this example, we’re restoring a login session for a website that requires authentication.
Was this page helpful?