appengine-gcs-blobstore-python
appengine-gcs-blobstore-python copied to clipboard
App Engine cloudstorage examples using SDK and GAE production. This code shows how to read and write blobs (because of the deprecated blobstore Files API) and how to create a serving url.
Results
1
appengine-gcs-blobstore-python issues
Sort by
recently updated
recently updated
newest added
In line 49 of `blob_files.py` you have ``` if bf and gcs_filename != bf.gcs_filename: logging.error('new gcs_filename: %s already exists as gcs_filename: %s' % (gcs_filename, bf.gcs_filename)) return None ``` This seems...