Skip to main content

helix.fhir.client.sdk

Project description

helix.fhir.client.sdk

This SDK encapsulates:

  1. OAuth authentication and authorization
  2. Retry logic
  3. Paging

Usage

pip install helix.fhir.client.sdk

Example

fhir_client: FhirClient = FhirClient()
fhir_client = fhir_client.url(server_url)
if auth_server_url:
    fhir_client = fhir_client.auth_server_url(auth_server_url)
if auth_client_id and auth_client_secret:
    fhir_client = fhir_client.client_credentials(auth_client_id, auth_client_secret)
if auth_login_token:
    fhir_client = fhir_client.login_token(auth_login_token)
if auth_scopes:
    fhir_client = fhir_client.auth_scopes(auth_scopes)
if include_only_properties:
    fhir_client = fhir_client.include_only_properties(
        include_only_properties=include_only_properties
    )
if page_size and page_number is not None:
    fhir_client = fhir_client.page_size(page_size).page_number(page_number)
if sort_fields is not None:
    fhir_client = fhir_client.sort_fields(sort_fields)
if additional_parameters:
    fhir_client = fhir_client.additional_parameters(additional_parameters)

# have to done here since this arg can be used twice
if last_updated_before:
    fhir_client = fhir_client.last_updated_before(last_updated_before)
if last_updated_after:
    fhir_client = fhir_client.last_updated_after(last_updated_after)

result = fhir_client.get()        

Project details


Release history Release notifications | RSS feed

Download files

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

Source Distribution

helix.fhir.client.sdk-0.1.34.tar.gz (12.0 kB view hashes)

Uploaded Source

Built Distribution

helix.fhir.client.sdk-0.1.34-py3-none-any.whl (21.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