Quickstart

We assume you already have credentials to access the Remote Lab. You can request access here.

1

Download the causalchamber package

You can install the package via pip, i.e.,

pip install causalchamber
2

Set up your credentials

Upon becoming a subscriber, you will receive your credentials through a secure link. Store them in a file with the following content

[api_keys]
user = <YOUR USERNAME>
password = <YOUR PASSWORD>

You can also load the credentials using environment variables (see the next step).

3

You're done!

Start a connection to the remote lab to see your available chambers and submit experiments

import causalchamber.lab as lab

rlab = lab.Lab(credentials_file = 'path/to/file')

Output

Next steps

Now you're ready to run experiments on the chambers! You can do so in two ways.

Last updated