API to interact with a few AIND databases. We have two primary databases:
- A document database (DocDB) to store unstructured json documents. The DocDB contains AIND metadata.
- A relational database to store structured tables.
Basic installation:
pip install aind-data-access-api
The package includes optional features that require additional dependencies:
To use the MetadataDbClient
and other DocDB features:
pip install "aind-data-access-api[docdb]"
Note: The quotes are required when using zsh or other shells that interpret square brackets.
For RDS functionality:
pip install "aind-data-access-api[rds]"
- AWS Secrets management:
pip install "aind-data-access-api[secrets]"
- Helpers:
pip install "aind-data-access-api[helpers]"
- All features:
pip install "aind-data-access-api[full]"
More information can be found at readthedocs.