Google App Engine services SDK for Python 3
Project description
Google App Engine bundled services SDK for Python 3
This is a release of the App Engine services SDK for Python 3. It provides access to various services and API endpoints that were previously only available on the Python 2.7 runtime.
See the documentation to learn more about using this SDK, and learn more about it in this product announcement (Fall 2021).
Additional examples (Datastore [NDB], Task Queues [push tasks], Memcache) can be found in the App Engine migration repo. (Specifically look for samples whose folders have a b
but where the Python 2 equivalent folder does not have an a
, meaning this SDK is required, e.g., Modules 1 [mod1
and mod1b
], 7, 12, etc.)
Using the SDK
In your requirements.txt
file, add the following:
appengine-python-standard>=1.0.0
To use a pre-release version (Eg. 1.0.1-rc1
), modify the above line to appengine-python-standard>=[insert_version]
(Eg. appengine-python-standard>=1.0.1-rc1
).
In your app's app.yaml
, add the following:
app_engine_apis: true
In your main.py
, import google.appengine.api.wrap_wsgi_app()
and call it on your
WSGI app object.
Example for a standard WSGI app:
import google.appengine.api
def app(environ, start_response):
start_response('200 OK', [('Content-Type', 'text/plain')])
yield b'Hello world!\n'
app = google.appengine.api.wrap_wsgi_app(app)
Example for a Flask app:
import google.appengine.api
from flask import Flask, request
app = Flask(__name__)
app.wsgi_app = google.appengine.api.wrap_wsgi_app(app.wsgi_app)
Then deploy your app as usual, with gcloud app deploy
. The following modules are available:
google.appengine.api.app_identity
google.appengine.api.background_thread
google.appengine.api.blobstore
google.appengine.api.capabilities
google.appengine.api.croninfo
google.appengine.api.dispatchinfo
google.appengine.api.images
google.appengine.api.mail
google.appengine.api.memcache
google.appengine.api.modules
google.appengine.api.oauth
google.appengine.api.runtime
google.appengine.api.search
google.appengine.api.taskqueue
google.appengine.api.urlfetch
google.appengine.api.users
google.appengine.ext.blobstore
google.appengine.ext.db
google.appengine.ext.gql
google.appengine.ext.key_range
google.appengine.ext.ndb
google.appengine.ext.testbed
Using the development version of the SDK
To install the code from the main
branch on GitHub rather than the latest
version published to PyPI, put this in your requirements.txt
file instead of
appengine-python-standard
:
https://github.com/GoogleCloudPlatform/appengine-python-standard/archive/main.tar.gz
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file appengine-python-standard-tbafork-1.1.5.dev1.tar.gz
.
File metadata
- Download URL: appengine-python-standard-tbafork-1.1.5.dev1.tar.gz
- Upload date:
- Size: 774.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.12.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | dc3f515ba527feed9c38f3bda9678f58108c9a81c1138443cc7aeeffa5fad1c6 |
|
MD5 | d074bc13ebd2dbd3a530b90be7aa941c |
|
BLAKE2b-256 | d6b1a38f17b87365dcc04a73bb058892650f80c2beeea88f29b0a3758da5c7ca |
File details
Details for the file appengine_python_standard_tbafork-1.1.5.dev1-py3-none-any.whl
.
File metadata
- Download URL: appengine_python_standard_tbafork-1.1.5.dev1-py3-none-any.whl
- Upload date:
- Size: 910.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.12.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 47d11fd52f4da77cf13ea7570198580cdb9d92bdf646d955b396b9b130eb24ef |
|
MD5 | 48aa4b37b25012d00f7a8e0f0d878dd9 |
|
BLAKE2b-256 | 7c0b061ab4ce7d4c9088ffe4d000d8acaf68aa43f0d3005f3fcbbea1d7d54941 |