first draft of pathfunctions
This commit is contained in:
@@ -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__":
|
||||
|
||||
Reference in New Issue
Block a user