Google App Engine - Error uploading file to blobstore from Python code
问题 I am working on an app to process emails hitting my mailbox. I have modified my mail settings to forward incoming mails to myapp . The mails reaching myapp will be routed to the handler script (" handle_incoming_email.py ") where it will be processed. My app.yaml file looks like this app.yaml application: myapp version: 1-1 runtime: python27 api_version: 1 threadsafe: false default_expiration: "360d" handlers: - url: /_ah/mail/.+ script: myapp/utils/handle_incoming_email.py The mail handler