Managing Website Credentials
Users can use Simplex with their own login credentials. This is useful when accessing websites that require authentication like internal tooling, real estate listings, or accounts receivable/payable software.
Creating And Storing Login Data
Once you install the Python SDK, you can run our CLI command to create and open a login session for a given website.
You must set your SIMPLEX_API_KEY
environment variable before running the command.
Creating the login session.
After you log in, you can click the button on the page to capture the login session. This will download a JSON containing your session data.
Downloading the login session JSON.
Using Login Data
After you download the login session JSON, you can use the create_session method to restore the login session on session creation.
Let’s say we’ve downloaded the login session JSON for Zillow and saved it in sessions/zillow_login_session.json
.
You can alternatively pass the login session JSON to the create_session
method as a string.
Using the login session JSON to restore the session.