Python API - How do we view the names of all the Datasets in a given study using an API call?

LabKey Support Forum
Python API - How do we view the names of all the Datasets in a given study using an API call? Chidi  2018-10-29 08:27
Status: Closed
 

How do we view the names of all the datasets in a study? Thank you very much.

 
 
Jon (LabKey DevOps) responded:  2018-11-12 14:41
Hello,

If you are using the Python API, you can use the select_rows() call against the "study" schema and the "Datasets" table.

The study.Datasets table will allow you to see all of the datasets for the specific study container you're looking at.

For more details on setting up a select_rows() call, please refer to the following example:

https://github.com/LabKey/labkey-api-python/blob/master/samples/query_examples.py

Regards,

Jon