medicafe 0.250816.0__py3-none-any.whl → 0.250819.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.
- MediBot/MediBot.py +40 -4
- MediBot/MediBot_Crosswalk_Utils.py +1 -4
- MediBot/MediBot_Preprocessor.py +88 -14
- MediBot/MediBot_Preprocessor_lib.py +128 -38
- MediBot/MediBot_UI.py +51 -28
- MediBot/__init__.py +1 -1
- MediBot/update_medicafe.py +202 -727
- MediCafe/__init__.py +1 -1
- MediLink/MediLink_837p_encoder.py +1 -1
- MediLink/MediLink_837p_encoder_library.py +580 -318
- MediLink/MediLink_837p_utilities.py +1 -4
- MediLink/MediLink_API_Generator.py +1 -1
- MediLink/MediLink_DataMgmt.py +2 -2
- MediLink/MediLink_Down.py +1 -1
- MediLink/MediLink_Up.py +45 -4
- MediLink/MediLink_main.py +2 -1
- MediLink/__init__.py +1 -1
- MediLink/gmail_oauth_utils.py +1 -4
- {medicafe-0.250816.0.dist-info → medicafe-0.250819.0.dist-info}/METADATA +1 -1
- {medicafe-0.250816.0.dist-info → medicafe-0.250819.0.dist-info}/RECORD +24 -24
- {medicafe-0.250816.0.dist-info → medicafe-0.250819.0.dist-info}/LICENSE +0 -0
- {medicafe-0.250816.0.dist-info → medicafe-0.250819.0.dist-info}/WHEEL +0 -0
- {medicafe-0.250816.0.dist-info → medicafe-0.250819.0.dist-info}/entry_points.txt +0 -0
- {medicafe-0.250816.0.dist-info → medicafe-0.250819.0.dist-info}/top_level.txt +0 -0
MediCafe/__init__.py
CHANGED
@@ -202,7 +202,7 @@ def write_output_file(document_segments, output_directory, endpoint_key, input_f
|
|
202
202
|
|
203
203
|
# Write the document to the output file
|
204
204
|
try:
|
205
|
-
with open(new_output_file_path, 'w') as output_file:
|
205
|
+
with open(new_output_file_path, 'w', encoding='utf-8') as output_file:
|
206
206
|
output_file.write('\n'.join(document_segments))
|
207
207
|
MediLink_ConfigLoader.log("Successfully converted and saved to {}".format(new_output_file_path), config, level="INFO")
|
208
208
|
return new_output_file_path
|