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.32.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3f825b0f8b7f83c1c17564609be0ede38dc0fa852e3229f67829182a8d3755a4 |
|
MD5 | 814dd037266eddb95b017b373d3375c0 |
|
BLAKE2b-256 | 8f1c945646c1e8f5a03e7bee696a7936672dfaba829c2ef73733261c9515bb3c |
Close
Hashes for helix.fhir.client.sdk-0.1.32-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | eec02b4f2b45b24008195a47a108fe3ae765db79d96704ed9cda46ac592b9df5 |
|
MD5 | 28ce42da01c3176c9c99222f0c28dd0e |
|
BLAKE2b-256 | 45a379183ff353e6bbfdbbebe79e8c4e1bbc471c8bf7d9a145cee196aad8ab9e |