Metadata-Version: 2.1
Name: sparkautomapper.fhir
Version: 0.1.85
Summary: FHIR extensions for SparkAutoMapper
Home-page: https://github.com/imranq2/SparkAutoMapper.FHIR
Author: Imran Qureshi
Author-email: imranq2@hotmail.com
License: UNKNOWN
Description: # SparkAutoMapper.FHIR
        Add custom FHIR data types to SparkAutoMapper.
        
        ## Usage
        ```shell script
        pip install sparkautomapper.fhir
        ```
        
        ## Example
        ```python
        from spark_auto_mapper.automappers.automapper import AutoMapper
        from spark_auto_mapper.helpers.automapper_helpers import AutoMapperHelpers as A
        mapper = AutoMapperFhir(
            view="members",
            source_view="patients",
            keys=["member_id"]
        ).withResource(
            resource=F.patient(
                id_=A.column("a.member_id"),
                birthDate=A.date(
                    A.column("date_of_birth")
                ),
                name=A.list(
                    F.human_name(
                        use="usual",
                        family=A.column("last_name")
                    )
                ),
                gender="female"
            )
        )
        ```
        
        # Publishing a new package
        1. Create a new release
        2. The GitHub Action should automatically kick in and publish the package
        3. You can see the status in the Actions tab
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6,<4
Description-Content-Type: text/markdown
