We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Large in-memory zip files should be treated like large files and uploaded in chunks, however, this throws FileNotFoundError.
FileNotFoundError
Offending code:
for i in range(chunk_count): start = i * chunk_size end = min(start + chunk_size, file_data_size) part_number = i + 1 with open(filename, 'rb') as f: f.seek(start) chunk_data = f.read(end - start)
Cannot open(filename, 'rb') as no file exists on disk.
open(filename, 'rb')
The text was updated successfully, but these errors were encountered:
davedavemckay
Successfully merging a pull request may close this issue.
Large in-memory zip files should be treated like large files and uploaded in chunks, however, this throws
FileNotFoundError
.Offending code:
Cannot
open(filename, 'rb')
as no file exists on disk.The text was updated successfully, but these errors were encountered: