You can use Cloud Storage to store and serve files, such as movies or images or other static content.
This document describes how to use the Google Cloud Client Library in your app to store data in and retrieve data from Cloud Storage.
Before you begin
Follow the instructions in "Hello, World!" for Python on App Engine to set up your environment and project, and to understand how Python apps are structured in App Engine. Write down and save your project ID, because you will need it to run the sample application described in this document.
Make sure you create a Cloud Storage bucket for your application by invoking the following command:
gsutil mb gs://[YOUR_BUCKET_NAME]
Make the bucket publicly readable so it can serve files:
gsutil defacl set public-read gs://[YOUR_BUCKET_NAME]
Download the sample
To clone the repository:
git clone https://github.com/GoogleCloudPlatform/python-docs-samples
cd python-docs-samples/appengine/flexible/storage
Edit project configuration and install dependencies
In app.yaml
, set GOOGLE_STORAGE_BUCKET
; this value is the
name of the Cloud Storage bucket you created previously.
In requirements.txt
, notice that you must include the
google-cloud-storage
library, because this provides Cloud Storage
functions.
Application code
The sample application presents a web page prompting the user to supply a file to be stored in Cloud Storage. When the user selects a file and clicks submit, the upload handler loads the file content into a Cloud Storage blob and writes it to the Cloud Storage bucket.
Notice that after the file is uploaded to Cloud Storage, the public URL to this file is returned, which you can use to serve the file directly from Cloud Storage. You should store this value in your app for future use.
For more information
For complete information on Cloud Storage, see the Cloud Storage documentation.