hccinfhir 0.1.1__py3-none-any.whl → 0.1.3__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
hccinfhir/__init__.py CHANGED
@@ -1 +1,47 @@
1
- # Empty file to make the package importable
1
+ """
2
+ HCCInFHIR - HCC Algorithm for FHIR Resources
3
+
4
+ A Python library for processing FHIR EOB resources and calculating HCC risk scores.
5
+ """
6
+
7
+ # Main classes
8
+ from .hccinfhir import HCCInFHIR
9
+ from .extractor import extract_sld, extract_sld_list
10
+ from .filter import apply_filter
11
+ from .model_calculate import calculate_raf
12
+ from .datamodels import Demographics, ServiceLevelData, RAFResult, ModelName
13
+
14
+ # Sample data functions
15
+ from .sample_utils import (
16
+ SampleData,
17
+ get_eob_sample,
18
+ get_eob_sample_list,
19
+ get_837_sample,
20
+ get_837_sample_list,
21
+ list_available_samples
22
+ )
23
+
24
+ __version__ = "0.1.2"
25
+ __author__ = "Yubin Park"
26
+ __email__ = "yubin.park@mimilabs.ai"
27
+
28
+ __all__ = [
29
+ # Main classes
30
+ "HCCInFHIR",
31
+ "extract_sld",
32
+ "extract_sld_list",
33
+ "apply_filter",
34
+ "calculate_raf",
35
+ "Demographics",
36
+ "ServiceLevelData",
37
+ "RAFResult",
38
+ "ModelName",
39
+
40
+ # Sample data
41
+ "SampleData",
42
+ "get_eob_sample",
43
+ "get_eob_sample_list",
44
+ "get_837_sample",
45
+ "get_837_sample_list",
46
+ "list_available_samples"
47
+ ]