how can i get uploaded time of a drop box shared file using python..I would like to download drop box files, that are uploaded today.please help me..
If you're using Python, we recommend using the official Dropbox API v2 Python SDK.
With that, you can retrieve and check the FileMetadata objects for files to see when they were last uploaded/modified. Specifically, the FileMetadata.server_modified field contains the datetime of the latest change to the file.
You can retrieve FileMetadata objects from a number of different methods, such as files_get_metadata, or files_list_folder/files_list_folder_continue.
You can download files using files_download.