Metadata-Version: 2.1
Name: fhir-tools
Version: 0.1.4
Summary: Toolbox for working with FHIR Resources and Types
Home-page: https://github.com/blanebf/fhir_tools
License: MIT
Keywords: medical,fhir,tools
Author: Pavel 'Blane' Tuchin
Author-email: blane.public@gmail.com
Requires-Python: >=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*, !=3.6.*
Classifier: Development Status :: 3 - Alpha
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Topic :: Software Development :: Libraries
Requires-Dist: six
Project-URL: Repository, https://github.com/blanebf/fhir_tools
Description-Content-Type: text/markdown

# fhir_tools

Simple set of tools for working with FHIR resources and complex types.

Basic usage:

```python
from fhir_tools import readers
from fhir_tools import resources

definitions = readers.defs_from_generated()
resources = resources.Resources(definitions)

name = resources.HumanName(family='Doe', given=['John'], text='John Doe')
patient = resource.Patient(name=[name], id='example')

print(patient.name[0].text)
```

