For the complete documentation index, see llms.txt. This page is also available as Markdown.

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')

If you stored your credentials in environment variables, e.g., USER and KEY

import os
import causalchamber.lab as lab

rlab = lab.Lab(credentials=(os.getenv('USER'), os.getenv('KEY')))

Output

Next steps

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

Last updated