Add main file with implementation plan

This commit is contained in:
The Magician 2023-10-19 11:31:24 +01:00
parent 973cb244ce
commit 8a76ea5cf6
1 changed files with 14 additions and 0 deletions

14
pipeloader.py Normal file
View File

@ -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()