Aidbox client for python
Project description
aidbox-py
Aidbox client for python. This package provides an API for CRUD operations over Aidbox resources.
The library is based on fhir-py and the main difference between libraries in our case is the way they represent resource references (read more about differences).
Aidbox-py also going to support some Aidbox features like _assoc operation, AidboxQuery and so on.
Most examples from fhir-py readme also work for aidbox-py (but you need to replace FHIR client with AsyncAidboxClient/SyncAidboxClient). See base aidbox-py example below.
Getting started
Install
Most recent version:
pip install git+https://github.com/beda-software/aidbox-py.git
PyPi:
pip install aidboxpy
Async example
import asyncio
from aidboxpy import AsyncAidboxClient
from fhirpy.base.exceptions import (
OperationOutcome, ResourceNotFound, MultipleResourcesFound
)
async def main():
# Create an instance
client = AsyncAidboxClient(
'http://localhost:8080',
authorization='Bearer TOKEN'
)
# Search for patients
resources = client.resources('Patient') # Return lazy search set
resources = resources.search(name='John').limit(10).page(2).sort('name')
patients = await resources.fetch() # Returns a list of AsyncAidboxResource
# Get exactly one resource
try:
patient = await client.resources('Practitioner') \
.search(id='id').get()
except ResourceNotFound:
pass
except MultipleResourcesFound:
pass
# Validate resource
try:
await client.resource(
'Person',
custom_prop='123',
telecom=True
).is_valid()
except OperationOutcome as e:
print('Error: {}'.format(e))
# Create Organization resource
organization = client.resource(
'Organization',
name='beda.software',
active=False
)
await organization.save()
# Get patient resource by reference and delete
patient_ref = client.reference('Patient', 'new_patient')
patient_res = await patient_ref.to_resource()
await patient_res.delete()
# Iterate over search set and change organization
org_resources = client.resources('Organization').search(active=False)
async for org_resource in org_resources:
org_resource['active'] = True
await org_resource.save()
if __name__ == '__main__':
loop = asyncio.get_event_loop()
loop.run_until_complete(main())
API
Import library:
from aidboxpy import SyncAidboxClient
or
from aidboxpy import AsyncAidboxClient
To create AidboxClient instance use:
SyncAidboxClient(url, authorization='', extra_headers={})
or
AsyncAidboxClient(url, authorization='', extra_headers={})
Returns an instance of the connection to the server which provides:
- .reference(resource_type, id, reference, **kwargs) - returns
SyncAidboxReference
/AsyncAidboxReference
to the resource - .resource(resource_type, **kwargs) - returns
SyncAidboxResource
/AsyncAidboxResource
which described below - .resources(resource_type) - returns
SyncAidboxSearchSet
/AsyncAidboxSearchSet
SyncAidboxResource
/AsyncAidboxResource
provides:
- .serialize() - serializes resource
- .get_by_path(path, default=None) – gets the value at path of resource
- .save() - creates or updates resource instance
- .delete() - deletes resource instance
- .to_reference(**kwargs) - returns
SyncAidboxReference
/AsyncAidboxReference
for this resource
SyncAidboxReference
/AsyncAidboxReference
provides:
- .to_resource() - returns
SyncAidboxResource
/AsyncAidboxResource
for this reference
SyncAidboxSearchSet
/AsyncAidboxSearchSet
provides:
- .search(param=value)
- .limit(count)
- .page(page)
- .sort(*args)
- .elements(*args, exclude=False)
- .include(resource_type, attr=None, recursive=False, iterate=False)
- .revinclude(resource_type, attr=None, recursive=False, iterate=False)
- .has(*args, **kwargs)
- .assoc(elements)
async
.fetch() - makes query to the server and returns a list ofResource
filtered by resource typeasync
.fetch_all() - makes query to the server and returns a full list ofResource
filtered by resource typeasync
.fetch_raw() - makes query to the server and returns a raw BundleResource
async
.first() - returnsResource
or Noneasync
.get(id=None) - returnsResource
or raisesResourceNotFound
when no resource found or MultipleResourcesFound when more than one resource found (parameter 'id' is deprecated)async
.count() - makes query to the server and returns the total number of resources that match the SearchSet
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
File details
Details for the file aidboxpy-1.3.0.tar.gz
.
File metadata
- Download URL: aidboxpy-1.3.0.tar.gz
- Upload date:
- Size: 5.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 225f72ef59e99d05abf5ea26fdeec3f666ca92b2d3219fb064b76b5a56d3a28a |
|
MD5 | aaa1331d2592fd6992ea792d5b9d370c |
|
BLAKE2b-256 | 772be9f29ad0bf48afa9d95e2db00acde7040ab8dd35ba598679b98675210aa4 |
File details
Details for the file aidboxpy-1.3.0-py3-none-any.whl
.
File metadata
- Download URL: aidboxpy-1.3.0-py3-none-any.whl
- Upload date:
- Size: 5.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6a5b3e031272d1be06b2bbec5771fdae90f40b331822e191743e8b449389f674 |
|
MD5 | 3cf1abdd5fb369ebd86d0a165668a96d |
|
BLAKE2b-256 | f953e08364534813de33a0023f6be25c233fc5f4b3f08f48d40ed26872df85ac |