We are looking for examples and pointers to help us with the creation of a system using your python tools wherein:
Clients will share a folder with our business. What is the best practice for doing this? Can we collect their credentials on our site (I am imagining something like openID wherein they authenticate their dropbox account. Is there an example of this)? Or should they share their folder with our business via their dropbox client application? Or is there another way?
Once folders are shared with us, we want to check those folders every N minutes to look for new files. What is the best practice for determining which files are new? Checksums or time stamps that we do the book keeping on? Or do your tools let us track what we've downloaded already and help us filter for only new files?
If there are new files in one of the sahred folders, we want to copy them to aws s3. Are there examples of this migration?. The files could be large video files. Some preliminary research suggests this might be problematic when moving files from a shared folder -- is this the case (http://stackoverflow.com/a/20243081/62255)?
Thank you for any pointers and suggestions!