Sharing
This commit is contained in:
+25
-2
@@ -47,15 +47,38 @@ def menu():
|
||||
categorized[0].to_html("needsreview.html", index=False)
|
||||
categorized[1].to_html("approved.html", index=False)
|
||||
categorized[2].to_html("remaining.html", index=False)
|
||||
|
||||
if choice == '4':
|
||||
html_file = "augmentedlist.html"
|
||||
augmented_df = pd.read_html(html_file)
|
||||
print(augmented_df)
|
||||
|
||||
combined_df = pd.concat(augmented_df, ignore_index=True)
|
||||
test = utils.pathfunctions.filepathInitalGroup(combined_df)
|
||||
test.to_html("testgroup2.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 choice == '5':
|
||||
|
||||
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)
|
||||
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__":
|
||||
|
||||
Reference in New Issue
Block a user