Chris Approves
This commit is contained in:
@@ -33,8 +33,20 @@ def menu():
|
||||
utils.allowlist.allowlistexechistories(url,False)
|
||||
if choice == '3':
|
||||
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)
|
||||
|
||||
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)
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
apivalidation()
|
||||
Reference in New Issue
Block a user