appengine-python-standard icon indicating copy to clipboard operation
appengine-python-standard copied to clipboard

Google App Engine services SDK for Python 3

Results 33 appengine-python-standard issues
Sort by recently updated
recently updated
newest added

Welcome to [Renovate](https://redirect.github.com/renovatebot/renovate)! This is an onboarding PR to help you understand and configure settings before regular Pull Requests begin. 🚦 To activate Renovate, merge this Pull Request. To disable...

## Expected Behavior The NDB transaction() function has a `read_only` property to indicate that the transaction will only perform entity reads, potentially improving throughput. I expect that it will start...

Fixes # > It's a good idea to open an issue first for discussion. - [ ] Tests pass - [ ] Appropriate changes to README are included in PR

'latin1' encoding is the fix to most common fix of the DecodeError's, throughout the docs it's the adopted fix as well, which can be seen here: https://cloud.google.com/appengine/docs/standard/python3/services/access After this fix,...

## Expected Behavior No decode issues ## Actual Behavior Decode issues ## Steps to Reproduce the Problem 0. set NDB_USE_CROSS_COMPATIBLE_PICKLE_PROTOCOL:True in app.yaml 1. Have a ndb.PickleProperty in python27 2. Access...

We are using F1 instances (2 cores). In Python 3, with no meaningful code changes, we are seeing 1.5-2x median latency across the app, an even greater increase in created/active/billed...

Fixes # > It's a good idea to open an issue first for discussion. - [ ] Tests pass - [ ] Appropriate changes to README are included in PR

- python-version matrix updates Update the python-version matrix in the CI workflows to include the new supported runtimes. Auto-generated by https://github.com/chizhg/serverless-runtimes-automation/actions/runs/6665899415

One way to fix https://github.com/GoogleCloudPlatform/appengine-python-standard/issues/45 I'm not sure this is exactly the right behavior when it comes to all permutations of compatibility the library wants to main, but I'd be...

## Expected Behavior Given the following example ndb models and code: ```py from google.appengine.ext import ndb RED = "red" GREEN = "green" BLUE = "blue" COLORS = [RED, GREEN, BLUE]...