From 352ce3952034677450d81ff7ea2cbf8e3b8da275 Mon Sep 17 00:00:00 2001 From: = <=> Date: Thu, 21 Aug 2025 12:41:14 -0400 Subject: [PATCH] 'Fixed' Path function --- AirlockTools.py | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/AirlockTools.py b/AirlockTools.py index 128a53b..6d3c194 100644 --- a/AirlockTools.py +++ b/AirlockTools.py @@ -52,8 +52,8 @@ def menu(): html_file = "augmentedlist.html" augmented_df = pd.read_html(html_file) print(augmented_df) - combined_df = pd.concat(augmented_df, ignore_index=True) + path_eligible, path_ineligible = utils.pathfunctions.filepathInitialGroup(combined_df) path_eligible.to_html("EligblePaths.html", index=False) path_ineligible.to_html("IneligiblePaths.html",index=False) @@ -62,23 +62,30 @@ def menu(): executionhist = utils.allowlist.allowlistexechistories(url,True) print(executionhist) + aggregated = utils.hashfunctions.aggregateHashes(executionhist) print(aggregated) + augmented = utils.hashfunctions.augmentAggregatedHashes(url,aggregated) print(augmented) + augmented.to_html("augmentedlist.html", index=False) html_file = "augmentedlist.html" augmented_df = pd.read_html(html_file) combined_df = pd.concat(augmented_df, ignore_index=True) + path_eligible, path_ineligible = utils.pathfunctions.filepathInitialGroup(combined_df) + path_eligible.to_html("EligblePaths.html", index=False) + path_ineligible.to_html("IneligiblePaths.html",index=False) + badpublisherlist = [] categorized = utils.hashfunctions.categorizeHashes(augmented, 5, badpublisherlist) categorized[0].to_html("needsreview.html", index=False) categorized[1].to_html("approved.html", index=False) categorized[2].to_html("remaining.html", index=False) - path_eligible, path_ineligible = utils.pathfunctions.filepathInitialGroup(combined_df) - path_eligible.to_html("EligblePaths.html", index=False) - path_ineligible.to_html("IneligiblePaths.html",index=False) + + + if __name__ == "__main__":