Google App Engine services SDK for Python 3
Project description
Google App Engine services SDK for Python 3 (preview)
This is a preview release of the App Engine services SDK for Python 3. It provides access to various API endpoints that were previously only available on the Python 2.7 runtime.
See the documentation to learn more about using this SDK.
We are working to support more App Engine bundled service APIs for Python 3. To sign up for the private preview, visit https://docs.google.com/forms/d/e/1FAIpQLSd1hFLA2UFSYwIMxm9ZI3pwigORZBgjJRH0qrnhtE7nvhhRCQ/viewform.
Using the SDK
In your requirements.txt
file, add the following:
appengine-python-standard>=0.3.0
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
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 beta app deploy
(currently only the Beta version has the capability to enable these APIs). 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.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-0.3.0.tar.gz
.
File metadata
- Download URL: appengine-python-standard-0.3.0.tar.gz
- Upload date:
- Size: 639.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6d42fc3c835d7deb7962cbdd92d853a98eeed568cdada686c0d360f4895d333e |
|
MD5 | 5fdc8273e19ebe5f1dc0d09d5cacc1b0 |
|
BLAKE2b-256 | 3e4c0469587f4cb001dc8fd0d1c1a7543e3ba1bf54804df62469e20f2ea934cd |
File details
Details for the file appengine_python_standard-0.3.0-py3-none-any.whl
.
File metadata
- Download URL: appengine_python_standard-0.3.0-py3-none-any.whl
- Upload date:
- Size: 753.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 977e96ade0cbe469c6e200157f287b0a00c3fd0394da20d84468175db52cf14c |
|
MD5 | 2d34cf900fd78e166186017f51468275 |
|
BLAKE2b-256 | 09de843952689be4ecaf6cf9717e30b93e42ac1262df2d8cb5e2cf0741c7e548 |