helix.fhir.client.sdk
Project description
helix.fhir.client.sdk
This SDK encapsulates:
- OAuth authentication and authorization
- Retry logic
- 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
Built Distribution
Close
Hashes for helix.fhir.client.sdk-0.1.41.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | acaad630871d34a0ba5f4d43a0d9075a3ba308975dbe6f087857152d6a0eb8f8 |
|
MD5 | 792b1f95723f022697d302280802ced3 |
|
BLAKE2b-256 | 3b9d019e78a75b2d5b1a000f1fc5c172538dd77f78021cceffdf303c5588741c |
Close
Hashes for helix.fhir.client.sdk-0.1.41-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | b15e0edf9aa59b8dc9b075f7d3464bcebdca85ac84d48825e7a332e0a9c74626 |
|
MD5 | 64fd9fe3a4b73a1fe267025943d4ca7f |
|
BLAKE2b-256 | 5281f88b4dc19dae8f856827c7efa1ac72199e1ae48e6b92a9cd58d540ed622f |