hccinfhir 0.1.1__py3-none-any.whl → 0.1.2__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 +47 -1
- hccinfhir/data/ra_eligible_cpt_hcpcs_2026.csv +5130 -5107
- hccinfhir/data/ra_hierarchies_2026.csv +12 -0
- hccinfhir/filter.py +17 -19
- hccinfhir/hccinfhir.py +2 -1
- hccinfhir/sample_utils.py +252 -0
- hccinfhir/samples.py +252 -0
- {hccinfhir-0.1.1.dist-info → hccinfhir-0.1.2.dist-info}/METADATA +32 -3
- {hccinfhir-0.1.1.dist-info → hccinfhir-0.1.2.dist-info}/RECORD +11 -9
- {hccinfhir-0.1.1.dist-info → hccinfhir-0.1.2.dist-info}/WHEEL +0 -0
- {hccinfhir-0.1.1.dist-info → hccinfhir-0.1.2.dist-info}/licenses/LICENSE +0 -0
hccinfhir/__init__.py
CHANGED
|
@@ -1 +1,47 @@
|
|
|
1
|
-
|
|
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
|
+
]
|