Mdified comparison route and roundoff values checking also.

This commit is contained in:
2025-12-27 16:53:14 +05:30
parent 2e3db9aa1b
commit b9de362b43
6 changed files with 121 additions and 78 deletions

14
AppCode/FileHandler.py Normal file
View File

@@ -0,0 +1,14 @@
import os
class FileHandler:
UPLOAD_FOLDER = 'uploads'
RESULT_FILE = 'unmatched_result.xlsx'
@staticmethod
def check_or_create_folder_exists():
if not os.path.exists(FileHandler.UPLOAD_FOLDER):
os.makedirs(FileHandler.UPLOAD_FOLDER)