Python SDK for working with the Labstep API
::
pip install labstep
::
import labstep
user = labstep.login('myaccount@labstep.com', 'mypassword')
experiments = user.getExperiments(count=10)
my_experiment = experiments[0]
protocols = user.getProtocols() my_protocol = protocols[0]
result = my_experiment.addProtocol(my_protocol)
For full list of available methods see: