first draft of pathfunctions

This commit is contained in:
Driven-Element
2025-08-20 22:46:55 -04:00
parent e2356d3c59
commit 2c1b91fc68
7 changed files with 49 additions and 40 deletions
+10
View File
@@ -3,6 +3,7 @@ import os
import utils.getdeviceevents
import utils.allowlist
import utils.hashfunctions
import utils.pathfunctions
import urllib3
import pandas as pd
@@ -46,6 +47,15 @@ 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)
if __name__ == "__main__":