appengine-python-standard


Nameappengine-python-standard JSON
Version 1.1.6 PyPI version JSON
download
home_pagehttps://github.com/GoogleCloudPlatform/appengine-python-standard
SummaryGoogle App Engine services SDK for Python 3
upload_time2024-01-22 18:57:42
maintainer
docs_urlNone
authorGoogle LLC
requires_python>=3.6, <4
license
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # 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](https://cloud.google.com/appengine/docs/standard/python3/services/access) to learn more about using this SDK, and learn more about it in [this product announcement](http://cloud.google.com/blog/products/serverless/support-for-app-engine-services-in-second-generation-runtimes) (Fall 2021).

Additional examples (Datastore [NDB], Task Queues [push tasks], Memcache) can be found in the [App Engine migration repo](https://github.com/googlecodelabs/migrate-python2-appengine). (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`

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/GoogleCloudPlatform/appengine-python-standard",
    "name": "appengine-python-standard",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.6, <4",
    "maintainer_email": "",
    "keywords": "",
    "author": "Google LLC",
    "author_email": "",
    "download_url": "https://files.pythonhosted.org/packages/f3/61/41289e8fddead3a8582b4b94b610391910fee66a667a74060c9e1ea6642e/appengine-python-standard-1.1.6.tar.gz",
    "platform": null,
    "description": "# Google App Engine bundled services SDK for Python 3\n\nThis 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.\n\nSee the [documentation](https://cloud.google.com/appengine/docs/standard/python3/services/access) to learn more about using this SDK, and learn more about it in [this product announcement](http://cloud.google.com/blog/products/serverless/support-for-app-engine-services-in-second-generation-runtimes) (Fall 2021).\n\nAdditional examples (Datastore [NDB], Task Queues [push tasks], Memcache) can be found in the [App Engine migration repo](https://github.com/googlecodelabs/migrate-python2-appengine). (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.)\n\n\n## Using the SDK\n\nIn your `requirements.txt` file, add the following:\n\n`appengine-python-standard>=1.0.0`\n\nTo 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`).\n\nIn your app's `app.yaml`, add the following:\n\n`app_engine_apis: true`\n\nIn your `main.py`, import `google.appengine.api.wrap_wsgi_app()` and call it on your\nWSGI app object.\n\nExample for a standard WSGI app:\n\n    import google.appengine.api\n\n    def app(environ, start_response):\n        start_response('200 OK', [('Content-Type', 'text/plain')])\n        yield b'Hello world!\\n'\n\n    app = google.appengine.api.wrap_wsgi_app(app)\n\nExample for a Flask app:\n\n    import google.appengine.api\n    from flask import Flask, request\n\n    app = Flask(__name__)\n    app.wsgi_app = google.appengine.api.wrap_wsgi_app(app.wsgi_app)\n\nThen deploy your app as usual, with `gcloud app deploy`. The following modules are available:\n\n- `google.appengine.api.app_identity`\n- `google.appengine.api.background_thread`\n- `google.appengine.api.blobstore`\n- `google.appengine.api.capabilities`\n- `google.appengine.api.croninfo`\n- `google.appengine.api.dispatchinfo`\n- `google.appengine.api.images`\n- `google.appengine.api.mail`\n- `google.appengine.api.memcache`\n- `google.appengine.api.modules`\n- `google.appengine.api.oauth`\n- `google.appengine.api.runtime`\n- `google.appengine.api.search`\n- `google.appengine.api.taskqueue`\n- `google.appengine.api.urlfetch`\n- `google.appengine.api.users`\n- `google.appengine.ext.blobstore`\n- `google.appengine.ext.db`\n- `google.appengine.ext.gql`\n- `google.appengine.ext.key_range`\n- `google.appengine.ext.ndb`\n- `google.appengine.ext.testbed`\n\n\n## Using the development version of the SDK\n\nTo install the code from the `main` branch on GitHub rather than the latest\nversion published to PyPI, put this in your `requirements.txt` file instead of\n`appengine-python-standard`:\n\n`https://github.com/GoogleCloudPlatform/appengine-python-standard/archive/main.tar.gz`\n",
    "bugtrack_url": null,
    "license": "",
    "summary": "Google App Engine services SDK for Python 3",
    "version": "1.1.6",
    "project_urls": {
        "Homepage": "https://github.com/GoogleCloudPlatform/appengine-python-standard"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8cefb4bf8faf37aa5f5b8f23483f0f72b1dde67a8ad6323a4ebd324830fdf096",
                "md5": "112559d4ae77af4176b5075ca7db1658",
                "sha256": "0fca07b290282b9449590cbdb39b3461c45f2b6037523949f028ff2cba82c85e"
            },
            "downloads": -1,
            "filename": "appengine_python_standard-1.1.6-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "112559d4ae77af4176b5075ca7db1658",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.6, <4",
            "size": 993502,
            "upload_time": "2024-01-22T18:57:39",
            "upload_time_iso_8601": "2024-01-22T18:57:39.980151Z",
            "url": "https://files.pythonhosted.org/packages/8c/ef/b4bf8faf37aa5f5b8f23483f0f72b1dde67a8ad6323a4ebd324830fdf096/appengine_python_standard-1.1.6-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f36141289e8fddead3a8582b4b94b610391910fee66a667a74060c9e1ea6642e",
                "md5": "5ebaaeda8fdad9bf71451683fd9453a7",
                "sha256": "c2aec138a24f8462d6199c65666590dab14acb18af6c62950c82bc8d40862558"
            },
            "downloads": -1,
            "filename": "appengine-python-standard-1.1.6.tar.gz",
            "has_sig": false,
            "md5_digest": "5ebaaeda8fdad9bf71451683fd9453a7",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.6, <4",
            "size": 836825,
            "upload_time": "2024-01-22T18:57:42",
            "upload_time_iso_8601": "2024-01-22T18:57:42.807737Z",
            "url": "https://files.pythonhosted.org/packages/f3/61/41289e8fddead3a8582b4b94b610391910fee66a667a74060c9e1ea6642e/appengine-python-standard-1.1.6.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-01-22 18:57:42",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "GoogleCloudPlatform",
    "github_project": "appengine-python-standard",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "tox": true,
    "lcname": "appengine-python-standard"
}
        
Elapsed time: 0.38716s