Skip to main content

Ambrahealth python SDK

Project description

Ambra-SDK

License PyPI version


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

Read the docs

Documentation: https://dicomgrid.github.io/sdk-python/index.html

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

ambra-sdk-3.20.6.0.post2.tar.gz (132.8 kB view hashes)

Uploaded Source

Built Distribution

ambra_sdk-3.20.6.0.post2-py3-none-any.whl (186.8 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page