pypi google-resumable-media 0.0.5

latest releases: 2.7.0, 2.6.0, 2.5.0...
7 years ago
  • Adding optional total_bytes argument to ResumableUpload.initiate(). This can be used to explicitly declare the size of the upload. Until this release, the upload size was determined implicitly by calling stream.seek(0, os.SEEK_END) (i.e. seeking until the end of the stream).
  • Adding optional stream_final arguments to ResumableUpload.initiate(). When stream_final=False (and total_bytes is unset), the upload will be started with an unknown size. This can occur, e.g. if the resource is generated on the fly, such as application logs. Such uploads are considered "finished" when the stream is exhausted and at that point the upload will send a content range header indicating completion to the server.

This feature was mentioned in the initial release notes as:

  • Support for resumable uploads with size unknown when initiate()-d

PyPI: https://pypi.python.org/pypi/google-resumable-media/0.0.5
Docs: https://googlecloudplatform.github.io/google-resumable-media-python/0.0.5/

Don't miss a new google-resumable-media release

NewReleases is sending notifications on new releases.