- Create a
credentials.json
file. - Copy and paste the following code into the created file:
JSON
{ "username": "<your-email-address>", "password": "<your-password>" }
-
Retrieve the email address and password used for logging into the console. Use them as values in the following arguments:
- Set the value of the
username
argument to your email address. - Set the value of the
password
argument to your password.
- Set the value of the
- Authenticate from the created
credentials.json
file:Python
import up42 up42.authenticate(cfg_file="credentials.json")
-
Copy and paste the following code:
Python
import up42 up42.authenticate( username="<your-email-address>", password="<your-password>", )
-
Retrieve the email address and password used for logging into the console. Use them as values in the following arguments:
- Set the value of the
username
argument to your email address. - Set the value of the
password
argument to your password.
- Set the value of the