From 8a76ea5cf652bab6348e8b0b7dff3514823fc464 Mon Sep 17 00:00:00 2001 From: The Magician Date: Thu, 19 Oct 2023 11:31:24 +0100 Subject: [PATCH] Add main file with implementation plan --- pipeloader.py | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 pipeloader.py diff --git a/pipeloader.py b/pipeloader.py new file mode 100644 index 0000000..24eb943 --- /dev/null +++ b/pipeloader.py @@ -0,0 +1,14 @@ +def main(): + # Initialize webdriver + # Open browser + # Navigate to filegarden + # Go To Your Garden + # Log in (email) + # Go To Your Garden + # Get list of filenames in File Garden + # Get list of files in target upload directory that don't exist in File Garden (test based on filename? size? file contents?) + # For each file in the second list, go through the file upload process + print("Hello, world") + +if __name__ == "__main__": + main()