Writing to the blostore using the Files API is deprecated. But we can upload a blob to update the blob
This way we do not need GCS (Google Cloud Storage) To use GCS you have to pay for the application
| import os | |
| import SimpleHTTPServer | |
| from SimpleHTTPServer import SimpleHTTPRequestHandler | |
| class RangeHTTPRequestHandler(SimpleHTTPRequestHandler): | |
| """RangeHTTPRequestHandler is a SimpleHTTPRequestHandler | |
| with HTTP 'Range' support""" | |
| def send_head(self): | |
| """Common code for GET and HEAD commands. |