medicafe 0.250728.8__py3-none-any.whl → 0.250805.0__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.
Potentially problematic release.
This version of medicafe might be problematic. Click here for more details.
- MediBot/MediBot.bat +233 -19
- MediBot/MediBot.py +138 -46
- MediBot/MediBot_Crosswalk_Library.py +127 -623
- MediBot/MediBot_Crosswalk_Utils.py +618 -0
- MediBot/MediBot_Preprocessor.py +72 -17
- MediBot/MediBot_Preprocessor_lib.py +470 -76
- MediBot/MediBot_UI.py +32 -17
- MediBot/MediBot_dataformat_library.py +68 -20
- MediBot/MediBot_docx_decoder.py +120 -19
- MediBot/MediBot_smart_import.py +180 -0
- MediBot/__init__.py +89 -0
- MediBot/get_medicafe_version.py +25 -0
- MediBot/update_json.py +35 -6
- MediBot/update_medicafe.py +19 -1
- MediCafe/MediLink_ConfigLoader.py +160 -0
- MediCafe/__init__.py +171 -0
- MediCafe/__main__.py +222 -0
- MediCafe/api_core.py +1098 -0
- MediCafe/api_core_backup.py +427 -0
- MediCafe/api_factory.py +306 -0
- MediCafe/api_utils.py +356 -0
- MediCafe/core_utils.py +450 -0
- MediCafe/graphql_utils.py +445 -0
- MediCafe/logging_config.py +123 -0
- MediCafe/logging_demo.py +61 -0
- MediCafe/migration_helpers.py +463 -0
- MediCafe/smart_import.py +436 -0
- MediLink/MediLink.py +66 -26
- MediLink/MediLink_837p_cob_library.py +28 -28
- MediLink/MediLink_837p_encoder.py +33 -34
- MediLink/MediLink_837p_encoder_library.py +243 -151
- MediLink/MediLink_837p_utilities.py +129 -5
- MediLink/MediLink_API_Generator.py +83 -60
- MediLink/MediLink_API_v3.py +1 -1
- MediLink/MediLink_ClaimStatus.py +177 -31
- MediLink/MediLink_DataMgmt.py +405 -72
- MediLink/MediLink_Decoder.py +20 -1
- MediLink/MediLink_Deductible.py +155 -28
- MediLink/MediLink_Display_Utils.py +72 -0
- MediLink/MediLink_Down.py +127 -5
- MediLink/MediLink_Gmail.py +712 -653
- MediLink/MediLink_PatientProcessor.py +257 -0
- MediLink/MediLink_UI.py +85 -61
- MediLink/MediLink_Up.py +28 -4
- MediLink/MediLink_insurance_utils.py +227 -264
- MediLink/MediLink_main.py +248 -0
- MediLink/MediLink_smart_import.py +264 -0
- MediLink/__init__.py +93 -0
- MediLink/insurance_type_integration_test.py +66 -76
- MediLink/test.py +1 -1
- MediLink/test_timing.py +59 -0
- {medicafe-0.250728.8.dist-info → medicafe-0.250805.0.dist-info}/METADATA +1 -1
- medicafe-0.250805.0.dist-info/RECORD +81 -0
- medicafe-0.250805.0.dist-info/entry_points.txt +2 -0
- {medicafe-0.250728.8.dist-info → medicafe-0.250805.0.dist-info}/top_level.txt +1 -0
- medicafe-0.250728.8.dist-info/RECORD +0 -59
- {medicafe-0.250728.8.dist-info → medicafe-0.250805.0.dist-info}/LICENSE +0 -0
- {medicafe-0.250728.8.dist-info → medicafe-0.250805.0.dist-info}/WHEEL +0 -0
|
@@ -4,27 +4,32 @@
|
|
|
4
4
|
|
|
5
5
|
import time
|
|
6
6
|
import json
|
|
7
|
+
import sys, os
|
|
8
|
+
sys.path.insert(0, os.path.abspath(os.path.join(os.path.dirname(__file__), '..')))
|
|
9
|
+
|
|
10
|
+
# Use core utilities for standardized imports
|
|
11
|
+
from MediCafe.core_utils import get_shared_config_loader
|
|
12
|
+
MediLink_ConfigLoader = get_shared_config_loader()
|
|
7
13
|
|
|
8
14
|
try:
|
|
9
|
-
from
|
|
10
|
-
|
|
11
|
-
validate_production_readiness,
|
|
12
|
-
validate_insurance_configuration,
|
|
13
|
-
get_feature_flag,
|
|
14
|
-
EnhancedAPIClient
|
|
15
|
+
from MediCafe.api_core import (
|
|
16
|
+
APIClient
|
|
15
17
|
)
|
|
16
|
-
from
|
|
17
|
-
enrich_with_insurance_type
|
|
18
|
-
monitor_insurance_type_assignments
|
|
18
|
+
from MediLink import (
|
|
19
|
+
enrich_with_insurance_type
|
|
19
20
|
)
|
|
20
|
-
from
|
|
21
|
+
from MediLink_837p_encoder_library import (
|
|
21
22
|
insurance_type_selection,
|
|
22
|
-
|
|
23
|
-
|
|
23
|
+
_original_insurance_type_selection_logic
|
|
24
|
+
)
|
|
25
|
+
from MediLink_insurance_utils import (
|
|
26
|
+
validate_insurance_type_from_config,
|
|
27
|
+
get_feature_flag,
|
|
28
|
+
generate_insurance_assignment_summary
|
|
24
29
|
)
|
|
25
30
|
except ImportError as e:
|
|
26
31
|
print("Import error: {}".format(str(e)))
|
|
27
|
-
print("This module requires the
|
|
32
|
+
print("This module requires the insurance type components.")
|
|
28
33
|
|
|
29
34
|
def run_insurance_type_integration_tests():
|
|
30
35
|
"""
|
|
@@ -46,12 +51,13 @@ def run_insurance_type_integration_tests():
|
|
|
46
51
|
test_results['total_tests'] += 1
|
|
47
52
|
try:
|
|
48
53
|
print("\n1. Testing Production Readiness Validation...")
|
|
49
|
-
|
|
50
|
-
|
|
54
|
+
from MediLink_insurance_utils import validate_insurance_configuration
|
|
55
|
+
validate_insurance_configuration()
|
|
56
|
+
print(" PASS Production readiness validation PASSED")
|
|
51
57
|
test_results['passed_tests'] += 1
|
|
52
58
|
test_results['test_details'].append({'test': 'production_readiness', 'status': 'PASSED'})
|
|
53
59
|
except Exception as e:
|
|
54
|
-
print("
|
|
60
|
+
print(" FAIL Production readiness validation FAILED: {}".format(str(e)))
|
|
55
61
|
test_results['failed_tests'] += 1
|
|
56
62
|
test_results['test_details'].append({'test': 'production_readiness', 'status': 'FAILED', 'error': str(e)})
|
|
57
63
|
|
|
@@ -59,12 +65,13 @@ def run_insurance_type_integration_tests():
|
|
|
59
65
|
test_results['total_tests'] += 1
|
|
60
66
|
try:
|
|
61
67
|
print("\n2. Testing Insurance Configuration Validation...")
|
|
68
|
+
from MediLink_insurance_utils import validate_insurance_configuration
|
|
62
69
|
validate_insurance_configuration()
|
|
63
|
-
print("
|
|
70
|
+
print(" PASS Insurance configuration validation PASSED")
|
|
64
71
|
test_results['passed_tests'] += 1
|
|
65
72
|
test_results['test_details'].append({'test': 'insurance_config', 'status': 'PASSED'})
|
|
66
73
|
except Exception as e:
|
|
67
|
-
print("
|
|
74
|
+
print(" FAIL Insurance configuration validation FAILED: {}".format(str(e)))
|
|
68
75
|
test_results['failed_tests'] += 1
|
|
69
76
|
test_results['test_details'].append({'test': 'insurance_config', 'status': 'FAILED', 'error': str(e)})
|
|
70
77
|
|
|
@@ -76,24 +83,31 @@ def run_insurance_type_integration_tests():
|
|
|
76
83
|
enhanced_flag = get_feature_flag('enhanced_insurance_enrichment', default=False)
|
|
77
84
|
print(" API Insurance Selection Flag: {}".format(api_flag))
|
|
78
85
|
print(" Enhanced Insurance Enrichment Flag: {}".format(enhanced_flag))
|
|
79
|
-
print("
|
|
86
|
+
print(" PASS Feature flag system PASSED")
|
|
80
87
|
test_results['passed_tests'] += 1
|
|
81
88
|
test_results['test_details'].append({'test': 'feature_flags', 'status': 'PASSED'})
|
|
82
89
|
except Exception as e:
|
|
83
|
-
print("
|
|
90
|
+
print(" FAIL Feature flag system FAILED: {}".format(str(e)))
|
|
84
91
|
test_results['failed_tests'] += 1
|
|
85
92
|
test_results['test_details'].append({'test': 'feature_flags', 'status': 'FAILED', 'error': str(e)})
|
|
86
93
|
|
|
87
|
-
# Test 4:
|
|
94
|
+
# Test 4: API Client Initialization
|
|
88
95
|
test_results['total_tests'] += 1
|
|
89
96
|
try:
|
|
90
|
-
print("\n4. Testing
|
|
91
|
-
|
|
92
|
-
|
|
97
|
+
print("\n4. Testing API Client Initialization...")
|
|
98
|
+
# Test both factory and direct instantiation
|
|
99
|
+
try:
|
|
100
|
+
from MediCafe.core_utils import get_api_client
|
|
101
|
+
api_client = get_api_client()
|
|
102
|
+
if api_client is None:
|
|
103
|
+
api_client = APIClient()
|
|
104
|
+
except ImportError:
|
|
105
|
+
api_client = APIClient()
|
|
106
|
+
print(" PASS API client initialization PASSED")
|
|
93
107
|
test_results['passed_tests'] += 1
|
|
94
108
|
test_results['test_details'].append({'test': 'api_client_init', 'status': 'PASSED'})
|
|
95
109
|
except Exception as e:
|
|
96
|
-
print("
|
|
110
|
+
print(" FAIL API client initialization FAILED: {}".format(str(e)))
|
|
97
111
|
test_results['failed_tests'] += 1
|
|
98
112
|
test_results['test_details'].append({'test': 'api_client_init', 'status': 'FAILED', 'error': str(e)})
|
|
99
113
|
|
|
@@ -109,11 +123,11 @@ def run_insurance_type_integration_tests():
|
|
|
109
123
|
}
|
|
110
124
|
result = insurance_type_selection(test_parsed_data)
|
|
111
125
|
assert result == '12', "Should return pre-assigned insurance type"
|
|
112
|
-
print("
|
|
126
|
+
print(" PASS Insurance type selection backward compatibility PASSED")
|
|
113
127
|
test_results['passed_tests'] += 1
|
|
114
128
|
test_results['test_details'].append({'test': 'backward_compatibility', 'status': 'PASSED'})
|
|
115
129
|
except Exception as e:
|
|
116
|
-
print("
|
|
130
|
+
print(" FAIL Insurance type selection backward compatibility FAILED: {}".format(str(e)))
|
|
117
131
|
test_results['failed_tests'] += 1
|
|
118
132
|
test_results['test_details'].append({'test': 'backward_compatibility', 'status': 'FAILED', 'error': str(e)})
|
|
119
133
|
|
|
@@ -131,33 +145,18 @@ def run_insurance_type_integration_tests():
|
|
|
131
145
|
enriched_data = enrich_with_insurance_type(test_patient_data)
|
|
132
146
|
assert len(enriched_data) == 1, "Should return same number of patients"
|
|
133
147
|
assert 'insurance_type' in enriched_data[0], "Should add insurance_type field"
|
|
134
|
-
|
|
135
|
-
print(" ✅ Patient data enrichment PASSED")
|
|
148
|
+
print(" PASS Patient data enrichment PASSED")
|
|
136
149
|
test_results['passed_tests'] += 1
|
|
137
150
|
test_results['test_details'].append({'test': 'patient_enrichment', 'status': 'PASSED'})
|
|
138
151
|
except Exception as e:
|
|
139
|
-
print("
|
|
152
|
+
print(" FAIL Patient data enrichment FAILED: {}".format(str(e)))
|
|
140
153
|
test_results['failed_tests'] += 1
|
|
141
154
|
test_results['test_details'].append({'test': 'patient_enrichment', 'status': 'FAILED', 'error': str(e)})
|
|
142
155
|
|
|
143
|
-
# Test 7:
|
|
156
|
+
# Test 7: Monitoring System
|
|
144
157
|
test_results['total_tests'] += 1
|
|
145
158
|
try:
|
|
146
|
-
print("\n7. Testing
|
|
147
|
-
api_available = is_api_insurance_selection_available()
|
|
148
|
-
print(" API Insurance Selection Available: {}".format(api_available))
|
|
149
|
-
print(" ✅ API availability check PASSED")
|
|
150
|
-
test_results['passed_tests'] += 1
|
|
151
|
-
test_results['test_details'].append({'test': 'api_availability', 'status': 'PASSED'})
|
|
152
|
-
except Exception as e:
|
|
153
|
-
print(" ❌ API availability check FAILED: {}".format(str(e)))
|
|
154
|
-
test_results['failed_tests'] += 1
|
|
155
|
-
test_results['test_details'].append({'test': 'api_availability', 'status': 'FAILED', 'error': str(e)})
|
|
156
|
-
|
|
157
|
-
# Test 8: Monitoring System
|
|
158
|
-
test_results['total_tests'] += 1
|
|
159
|
-
try:
|
|
160
|
-
print("\n8. Testing Monitoring System...")
|
|
159
|
+
print("\n7. Testing Monitoring System...")
|
|
161
160
|
test_patient_data = [
|
|
162
161
|
{
|
|
163
162
|
'patient_id': 'TEST001',
|
|
@@ -170,12 +169,12 @@ def run_insurance_type_integration_tests():
|
|
|
170
169
|
'insurance_type_source': 'API'
|
|
171
170
|
}
|
|
172
171
|
]
|
|
173
|
-
|
|
174
|
-
print("
|
|
172
|
+
generate_insurance_assignment_summary(test_patient_data)
|
|
173
|
+
print(" PASS Monitoring system PASSED")
|
|
175
174
|
test_results['passed_tests'] += 1
|
|
176
175
|
test_results['test_details'].append({'test': 'monitoring', 'status': 'PASSED'})
|
|
177
176
|
except Exception as e:
|
|
178
|
-
print("
|
|
177
|
+
print(" FAIL Monitoring system FAILED: {}".format(str(e)))
|
|
179
178
|
test_results['failed_tests'] += 1
|
|
180
179
|
test_results['test_details'].append({'test': 'monitoring', 'status': 'FAILED', 'error': str(e)})
|
|
181
180
|
|
|
@@ -184,13 +183,13 @@ def run_insurance_type_integration_tests():
|
|
|
184
183
|
print("TEST SUMMARY")
|
|
185
184
|
print("=" * 60)
|
|
186
185
|
print("Total Tests: {}".format(test_results['total_tests']))
|
|
187
|
-
print("Passed: {}
|
|
188
|
-
print("Failed: {}
|
|
186
|
+
print("Passed: {}".format(test_results['passed_tests']))
|
|
187
|
+
print("Failed: {}".format(test_results['failed_tests']))
|
|
189
188
|
|
|
190
189
|
if test_results['failed_tests'] == 0:
|
|
191
|
-
print("\
|
|
190
|
+
print("\nPASS ALL TESTS! System ready for deployment.")
|
|
192
191
|
else:
|
|
193
|
-
print("\
|
|
192
|
+
print("\nFAIL {} TESTS. Review before deployment.".format(test_results['failed_tests']))
|
|
194
193
|
for test in test_results['test_details']:
|
|
195
194
|
if test['status'] == 'FAILED':
|
|
196
195
|
print(" - {}: {}".format(test['test'], test.get('error', 'Unknown error')))
|
|
@@ -203,41 +202,33 @@ def test_insurance_type_validation():
|
|
|
203
202
|
print("INSURANCE TYPE VALIDATION TESTS")
|
|
204
203
|
print("=" * 50)
|
|
205
204
|
|
|
206
|
-
# Import validation function
|
|
207
|
-
from MediLink_API_v3_enhanced import validate_insurance_type_from_super_connector
|
|
208
|
-
|
|
209
205
|
test_cases = [
|
|
210
206
|
{
|
|
211
207
|
'name': 'Valid PPO Type',
|
|
212
|
-
'plan_description': 'Preferred Provider Organization',
|
|
213
208
|
'insurance_type': '12',
|
|
214
209
|
'payer_id': '87726',
|
|
215
210
|
'expected': '12'
|
|
216
211
|
},
|
|
217
212
|
{
|
|
218
213
|
'name': 'Valid HMO Type',
|
|
219
|
-
'plan_description': 'Health Maintenance Organization',
|
|
220
214
|
'insurance_type': 'HM',
|
|
221
215
|
'payer_id': '87726',
|
|
222
216
|
'expected': 'HM'
|
|
223
217
|
},
|
|
224
218
|
{
|
|
225
|
-
'name': 'Novel Valid Type',
|
|
226
|
-
'plan_description': 'Exclusive Provider Organization',
|
|
219
|
+
'name': 'Novel Valid Type (Strict Validation)',
|
|
227
220
|
'insurance_type': 'EP',
|
|
228
221
|
'payer_id': '87726',
|
|
229
|
-
'expected': '
|
|
222
|
+
'expected': '12' # Strict validation rejects novel codes
|
|
230
223
|
},
|
|
231
224
|
{
|
|
232
225
|
'name': 'Invalid Type Format',
|
|
233
|
-
'plan_description': 'Some Plan',
|
|
234
226
|
'insurance_type': 'INVALID123',
|
|
235
227
|
'payer_id': '87726',
|
|
236
228
|
'expected': '12' # Should fallback to PPO
|
|
237
229
|
},
|
|
238
230
|
{
|
|
239
231
|
'name': 'Empty Type',
|
|
240
|
-
'plan_description': 'Some Plan',
|
|
241
232
|
'insurance_type': '',
|
|
242
233
|
'payer_id': '87726',
|
|
243
234
|
'expected': '12' # Should fallback to PPO
|
|
@@ -249,21 +240,20 @@ def test_insurance_type_validation():
|
|
|
249
240
|
|
|
250
241
|
for test_case in test_cases:
|
|
251
242
|
try:
|
|
252
|
-
result =
|
|
253
|
-
test_case['plan_description'],
|
|
243
|
+
result = validate_insurance_type_from_config(
|
|
254
244
|
test_case['insurance_type'],
|
|
255
245
|
test_case['payer_id']
|
|
256
246
|
)
|
|
257
247
|
|
|
258
248
|
if result == test_case['expected']:
|
|
259
|
-
print("
|
|
249
|
+
print("PASS {}: {} -> {}".format(test_case['name'], test_case['insurance_type'], result))
|
|
260
250
|
passed += 1
|
|
261
251
|
else:
|
|
262
|
-
print("
|
|
252
|
+
print("FAIL {}: Expected {}, got {}".format(test_case['name'], test_case['expected'], result))
|
|
263
253
|
failed += 1
|
|
264
254
|
|
|
265
255
|
except Exception as e:
|
|
266
|
-
print("
|
|
256
|
+
print("FAIL {}: Exception - {}".format(test_case['name'], str(e)))
|
|
267
257
|
failed += 1
|
|
268
258
|
|
|
269
259
|
print("\nValidation Tests Summary: {} passed, {} failed".format(passed, failed))
|
|
@@ -301,9 +291,9 @@ def create_test_configuration():
|
|
|
301
291
|
|
|
302
292
|
print("Test configuration created:")
|
|
303
293
|
print(json.dumps(test_config, indent=2))
|
|
304
|
-
print("\
|
|
305
|
-
print("
|
|
306
|
-
print("
|
|
294
|
+
print("\nCopy this configuration to your config.json file")
|
|
295
|
+
print("Ensure TestMode is False for production")
|
|
296
|
+
print("Enable feature flags gradually during rollout")
|
|
307
297
|
|
|
308
298
|
return test_config
|
|
309
299
|
|
|
@@ -332,9 +322,9 @@ def deployment_checklist():
|
|
|
332
322
|
for item in checklist:
|
|
333
323
|
print(item)
|
|
334
324
|
|
|
335
|
-
print("\
|
|
336
|
-
print("
|
|
337
|
-
print("
|
|
325
|
+
print("\nComplete all checklist items before deployment")
|
|
326
|
+
print("Follow gradual rollout plan with feature flags")
|
|
327
|
+
print("Monitor logs and metrics closely during rollout")
|
|
338
328
|
|
|
339
329
|
if __name__ == "__main__":
|
|
340
330
|
print("Insurance Type Selection Enhancement - Integration Test Suite")
|
|
@@ -363,6 +353,6 @@ if __name__ == "__main__":
|
|
|
363
353
|
print("Overall Tests: {} passed, {} failed out of {} total".format(total_passed, total_failed, total_tests))
|
|
364
354
|
|
|
365
355
|
if total_failed == 0:
|
|
366
|
-
print("
|
|
356
|
+
print("PASS ALL SYSTEMS GO! Ready for phased deployment.")
|
|
367
357
|
else:
|
|
368
|
-
print("
|
|
358
|
+
print("FAIL Address {} failed tests before deployment.".format(total_failed))
|
MediLink/test.py
CHANGED
MediLink/test_timing.py
ADDED
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
#!/usr/bin/env python
|
|
2
|
+
# test_timing.py - Test script to run MediLink with timing traces
|
|
3
|
+
|
|
4
|
+
import sys
|
|
5
|
+
import os
|
|
6
|
+
import time
|
|
7
|
+
|
|
8
|
+
# Add the parent directory to the path so we can import MediLink modules
|
|
9
|
+
sys.path.insert(0, os.path.abspath(os.path.join(os.path.dirname(__file__), "..")))
|
|
10
|
+
|
|
11
|
+
def test_medilink_timing():
|
|
12
|
+
"""
|
|
13
|
+
Test function to run MediLink with timing traces and identify bottlenecks.
|
|
14
|
+
"""
|
|
15
|
+
print("=" * 60)
|
|
16
|
+
print("MEDILINK TIMING ANALYSIS")
|
|
17
|
+
print("=" * 60)
|
|
18
|
+
print("This test will run MediLink with comprehensive timing traces")
|
|
19
|
+
print("to identify what's causing the slow startup.")
|
|
20
|
+
print("=" * 60)
|
|
21
|
+
|
|
22
|
+
try:
|
|
23
|
+
# Import and run the main menu
|
|
24
|
+
from MediLink.MediLink_main import main_menu
|
|
25
|
+
|
|
26
|
+
print("\nStarting MediLink timing test...")
|
|
27
|
+
start_time = time.time()
|
|
28
|
+
|
|
29
|
+
# Load configuration to test the caching
|
|
30
|
+
from MediCafe.MediLink_ConfigLoader import load_configuration
|
|
31
|
+
config, crosswalk = load_configuration()
|
|
32
|
+
print("Initial configuration load completed")
|
|
33
|
+
|
|
34
|
+
# Test the caching by loading again
|
|
35
|
+
config2, crosswalk2 = load_configuration()
|
|
36
|
+
print("Cached configuration load completed")
|
|
37
|
+
|
|
38
|
+
# Test file detection with cached config
|
|
39
|
+
from MediLink.MediLink_DataMgmt import detect_new_files
|
|
40
|
+
directory_path = config['MediLink_Config']['inputFilePath']
|
|
41
|
+
files, flagged = detect_new_files(directory_path)
|
|
42
|
+
print("File detection with cached config completed")
|
|
43
|
+
|
|
44
|
+
end_time = time.time()
|
|
45
|
+
print("\n" + "=" * 60)
|
|
46
|
+
print("TIMING TEST COMPLETED")
|
|
47
|
+
print("=" * 60)
|
|
48
|
+
print("Total execution time: {:.2f} seconds".format(end_time - start_time))
|
|
49
|
+
print("Configuration caching is working!")
|
|
50
|
+
|
|
51
|
+
except KeyboardInterrupt:
|
|
52
|
+
print("\nTest interrupted by user.")
|
|
53
|
+
except Exception as e:
|
|
54
|
+
print("\nError during timing test: {}".format(e))
|
|
55
|
+
import traceback
|
|
56
|
+
traceback.print_exc()
|
|
57
|
+
|
|
58
|
+
if __name__ == "__main__":
|
|
59
|
+
test_medilink_timing()
|
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
MediBot/MediBot.bat,sha256=gSL5EyZJmAsrBo-7uJA2YLnYqAZKPuXugI9d1FCq2Os,22277
|
|
2
|
+
MediBot/MediBot.py,sha256=E1vE8AskTFf5lp8GVaJKXOUyKZTbi6t01f1taJmMwVQ,28779
|
|
3
|
+
MediBot/MediBot_Charges.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
4
|
+
MediBot/MediBot_Crosswalk_Library.py,sha256=X-lo8bvT-vmCqbrKFi_ApmVI6wQs53mz1ygyVeCf1SI,23463
|
|
5
|
+
MediBot/MediBot_Crosswalk_Utils.py,sha256=QIf2zZI0DVOLy23tuXhM83VrE9NDIqJlfZIlSM_zQWM,34560
|
|
6
|
+
MediBot/MediBot_Post.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
7
|
+
MediBot/MediBot_Preprocessor.py,sha256=zAcfyuE8wl9JRzLGsUnnXiHxAr-hbCCIB2M-Jb3LUqI,16203
|
|
8
|
+
MediBot/MediBot_Preprocessor_lib.py,sha256=fP52Bgi8I-m2ePW1D_bVrIEP7c93xuNo8wU2SMDUeyE,68875
|
|
9
|
+
MediBot/MediBot_UI.py,sha256=Hj3esKOWYYx6XG4wT50W6XWKe7de9m5otYU073XjFbw,13254
|
|
10
|
+
MediBot/MediBot_dataformat_library.py,sha256=XCkwhpkDbhiSDQ_21xPafqJzZLoq-C0dczoN2Xl5tHE,10260
|
|
11
|
+
MediBot/MediBot_docx_decoder.py,sha256=Tn1jiZkXF_NlkIZIb9FiRoifiOROq6mpWui_lK83XyY,31735
|
|
12
|
+
MediBot/MediBot_smart_import.py,sha256=_ggP0I9djNwMGck04U6fNahrH7frVkoM8OzjtHbLUc0,6727
|
|
13
|
+
MediBot/MediPost.py,sha256=C1hZJFr65rN6F_dckjdBxFC0vL2CoqY9W3YFqU5HXtE,336
|
|
14
|
+
MediBot/PDF_to_CSV_Cleaner.py,sha256=ZZphmq-5K04DkrZNlcwNAIoZPOD_ROWvS3PMkKFxeiM,8799
|
|
15
|
+
MediBot/__init__.py,sha256=mdTybtb5aRozmwDuAtf9nO8wv03HjNCDU0PnJy4Pwko,2957
|
|
16
|
+
MediBot/get_medicafe_version.py,sha256=uyL_UIE42MyFuJ3SRYxJp8sZx8xjTqlYZ3FdQuxLduY,728
|
|
17
|
+
MediBot/update_json.py,sha256=vvUF4mKCuaVly8MmoadDO59M231fCIInc0KI1EtDtPA,3704
|
|
18
|
+
MediBot/update_medicafe.py,sha256=-l3jaWLkwehX3ju5OhxPMo621_UWOH4dauHbJj-JNcY,13255
|
|
19
|
+
MediCafe/MediLink_ConfigLoader.py,sha256=gCC4me808KzSNneRTj6h3IFwjERxP-Q9XQUayPZu7Ew,7009
|
|
20
|
+
MediCafe/__init__.py,sha256=6bSEXGy35ljEeTv40LcsokC8riYGk6lRj1QDpSepwnA,5461
|
|
21
|
+
MediCafe/__main__.py,sha256=JnKwWOosAyzn6BHOKGQ6_6qEnbcT2Tr6p0EGuWyY0oE,7559
|
|
22
|
+
MediCafe/api_core.py,sha256=uevBnoJJOtF_9WuJTVNkJOdNFfp9ReLlK5CtDoSdWZ4,58693
|
|
23
|
+
MediCafe/api_core_backup.py,sha256=mad-sFk4nyUmNb2nQ_t4GMT6FJ4hrdJyKHUO0oRvMaE,18629
|
|
24
|
+
MediCafe/api_factory.py,sha256=GJjsJQwrAI7WY2cbn3P1I-w9wtcRmQaXMw8CtFDvkxU,11015
|
|
25
|
+
MediCafe/api_utils.py,sha256=KWQB0q1k5E6frOFFlKWcFpHNcqfrS7KJ_82672wbupw,14041
|
|
26
|
+
MediCafe/core_utils.py,sha256=VtNtEwBDhjJjQQJJrW90nkU7TFynqYmDXfk29lnV_h4,15821
|
|
27
|
+
MediCafe/graphql_utils.py,sha256=5i_pNCNRUXox2v5zraPzUw4n7rUt9ZEAkLqVa59LWAc,45713
|
|
28
|
+
MediCafe/logging_config.py,sha256=UDyHndq_I1y4jYvPH5vY-5zEPme-mt43kFCBVKNkBgk,4535
|
|
29
|
+
MediCafe/logging_demo.py,sha256=TwUhzafna5pMdN3zSKGrpUWRqX96F1JGGsSUtr3dygs,1975
|
|
30
|
+
MediCafe/migration_helpers.py,sha256=ow4jAzh1itMfZve_Lm1iO9KdmzAXhIu1obwfAs3bBbo,17958
|
|
31
|
+
MediCafe/smart_import.py,sha256=dmMUF-_RrMLjd0SNfRajZ2Y_ht0PglS6Z687AAmBlzs,19861
|
|
32
|
+
MediLink/MediLink.py,sha256=p91MYghOCbNf3ikTzm5P9V1Luj035yd83EDbQ-Ov6oM,33258
|
|
33
|
+
MediLink/MediLink_277_decoder.py,sha256=Z3hQK2j-YzdXjov6aDlDRc7M_auFBnl3se4OF5q6_04,4358
|
|
34
|
+
MediLink/MediLink_837p_cob_library.py,sha256=sK43fwq-arTUyrwbYWfJIhwW6aemXmpS2F1kfXFPe9I,29851
|
|
35
|
+
MediLink/MediLink_837p_encoder.py,sha256=O2HWuBbFpe4qsK5bKZF3LDJRSHGGsdiPyr_sJ8s4Bz4,28897
|
|
36
|
+
MediLink/MediLink_837p_encoder_library.py,sha256=i_SJNnpfJR5pydnM2908D1hQJbcGx3Id49I5A_7bsTw,62106
|
|
37
|
+
MediLink/MediLink_837p_utilities.py,sha256=uWIubJOw6PPidAfNx8hH47ecyXYJLr5b6xQvqKCvQ4A,15884
|
|
38
|
+
MediLink/MediLink_API_Generator.py,sha256=UUml-PBU3BQduun8RzFH4zfUuo6-p5Ufg7b6Vic-VrY,11171
|
|
39
|
+
MediLink/MediLink_API_v2.py,sha256=mcIgLnXPS_NaUBrkKJ8mxCUaQ0AuQUeU1vG6DoplbVY,7733
|
|
40
|
+
MediLink/MediLink_API_v3.py,sha256=5-4ZcQLfubhIfmAMiXodVHUPvLYbjwMQg4VUbbktZvw,48279
|
|
41
|
+
MediLink/MediLink_APIs.py,sha256=jm3f9T034MJKH8A_CIootULoeuk7H8s7PazpFZRCbKI,6222
|
|
42
|
+
MediLink/MediLink_Azure.py,sha256=Ow70jctiHFIylskBExN7WUoRgrKOvBR6jNTnQMk6lJA,210
|
|
43
|
+
MediLink/MediLink_ClaimStatus.py,sha256=cO9drHSIBtltHfLSKeEf18_m75ixpxIOao5I-TGiHiI,18100
|
|
44
|
+
MediLink/MediLink_ConfigLoader.py,sha256=u9ecB0SIN7zuJAo8KcoQys95BtyAo-8S2n4mRd0S3XU,4356
|
|
45
|
+
MediLink/MediLink_DataMgmt.py,sha256=83XGtxD8TaO-Xj619x3MrCj3dZx3hhER-fn_TlQ6-p8,50949
|
|
46
|
+
MediLink/MediLink_Decoder.py,sha256=ej9nmj_BhMzpg6T0jiEp2NwAWrvDHkn0NivDb_HjUMM,14677
|
|
47
|
+
MediLink/MediLink_Deductible.py,sha256=TGOI3I_mtoh0bz_HclLnsp3q7DPB5djEGfD7tbqlkW8,44902
|
|
48
|
+
MediLink/MediLink_Deductible_Validator.py,sha256=2g-lZd-Y5fJ1mfP87vM6oABg0t5Om-7EkEkilVvDWYY,22888
|
|
49
|
+
MediLink/MediLink_Display_Utils.py,sha256=Bl15Ofqh09KIYsNXzM6WIE97Gp_4RVUw43J0NUzIERY,3121
|
|
50
|
+
MediLink/MediLink_Down.py,sha256=vZEFNWa6drpXK8DCzt3DAlHdPGdhv3HoLnQh9cppT8o,11793
|
|
51
|
+
MediLink/MediLink_ERA_decoder.py,sha256=MiOtDcXnmevPfHAahIlTLlUc14VcQWAor9Xa7clA2Ts,8710
|
|
52
|
+
MediLink/MediLink_Gmail.py,sha256=urVnaDOIZkIiWAJxx3ChvldTmlVQlAiySMMtw-4tw-U,34874
|
|
53
|
+
MediLink/MediLink_GraphQL.py,sha256=O6OCaumT0zIC7YcIAwLOOYxiQnYhoMc48UL8ilNIBec,45720
|
|
54
|
+
MediLink/MediLink_Mailer.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
55
|
+
MediLink/MediLink_Parser.py,sha256=w2ZD4minjwkaMz7nzP_r8v_Ow_uM5KHjpPSY8mIHcdE,9787
|
|
56
|
+
MediLink/MediLink_PatientProcessor.py,sha256=LTEIWXdm3LaXaODYZ6NQNg7mHRHNZsSyh6AUF2l8c2k,14115
|
|
57
|
+
MediLink/MediLink_Scan.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
58
|
+
MediLink/MediLink_Scheduler.py,sha256=UJvxhDvHraqra2_TlQVlGeh5jRFrrfK6nCVUHnKOEMY,38
|
|
59
|
+
MediLink/MediLink_StatusCheck.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
60
|
+
MediLink/MediLink_UI.py,sha256=54hyUyYdxI9DSSI5w8dQbFZJ2hDoyVklGukfsmsMhB0,9254
|
|
61
|
+
MediLink/MediLink_Up.py,sha256=2P4vpiYAhp5EA5XC7zyexkmVpeMNhRDfwoddKp838nE,25232
|
|
62
|
+
MediLink/MediLink_api_utils.py,sha256=dsGLRPRvSwfXPLrrfgnkIKGDIF00wE93TrDB6HMDPQU,11857
|
|
63
|
+
MediLink/MediLink_batch.bat,sha256=nqL5QwCLyRQFSPdv6kgtcV_cpky7FXSOWVl6OxjRXb4,118
|
|
64
|
+
MediLink/MediLink_insurance_utils.py,sha256=FDRbS4AHxCt0pzStBwGlaLvrehEgI6G8tMKo6kLl3ME,9222
|
|
65
|
+
MediLink/MediLink_main.py,sha256=prinm4KNc9qHFwKwp04dgrfbPjm9gGj4yZjdTaP354Q,11902
|
|
66
|
+
MediLink/MediLink_smart_import.py,sha256=B5SfBn_4bYEWJJDolXbjnwKx_-MaqGZ76LyXQwWDV80,9838
|
|
67
|
+
MediLink/Soumit_api.py,sha256=5JfOecK98ZC6NpZklZW2AkOzkjvrbYxpJpZNH3rFxDw,497
|
|
68
|
+
MediLink/__init__.py,sha256=m0UZ0ZhXIHz4Lw6L5kxyOKy8ZbiwFBoGPPe2Fdlab5Q,3156
|
|
69
|
+
MediLink/insurance_type_integration_test.py,sha256=hXojzouuutMyGCyDaORBjFSyFOi2qZtzGbpeTHJYLvE,14668
|
|
70
|
+
MediLink/openssl.cnf,sha256=76VdcGCykf0Typyiv8Wd1mMVKixrQ5RraG6HnfKFqTo,887
|
|
71
|
+
MediLink/test.py,sha256=DM_E8gEbhbVfTAm3wTMiNnK2GCD1e5eH6gwTk89QIc4,3116
|
|
72
|
+
MediLink/test_cob_library.py,sha256=wUMv0-Y6fNsKcAs8Z9LwfmEBRO7oBzBAfWmmzwoNd1g,13841
|
|
73
|
+
MediLink/test_timing.py,sha256=yH2b8QPLDlp1Zy5AhgtjzjnDHNGhAD16ZtXtZzzESZw,2042
|
|
74
|
+
MediLink/test_validation.py,sha256=FJrfdUFK--xRScIzrHCg1JeGdm0uJEoRnq6CgkP2lwM,4154
|
|
75
|
+
MediLink/webapp.html,sha256=JPKT559aFVBi1r42Hz7C77Jj0teZZRumPhBev8eSOLk,19806
|
|
76
|
+
medicafe-0.250805.0.dist-info/LICENSE,sha256=65lb-vVujdQK7uMH3RRJSMwUW-WMrMEsc5sOaUn2xUk,1096
|
|
77
|
+
medicafe-0.250805.0.dist-info/METADATA,sha256=AVSamvkieMxjqWi0qyKVjMIcnsoB-0A6u1OzPUJfbV8,5501
|
|
78
|
+
medicafe-0.250805.0.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
|
|
79
|
+
medicafe-0.250805.0.dist-info/entry_points.txt,sha256=m3RBUBjr-xRwEkKJ5W4a7NlqHZP_1rllGtjZnrRqKe8,52
|
|
80
|
+
medicafe-0.250805.0.dist-info/top_level.txt,sha256=U6-WBJ9RCEjyIs0BlzbQq_PwedCp_IV9n1616NNV5zA,26
|
|
81
|
+
medicafe-0.250805.0.dist-info/RECORD,,
|
|
@@ -1,59 +0,0 @@
|
|
|
1
|
-
MediBot/MediBot.bat,sha256=-4wNHzUrlPxT7TYIgRLQ464zWlR0GBAu3gErXsEr_O8,13289
|
|
2
|
-
MediBot/MediBot.py,sha256=LA19MnCaHbb1uaOGfZaAKwQu7jwMkeFwU4jtx3Wc1_s,24352
|
|
3
|
-
MediBot/MediBot_Charges.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
4
|
-
MediBot/MediBot_Crosswalk_Library.py,sha256=CAC1upqFu37fTWD3hFD5Djiy7yDAcV4SRkcbutdaeeY,53012
|
|
5
|
-
MediBot/MediBot_Post.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
6
|
-
MediBot/MediBot_Preprocessor.py,sha256=Lc9uQnE5SAa0dQTOREdPV1QUB2cywXTHJ1h2w-fyeeQ,13331
|
|
7
|
-
MediBot/MediBot_Preprocessor_lib.py,sha256=pTXtaREJdj0kupzCR_QsHLUlPHYFZ2lUzSLm4IBoHKY,49081
|
|
8
|
-
MediBot/MediBot_UI.py,sha256=WuxBmnkXleA88AjvDB48CqxAzxsqnB8Tvf-MTNsYKBU,12731
|
|
9
|
-
MediBot/MediBot_dataformat_library.py,sha256=XNyeiOC6uJUp15UXP_rhtB3rMTPus9ZXDnz5zHNoRYM,8586
|
|
10
|
-
MediBot/MediBot_docx_decoder.py,sha256=GbhX58pMAsWNhBF7B8AtWiNpUOB4bU0zAM81moXYkkE,27370
|
|
11
|
-
MediBot/MediPost.py,sha256=C1hZJFr65rN6F_dckjdBxFC0vL2CoqY9W3YFqU5HXtE,336
|
|
12
|
-
MediBot/PDF_to_CSV_Cleaner.py,sha256=ZZphmq-5K04DkrZNlcwNAIoZPOD_ROWvS3PMkKFxeiM,8799
|
|
13
|
-
MediBot/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
14
|
-
MediBot/update_json.py,sha256=9FJZb-32EujpKuSoCjyCbdTdthOIuhcMoN4Wchuzn8A,2508
|
|
15
|
-
MediBot/update_medicafe.py,sha256=E09jPw_aBjO30YqqUqDOL1zxN1srCyraFDX6vPexGLo,12725
|
|
16
|
-
MediLink/MediLink.py,sha256=KOZH3dMQPCf5cs61_cIWBm8veuBU3bO4BYB328A5EdY,30449
|
|
17
|
-
MediLink/MediLink_277_decoder.py,sha256=Z3hQK2j-YzdXjov6aDlDRc7M_auFBnl3se4OF5q6_04,4358
|
|
18
|
-
MediLink/MediLink_837p_cob_library.py,sha256=pWWd03yXTamNJKDbPCdOCkfglW4OLXQtIN3eiMSdfAA,29934
|
|
19
|
-
MediLink/MediLink_837p_encoder.py,sha256=2YcbIi3G3AETLDITWJIcMh2kBM62IgwR0W_lCVVLO0w,28816
|
|
20
|
-
MediLink/MediLink_837p_encoder_library.py,sha256=v3fhGoM89gzweFi78rdrv0Gx2_WoJk38BF9-PNIm7Y0,56563
|
|
21
|
-
MediLink/MediLink_837p_utilities.py,sha256=Bi91S1aJbsEOpWXp_IOUgCQ76IPiOJNkOfXXtcirzmI,10416
|
|
22
|
-
MediLink/MediLink_API_Generator.py,sha256=vBZ8moR9tvv7mb200HlZnJrk1y-bQi8E16I2r41vgVM,10345
|
|
23
|
-
MediLink/MediLink_API_v2.py,sha256=mcIgLnXPS_NaUBrkKJ8mxCUaQ0AuQUeU1vG6DoplbVY,7733
|
|
24
|
-
MediLink/MediLink_API_v3.py,sha256=RQ6cwLgBdhpz6u8KI3y4k8pHfZW7gzGIp2Qh6NyhFKo,48286
|
|
25
|
-
MediLink/MediLink_APIs.py,sha256=jm3f9T034MJKH8A_CIootULoeuk7H8s7PazpFZRCbKI,6222
|
|
26
|
-
MediLink/MediLink_Azure.py,sha256=Ow70jctiHFIylskBExN7WUoRgrKOvBR6jNTnQMk6lJA,210
|
|
27
|
-
MediLink/MediLink_ClaimStatus.py,sha256=kXIDidxSGuqTwjFNMQIKms42jqIu5Qmnet-7Ohe8zjE,11645
|
|
28
|
-
MediLink/MediLink_ConfigLoader.py,sha256=u9ecB0SIN7zuJAo8KcoQys95BtyAo-8S2n4mRd0S3XU,4356
|
|
29
|
-
MediLink/MediLink_DataMgmt.py,sha256=AVkiQ3kMmOZHaZ3Q-I2QyCZdfcU-45mIapSoZ2rdW5M,33374
|
|
30
|
-
MediLink/MediLink_Decoder.py,sha256=lKWiOcRClz8F5P3jrvFTq_hW9XF4OrPfA4LFz2zLSLg,14013
|
|
31
|
-
MediLink/MediLink_Deductible.py,sha256=els8CQMK3pRzlqzs12HDgqx42WLXuHFU-nfXiA4y0Js,39426
|
|
32
|
-
MediLink/MediLink_Deductible_Validator.py,sha256=2g-lZd-Y5fJ1mfP87vM6oABg0t5Om-7EkEkilVvDWYY,22888
|
|
33
|
-
MediLink/MediLink_Down.py,sha256=hrDODhs-zRfOKCdiRGENN5Czu-AvdtwJj4Q7grcRXME,6518
|
|
34
|
-
MediLink/MediLink_ERA_decoder.py,sha256=MiOtDcXnmevPfHAahIlTLlUc14VcQWAor9Xa7clA2Ts,8710
|
|
35
|
-
MediLink/MediLink_Gmail.py,sha256=OYsASNgP4YSTaSnj9XZxPPiy0cw41JC-suLIgRyNrlQ,31439
|
|
36
|
-
MediLink/MediLink_GraphQL.py,sha256=O6OCaumT0zIC7YcIAwLOOYxiQnYhoMc48UL8ilNIBec,45720
|
|
37
|
-
MediLink/MediLink_Mailer.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
38
|
-
MediLink/MediLink_Parser.py,sha256=w2ZD4minjwkaMz7nzP_r8v_Ow_uM5KHjpPSY8mIHcdE,9787
|
|
39
|
-
MediLink/MediLink_Scan.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
40
|
-
MediLink/MediLink_Scheduler.py,sha256=UJvxhDvHraqra2_TlQVlGeh5jRFrrfK6nCVUHnKOEMY,38
|
|
41
|
-
MediLink/MediLink_StatusCheck.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
42
|
-
MediLink/MediLink_UI.py,sha256=I9nIZsHJhIVRUPqj0xHoorgEbZUIWO7fn-l7yg2HU1g,7862
|
|
43
|
-
MediLink/MediLink_Up.py,sha256=r_VvTGsMzJUy_y-51kMYDBvVdxiq4lYm20PPIU31lCY,24119
|
|
44
|
-
MediLink/MediLink_api_utils.py,sha256=dsGLRPRvSwfXPLrrfgnkIKGDIF00wE93TrDB6HMDPQU,11857
|
|
45
|
-
MediLink/MediLink_batch.bat,sha256=nqL5QwCLyRQFSPdv6kgtcV_cpky7FXSOWVl6OxjRXb4,118
|
|
46
|
-
MediLink/MediLink_insurance_utils.py,sha256=vzNkaOTA8tF-UwjDWxcKAQt8yOFNeC-JwFFuzM1BoGg,10544
|
|
47
|
-
MediLink/Soumit_api.py,sha256=5JfOecK98ZC6NpZklZW2AkOzkjvrbYxpJpZNH3rFxDw,497
|
|
48
|
-
MediLink/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
49
|
-
MediLink/insurance_type_integration_test.py,sha256=5Ick4fEGzCnDxOm7C4eD_BtLutPX_reTVDLsgss5B1o,15446
|
|
50
|
-
MediLink/openssl.cnf,sha256=76VdcGCykf0Typyiv8Wd1mMVKixrQ5RraG6HnfKFqTo,887
|
|
51
|
-
MediLink/test.py,sha256=kSvvJRL_3fWuNS3_x4hToOnUljGLoeEw6SUTHQWQRJk,3108
|
|
52
|
-
MediLink/test_cob_library.py,sha256=wUMv0-Y6fNsKcAs8Z9LwfmEBRO7oBzBAfWmmzwoNd1g,13841
|
|
53
|
-
MediLink/test_validation.py,sha256=FJrfdUFK--xRScIzrHCg1JeGdm0uJEoRnq6CgkP2lwM,4154
|
|
54
|
-
MediLink/webapp.html,sha256=JPKT559aFVBi1r42Hz7C77Jj0teZZRumPhBev8eSOLk,19806
|
|
55
|
-
medicafe-0.250728.8.dist-info/LICENSE,sha256=65lb-vVujdQK7uMH3RRJSMwUW-WMrMEsc5sOaUn2xUk,1096
|
|
56
|
-
medicafe-0.250728.8.dist-info/METADATA,sha256=-Je5odeb8Ascd4Pb_eCkZLD4HmjN4hBt5ve9x4IYsTA,5501
|
|
57
|
-
medicafe-0.250728.8.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
|
|
58
|
-
medicafe-0.250728.8.dist-info/top_level.txt,sha256=3uOwR4q_SP8Gufk2uCHoKngAgbtdOwQC6Qjl7ViBa_c,17
|
|
59
|
-
medicafe-0.250728.8.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|