I'm trying to upload tar files to the dropbox using this:
get_client().put_file(path_for_tar_in_db, see_below ,True)
I tried so far:
see_below = open(path,'r')
see_below = path
see_below = tarfile.open(path,'r')
Nothing helped so far.
First one makes corrupted files.
Second creates txt files.
And last one just errors.
Can somebody please help me? :)