Ambrahealth python SDK


Keywords
ambrahealth, ambra
License
Apache-2.0
Install
pip install ambra-sdk==3.22.4.0.post1

Documentation

Ambra-SDK


Welcome to ambra-sdk library for intract with ambrahealth service and storage api.

Quickstart

pip install ambra-sdk

Running

from ambra_sdk.api import Api
from ambra_sdk.models import Study
from ambra_sdk.service.filtering import Filter, FilterCondition
from ambra_sdk.service.sorting import Sorter, SortingOrder

api = API.with_creds(url, username, password)
user_info = api.Session.user().get()

studies = api \
    .Study \
    .list() \
    .filter_by(
        Filter(
            'phi_namespace',
            FilterCondition.equals,
            user_info.namespace_id,
        ),
    ) \
    .only([Study.study_uid, Study.image_count]) \
    .sort_by(
        Sorter(
            'created',
            SortingOrder.ascending,
        ),
    ) \
    .all()

for study in studies:
    print(study.study_uid, study.image_count)
 

License

Ambra-SDK is licensed under the terms of the Apache-2.0 License (see the file LICENSE).