Below code getting terminated with error: Read timed out. (read timeout=30) for 250MB file
import dropbox
dbx = dropbox.Dropbox("TokenId")
print "download started"
md, zipFile = dbx.files_download_zip("Filepath")
writer = open("download/Test.zip", 'wb')
writer.write(zipFile.content)
writer.close()