Suppose I have some files I'd like to upload to a folder on Dropbox using dropbox-sdk-python. Some of the files are more than 150 MB, some of them less than 1 MB.
The documentation recommends uploading many files in parallel and offers 6 functions for that:
```
'files_upload_session_append',
'files_upload_session_append_v2',
'files_upload_session_finish',
'files_upload_session_finish_batch',
'files_upload_session_finish_batch_check',
'files_upload_session_start'
```
There are a lot of recomendations in their documentation but I did not find a complete example for doing such a common thing. I did not use Dropbox API before and I dont know in which way I should organize all the upload functions. Can anybody share a complete example for batch uploading?