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.36.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | 59d83736448b193c15a26af2f2980e970ffc0913cea5306af435be8c4dfbc320 |
|
MD5 | adf4c6a9cac73b62abf8655790221a31 |
|
BLAKE2b-256 | f7bae413e9020aa81f2605760ba1fa5f87177a3bd62103fa8af945b0d5763a6d |
Close
Hashes for helix.fhir.client.sdk-0.1.36-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | f13c800c4932ca2a8170db68645d8fc7aea2a4e62e7792bbbdcaf664744af895 |
|
MD5 | dfa1982aa8ff24a1fd176ce62a04ce37 |
|
BLAKE2b-256 | 01268927932b2b382e78171f98c66866e4527f8c8dfe0ebfb5655d6ecda751e7 |