15 lines
469 B
Python
15 lines
469 B
Python
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()
|