medicafe 0.250806.6__py3-none-any.whl → 0.250806.7__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 +198 -20
- MediBot/update_medicafe.py +104 -23
- {medicafe-0.250806.6.dist-info → medicafe-0.250806.7.dist-info}/METADATA +1 -1
- {medicafe-0.250806.6.dist-info → medicafe-0.250806.7.dist-info}/RECORD +8 -8
- {medicafe-0.250806.6.dist-info → medicafe-0.250806.7.dist-info}/LICENSE +0 -0
- {medicafe-0.250806.6.dist-info → medicafe-0.250806.7.dist-info}/WHEEL +0 -0
- {medicafe-0.250806.6.dist-info → medicafe-0.250806.7.dist-info}/entry_points.txt +0 -0
- {medicafe-0.250806.6.dist-info → medicafe-0.250806.7.dist-info}/top_level.txt +0 -0
MediBot/MediBot.bat
CHANGED
|
@@ -337,46 +337,224 @@ if "!internet_available!"=="0" (
|
|
|
337
337
|
echo No internet connection available.
|
|
338
338
|
goto main_menu
|
|
339
339
|
)
|
|
340
|
-
|
|
340
|
+
|
|
341
|
+
echo ========================================
|
|
342
|
+
echo DEBUG: Starting MediCafe Update Process
|
|
343
|
+
echo ========================================
|
|
344
|
+
echo.
|
|
345
|
+
echo Current working directory: %CD%
|
|
346
|
+
echo Package version: %package_version%
|
|
347
|
+
echo Update script path: %upgrade_medicafe%
|
|
348
|
+
echo.
|
|
349
|
+
echo Press Enter to continue to step 1...
|
|
350
|
+
pause >nul
|
|
351
|
+
|
|
352
|
+
:: Step 1: Check if update_medicafe.py exists in expected location
|
|
353
|
+
echo.
|
|
354
|
+
echo ========================================
|
|
355
|
+
echo DEBUG STEP 1: Checking for update script
|
|
356
|
+
echo ========================================
|
|
357
|
+
echo.
|
|
358
|
+
echo Checking if update script exists at: %upgrade_medicafe%
|
|
359
|
+
if exist "%upgrade_medicafe%" (
|
|
360
|
+
echo [SUCCESS] Found update script at: %upgrade_medicafe%
|
|
361
|
+
echo File size:
|
|
362
|
+
dir "%upgrade_medicafe%" | find "update_medicafe.py"
|
|
363
|
+
) else (
|
|
364
|
+
echo [FAILED] Update script not found at: %upgrade_medicafe%
|
|
365
|
+
echo.
|
|
366
|
+
echo Checking alternative location: MediBot\update_medicafe.py
|
|
367
|
+
if exist "MediBot\update_medicafe.py" (
|
|
368
|
+
echo [SUCCESS] Found update script at: MediBot\update_medicafe.py
|
|
369
|
+
echo File size:
|
|
370
|
+
dir "MediBot\update_medicafe.py" | find "update_medicafe.py"
|
|
371
|
+
) else (
|
|
372
|
+
echo [FAILED] Update script not found at: MediBot\update_medicafe.py
|
|
373
|
+
echo.
|
|
374
|
+
echo Available files in current directory:
|
|
375
|
+
dir /b
|
|
376
|
+
echo.
|
|
377
|
+
echo Available files in MediBot directory:
|
|
378
|
+
dir /b MediBot\ 2>nul || echo MediBot directory not found
|
|
379
|
+
)
|
|
380
|
+
)
|
|
381
|
+
echo.
|
|
382
|
+
echo Press Enter to continue to step 2...
|
|
383
|
+
pause >nul
|
|
384
|
+
|
|
385
|
+
:: Step 2: Verify Python installation and path
|
|
386
|
+
echo.
|
|
387
|
+
echo ========================================
|
|
388
|
+
echo DEBUG STEP 2: Python Environment Check
|
|
389
|
+
echo ========================================
|
|
390
|
+
echo.
|
|
391
|
+
echo Checking Python installation...
|
|
392
|
+
python --version
|
|
393
|
+
if %errorlevel% neq 0 (
|
|
394
|
+
echo [ERROR] Python not found in PATH
|
|
395
|
+
echo Current PATH: %PATH%
|
|
396
|
+
) else (
|
|
397
|
+
echo [SUCCESS] Python found
|
|
398
|
+
echo Python executable: %PYTHONPATH%
|
|
399
|
+
echo Python version:
|
|
400
|
+
python --version
|
|
401
|
+
)
|
|
402
|
+
echo.
|
|
403
|
+
echo Checking pip installation...
|
|
404
|
+
python -m pip --version
|
|
405
|
+
if %errorlevel% neq 0 (
|
|
406
|
+
echo [ERROR] pip not found
|
|
407
|
+
) else (
|
|
408
|
+
echo [SUCCESS] pip found
|
|
409
|
+
echo pip version:
|
|
410
|
+
python -m pip --version
|
|
411
|
+
)
|
|
412
|
+
echo.
|
|
413
|
+
echo Press Enter to continue to step 3...
|
|
414
|
+
pause >nul
|
|
415
|
+
|
|
416
|
+
:: Step 3: Check MediCafe package installation
|
|
417
|
+
echo.
|
|
418
|
+
echo ========================================
|
|
419
|
+
echo DEBUG STEP 3: MediCafe Package Check
|
|
420
|
+
echo ========================================
|
|
421
|
+
echo.
|
|
422
|
+
echo Checking MediCafe package installation...
|
|
423
|
+
python -c "import pkg_resources; print('MediCafe=='+pkg_resources.get_distribution('medicafe').version)" 2>nul
|
|
424
|
+
if %errorlevel% neq 0 (
|
|
425
|
+
echo [ERROR] MediCafe package not found or error accessing
|
|
426
|
+
echo.
|
|
427
|
+
echo Checking if MediCafe is importable...
|
|
428
|
+
python -c "import MediCafe; print('MediCafe module found')" 2>nul
|
|
429
|
+
if %errorlevel% neq 0 (
|
|
430
|
+
echo [ERROR] MediCafe module not importable
|
|
431
|
+
) else (
|
|
432
|
+
echo [SUCCESS] MediCafe module is importable
|
|
433
|
+
)
|
|
434
|
+
) else (
|
|
435
|
+
echo [SUCCESS] MediCafe package found
|
|
436
|
+
echo Package version: %package_version%
|
|
437
|
+
)
|
|
341
438
|
echo.
|
|
342
|
-
echo
|
|
343
|
-
|
|
439
|
+
echo Press Enter to continue to step 4...
|
|
440
|
+
pause >nul
|
|
441
|
+
|
|
442
|
+
:: Step 4: Check internet connectivity
|
|
443
|
+
echo.
|
|
444
|
+
echo ========================================
|
|
445
|
+
echo DEBUG STEP 4: Internet Connectivity
|
|
446
|
+
echo ========================================
|
|
447
|
+
echo.
|
|
448
|
+
echo Testing internet connectivity...
|
|
449
|
+
ping -n 1 google.com >nul 2>&1
|
|
450
|
+
if %errorlevel% neq 0 (
|
|
451
|
+
echo [ERROR] No internet connection detected
|
|
452
|
+
echo Cannot proceed with update without internet
|
|
453
|
+
echo.
|
|
454
|
+
echo Press Enter to return to main menu...
|
|
455
|
+
pause >nul
|
|
456
|
+
goto main_menu
|
|
457
|
+
) else (
|
|
458
|
+
echo [SUCCESS] Internet connection detected
|
|
459
|
+
echo Testing PyPI connectivity...
|
|
460
|
+
python -c "import requests; print('PyPI accessible:', requests.get('https://pypi.org/pypi/medicafe/json', timeout=5).status_code)" 2>nul
|
|
461
|
+
if %errorlevel% neq 0 (
|
|
462
|
+
echo [WARNING] PyPI connectivity test failed
|
|
463
|
+
) else (
|
|
464
|
+
echo [SUCCESS] PyPI connectivity confirmed
|
|
465
|
+
)
|
|
466
|
+
)
|
|
467
|
+
echo.
|
|
468
|
+
echo Press Enter to continue to step 5...
|
|
469
|
+
pause >nul
|
|
470
|
+
|
|
471
|
+
:: Step 5: Attempt update with detailed logging
|
|
472
|
+
echo.
|
|
473
|
+
echo ========================================
|
|
474
|
+
echo DEBUG STEP 5: Starting Update Process
|
|
475
|
+
echo ========================================
|
|
476
|
+
echo.
|
|
477
|
+
echo Starting update process with detailed logging...
|
|
478
|
+
echo Update command will be logged to: upgrade_log.txt
|
|
344
479
|
echo.
|
|
345
480
|
|
|
346
481
|
:: Check if update_medicafe.py exists in the expected location, with fallback
|
|
347
482
|
if exist "%upgrade_medicafe%" (
|
|
348
|
-
echo
|
|
349
|
-
echo
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
483
|
+
echo [INFO] Using update script at: %upgrade_medicafe%
|
|
484
|
+
echo Command: python "%upgrade_medicafe%" %package_version%
|
|
485
|
+
echo.
|
|
486
|
+
echo Press Enter to execute update command...
|
|
487
|
+
pause >nul
|
|
488
|
+
echo.
|
|
489
|
+
echo Executing update command...
|
|
490
|
+
start "Medicafe Update" cmd /c python "%upgrade_medicafe%" %package_version% > upgrade_log.txt 2>&1 && (
|
|
491
|
+
echo %DATE% %TIME% Upgrade initiated successfully. >> "%temp_file%"
|
|
492
|
+
echo [SUCCESS] Update process started successfully
|
|
493
|
+
echo Check upgrade_log.txt for detailed output
|
|
353
494
|
) || (
|
|
354
495
|
echo %DATE% %TIME% Update failed. Check logs. >> upgrade_log.txt
|
|
355
|
-
echo Upgrade failed. Check upgrade_log.txt for details.
|
|
496
|
+
echo [ERROR] Upgrade failed. Check upgrade_log.txt for details.
|
|
497
|
+
echo.
|
|
498
|
+
echo Last 10 lines of upgrade_log.txt:
|
|
499
|
+
if exist upgrade_log.txt (
|
|
500
|
+
powershell "Get-Content upgrade_log.txt | Select-Object -Last 10" 2>nul || type upgrade_log.txt | tail -10
|
|
501
|
+
) else (
|
|
502
|
+
echo upgrade_log.txt not found
|
|
503
|
+
)
|
|
356
504
|
)
|
|
357
505
|
) else if exist "MediBot\update_medicafe.py" (
|
|
358
|
-
echo
|
|
359
|
-
echo
|
|
360
|
-
echo
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
506
|
+
echo [INFO] Using update script at: MediBot\update_medicafe.py
|
|
507
|
+
echo Command: python "MediBot\update_medicafe.py" %package_version%
|
|
508
|
+
echo.
|
|
509
|
+
echo Press Enter to execute update command...
|
|
510
|
+
pause >nul
|
|
511
|
+
echo.
|
|
512
|
+
echo Executing update command...
|
|
513
|
+
start "Medicafe Update" cmd /c python "MediBot\update_medicafe.py" %package_version% > upgrade_log.txt 2>&1 && (
|
|
514
|
+
echo %DATE% %TIME% Upgrade initiated successfully. >> "%temp_file%"
|
|
515
|
+
echo [SUCCESS] Update process started successfully
|
|
516
|
+
echo Check upgrade_log.txt for detailed output
|
|
364
517
|
) || (
|
|
365
518
|
echo %DATE% %TIME% Update failed. Check logs. >> upgrade_log.txt
|
|
366
|
-
echo Upgrade failed. Check upgrade_log.txt for details.
|
|
519
|
+
echo [ERROR] Upgrade failed. Check upgrade_log.txt for details.
|
|
520
|
+
echo.
|
|
521
|
+
echo Last 10 lines of upgrade_log.txt:
|
|
522
|
+
if exist upgrade_log.txt (
|
|
523
|
+
powershell "Get-Content upgrade_log.txt | Select-Object -Last 10" 2>nul || type upgrade_log.txt | tail -10
|
|
524
|
+
) else (
|
|
525
|
+
echo upgrade_log.txt not found
|
|
526
|
+
)
|
|
367
527
|
)
|
|
368
528
|
) else (
|
|
369
|
-
echo ERROR
|
|
529
|
+
echo [ERROR] update_medicafe.py not found in either location
|
|
370
530
|
echo Expected locations:
|
|
371
531
|
echo - %upgrade_medicafe%
|
|
372
532
|
echo - MediBot\update_medicafe.py
|
|
373
533
|
echo.
|
|
374
|
-
echo
|
|
534
|
+
echo Current directory contents:
|
|
535
|
+
dir /b
|
|
536
|
+
echo.
|
|
537
|
+
echo MediBot directory contents:
|
|
538
|
+
dir /b MediBot\ 2>nul || echo MediBot directory not found
|
|
539
|
+
echo.
|
|
375
540
|
echo %DATE% %TIME% Update failed - script not found. >> upgrade_log.txt
|
|
376
|
-
|
|
541
|
+
echo.
|
|
542
|
+
echo Press Enter to return to main menu...
|
|
543
|
+
pause >nul
|
|
377
544
|
goto main_menu
|
|
378
545
|
)
|
|
379
|
-
|
|
546
|
+
|
|
547
|
+
echo.
|
|
548
|
+
echo ========================================
|
|
549
|
+
echo DEBUG: Update Process Complete
|
|
550
|
+
echo ========================================
|
|
551
|
+
echo.
|
|
552
|
+
echo Update process has been initiated.
|
|
553
|
+
echo Check upgrade_log.txt for detailed output.
|
|
554
|
+
echo.
|
|
555
|
+
echo Press Enter to return to main menu...
|
|
556
|
+
pause >nul
|
|
557
|
+
goto main_menu
|
|
380
558
|
|
|
381
559
|
:: Download Carol's Emails - Using MediCafe entry point
|
|
382
560
|
:download_emails
|
MediBot/update_medicafe.py
CHANGED
|
@@ -15,6 +15,19 @@ except ImportError:
|
|
|
15
15
|
requests = None
|
|
16
16
|
print("Warning: requests module not available. Some functionality may be limited.")
|
|
17
17
|
|
|
18
|
+
def debug_step(step_number, step_title, message=""):
|
|
19
|
+
"""Print debug step information and wait for user confirmation."""
|
|
20
|
+
print("\n" + "="*60)
|
|
21
|
+
print("DEBUG STEP {}: {}".format(step_number, step_title))
|
|
22
|
+
print("="*60)
|
|
23
|
+
if message:
|
|
24
|
+
print(message)
|
|
25
|
+
print("\nPress Enter to continue...")
|
|
26
|
+
try:
|
|
27
|
+
input()
|
|
28
|
+
except:
|
|
29
|
+
pass # Handle case where input() might not work in some environments
|
|
30
|
+
|
|
18
31
|
def print_status(message, status_type="INFO"):
|
|
19
32
|
"""Print formatted status messages with ASCII-only visual indicators."""
|
|
20
33
|
if status_type == "SUCCESS":
|
|
@@ -351,44 +364,112 @@ def main():
|
|
|
351
364
|
print_status("MediCafe Update Utility", "INFO")
|
|
352
365
|
print("Starting update process...")
|
|
353
366
|
|
|
354
|
-
#
|
|
355
|
-
|
|
356
|
-
|
|
367
|
+
# DEBUG STEP 1: Environment Information
|
|
368
|
+
debug_step(1, "Environment Information",
|
|
369
|
+
"Python version: {}\n"
|
|
370
|
+
"Platform: {}\n"
|
|
371
|
+
"Current working directory: {}\n"
|
|
372
|
+
"Script location: {}\n"
|
|
373
|
+
"sys.executable: {}".format(
|
|
374
|
+
sys.version, platform.platform(), os.getcwd(),
|
|
375
|
+
__file__, sys.executable))
|
|
376
|
+
|
|
377
|
+
# DEBUG STEP 2: Check Python and pip
|
|
378
|
+
debug_step(2, "Python and pip Verification")
|
|
379
|
+
print("Checking Python installation...")
|
|
380
|
+
try:
|
|
381
|
+
process = subprocess.Popen([sys.executable, '--version'],
|
|
382
|
+
stdout=subprocess.PIPE, stderr=subprocess.PIPE)
|
|
383
|
+
stdout, stderr = process.communicate()
|
|
384
|
+
if process.returncode == 0:
|
|
385
|
+
print("Python version: {}".format(stdout.decode().strip()))
|
|
386
|
+
else:
|
|
387
|
+
print("Error checking Python: {}".format(stderr.decode().strip()))
|
|
388
|
+
except Exception as e:
|
|
389
|
+
print("Error checking Python: {}".format(e))
|
|
390
|
+
|
|
391
|
+
print("\nChecking pip installation...")
|
|
392
|
+
try:
|
|
393
|
+
process = subprocess.Popen([sys.executable, '-m', 'pip', '--version'],
|
|
394
|
+
stdout=subprocess.PIPE, stderr=subprocess.PIPE)
|
|
395
|
+
stdout, stderr = process.communicate()
|
|
396
|
+
if process.returncode == 0:
|
|
397
|
+
print("pip version: {}".format(stdout.decode().strip()))
|
|
398
|
+
else:
|
|
399
|
+
print("Error checking pip: {}".format(stderr.decode().strip()))
|
|
400
|
+
except Exception as e:
|
|
401
|
+
print("Error checking pip: {}".format(e))
|
|
402
|
+
|
|
403
|
+
# DEBUG STEP 3: Check MediCafe package
|
|
404
|
+
debug_step(3, "MediCafe Package Check")
|
|
405
|
+
package = "medicafe"
|
|
406
|
+
current_version = get_installed_version(package)
|
|
407
|
+
if current_version:
|
|
408
|
+
print("Current MediCafe version: {}".format(current_version))
|
|
409
|
+
else:
|
|
410
|
+
print("MediCafe package not found or not accessible")
|
|
411
|
+
|
|
412
|
+
# DEBUG STEP 4: Internet connectivity
|
|
413
|
+
debug_step(4, "Internet Connectivity Test")
|
|
414
|
+
if check_internet_connection():
|
|
415
|
+
print("Internet connection: OK")
|
|
416
|
+
print("Testing PyPI connectivity...")
|
|
417
|
+
try:
|
|
418
|
+
response = requests.get("https://pypi.org/pypi/medicafe/json", timeout=10)
|
|
419
|
+
print("PyPI connectivity: OK (Status: {})".format(response.status_code))
|
|
420
|
+
except Exception as e:
|
|
421
|
+
print("PyPI connectivity: FAILED - {}".format(e))
|
|
422
|
+
else:
|
|
423
|
+
print("Internet connection: FAILED")
|
|
357
424
|
print_final_result(False, "No internet connection available")
|
|
358
|
-
|
|
359
|
-
#
|
|
425
|
+
|
|
426
|
+
# DEBUG STEP 5: Check for updates
|
|
427
|
+
debug_step(5, "Version Comparison")
|
|
428
|
+
latest_version = get_latest_version(package)
|
|
429
|
+
if latest_version:
|
|
430
|
+
print("Latest available version: {}".format(latest_version))
|
|
431
|
+
if current_version:
|
|
432
|
+
comparison = compare_versions(latest_version, current_version)
|
|
433
|
+
if comparison > 0:
|
|
434
|
+
print("Update needed: Current ({}) < Latest ({})".format(current_version, latest_version))
|
|
435
|
+
elif comparison == 0:
|
|
436
|
+
print("Already up to date: Current ({}) = Latest ({})".format(current_version, latest_version))
|
|
437
|
+
else:
|
|
438
|
+
print("Version mismatch: Current ({}) > Latest ({})".format(current_version, latest_version))
|
|
439
|
+
else:
|
|
440
|
+
print("Cannot compare versions - current version not available")
|
|
441
|
+
else:
|
|
442
|
+
print("Could not retrieve latest version information")
|
|
443
|
+
print_final_result(False, "Unable to fetch latest version")
|
|
444
|
+
|
|
445
|
+
# DEBUG STEP 6: Dependencies check
|
|
446
|
+
debug_step(6, "Dependencies Check")
|
|
360
447
|
response = input("Do you want to check dependencies? (yes/no, default/enter is no): ").strip().lower()
|
|
361
448
|
if response in ['yes', 'y']:
|
|
362
449
|
ensure_dependencies()
|
|
363
450
|
else:
|
|
364
451
|
print_status("Skipping dependency check.", "INFO")
|
|
365
452
|
time.sleep(3) # Pause for 3 seconds before proceeding
|
|
366
|
-
|
|
367
|
-
package = "medicafe"
|
|
368
453
|
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
print_final_result(False, "Package not installed")
|
|
373
|
-
|
|
374
|
-
latest_version = get_latest_version(package)
|
|
375
|
-
if not latest_version:
|
|
376
|
-
print_status("Could not retrieve the latest version information.", "ERROR")
|
|
377
|
-
print_final_result(False, "Unable to fetch latest version")
|
|
378
|
-
|
|
379
|
-
print("Current version of {}: {}".format(package, current_version))
|
|
380
|
-
print("Latest version of {}: {}".format(package, latest_version))
|
|
381
|
-
|
|
382
|
-
if compare_versions(latest_version, current_version) > 0:
|
|
454
|
+
# DEBUG STEP 7: Perform update
|
|
455
|
+
debug_step(7, "Update Execution")
|
|
456
|
+
if current_version and latest_version and compare_versions(latest_version, current_version) > 0:
|
|
383
457
|
print_status("A newer version is available. Proceeding with upgrade.", "INFO")
|
|
458
|
+
print("Current version: {}".format(current_version))
|
|
459
|
+
print("Target version: {}".format(latest_version))
|
|
460
|
+
|
|
384
461
|
if upgrade_package(package):
|
|
385
|
-
# Verify upgrade
|
|
462
|
+
# DEBUG STEP 8: Verify upgrade
|
|
463
|
+
debug_step(8, "Upgrade Verification")
|
|
386
464
|
time.sleep(3)
|
|
387
465
|
new_version = get_installed_version(package)
|
|
466
|
+
print("New installed version: {}".format(new_version))
|
|
467
|
+
|
|
388
468
|
if compare_versions(new_version, latest_version) >= 0:
|
|
389
469
|
print_status("Upgrade successful. New version: {}".format(new_version), "SUCCESS")
|
|
390
470
|
|
|
391
|
-
#
|
|
471
|
+
# DEBUG STEP 9: Clear cache
|
|
472
|
+
debug_step(9, "Cache Clearing")
|
|
392
473
|
print_status("Clearing Python cache to prevent import issues...", "INFO")
|
|
393
474
|
if clear_python_cache():
|
|
394
475
|
print_status("Cache cleared successfully. Update complete.", "SUCCESS")
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
MediBot/MediBot.bat,sha256=
|
|
1
|
+
MediBot/MediBot.bat,sha256=2nREvI_GRm7Flx2QzohCXvVUIeuUTWhPtjS7-qeRfs4,30436
|
|
2
2
|
MediBot/MediBot.py,sha256=E1vE8AskTFf5lp8GVaJKXOUyKZTbi6t01f1taJmMwVQ,28779
|
|
3
3
|
MediBot/MediBot_Charges.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
4
4
|
MediBot/MediBot_Crosswalk_Library.py,sha256=X-lo8bvT-vmCqbrKFi_ApmVI6wQs53mz1ygyVeCf1SI,23463
|
|
@@ -15,7 +15,7 @@ MediBot/PDF_to_CSV_Cleaner.py,sha256=ZZphmq-5K04DkrZNlcwNAIoZPOD_ROWvS3PMkKFxeiM
|
|
|
15
15
|
MediBot/__init__.py,sha256=mdTybtb5aRozmwDuAtf9nO8wv03HjNCDU0PnJy4Pwko,2957
|
|
16
16
|
MediBot/get_medicafe_version.py,sha256=uyL_UIE42MyFuJ3SRYxJp8sZx8xjTqlYZ3FdQuxLduY,728
|
|
17
17
|
MediBot/update_json.py,sha256=vvUF4mKCuaVly8MmoadDO59M231fCIInc0KI1EtDtPA,3704
|
|
18
|
-
MediBot/update_medicafe.py,sha256=
|
|
18
|
+
MediBot/update_medicafe.py,sha256=MaPzWntvwIPETaiLDRVuUApaV2L_Nff9_Qq731YESqM,22732
|
|
19
19
|
MediCafe/MediLink_ConfigLoader.py,sha256=gCC4me808KzSNneRTj6h3IFwjERxP-Q9XQUayPZu7Ew,7009
|
|
20
20
|
MediCafe/__init__.py,sha256=6bSEXGy35ljEeTv40LcsokC8riYGk6lRj1QDpSepwnA,5461
|
|
21
21
|
MediCafe/__main__.py,sha256=Sr_4BHC3_o11472EEJ9qcrfuQLTyPZJHNqTTLb1yVx8,12050
|
|
@@ -73,9 +73,9 @@ MediLink/test_cob_library.py,sha256=wUMv0-Y6fNsKcAs8Z9LwfmEBRO7oBzBAfWmmzwoNd1g,
|
|
|
73
73
|
MediLink/test_timing.py,sha256=yH2b8QPLDlp1Zy5AhgtjzjnDHNGhAD16ZtXtZzzESZw,2042
|
|
74
74
|
MediLink/test_validation.py,sha256=FJrfdUFK--xRScIzrHCg1JeGdm0uJEoRnq6CgkP2lwM,4154
|
|
75
75
|
MediLink/webapp.html,sha256=JPKT559aFVBi1r42Hz7C77Jj0teZZRumPhBev8eSOLk,19806
|
|
76
|
-
medicafe-0.250806.
|
|
77
|
-
medicafe-0.250806.
|
|
78
|
-
medicafe-0.250806.
|
|
79
|
-
medicafe-0.250806.
|
|
80
|
-
medicafe-0.250806.
|
|
81
|
-
medicafe-0.250806.
|
|
76
|
+
medicafe-0.250806.7.dist-info/LICENSE,sha256=65lb-vVujdQK7uMH3RRJSMwUW-WMrMEsc5sOaUn2xUk,1096
|
|
77
|
+
medicafe-0.250806.7.dist-info/METADATA,sha256=68qDI5cDBNNplCeUWViqBCIlmO4fB9YcFYYyukj6zFY,5501
|
|
78
|
+
medicafe-0.250806.7.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
|
|
79
|
+
medicafe-0.250806.7.dist-info/entry_points.txt,sha256=m3RBUBjr-xRwEkKJ5W4a7NlqHZP_1rllGtjZnrRqKe8,52
|
|
80
|
+
medicafe-0.250806.7.dist-info/top_level.txt,sha256=U6-WBJ9RCEjyIs0BlzbQq_PwedCp_IV9n1616NNV5zA,26
|
|
81
|
+
medicafe-0.250806.7.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|