├── .github └── CODEOWNERS ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── mod0-baseline ├── .gcloudignore ├── README.md ├── app.yaml ├── index.html └── main.py ├── mod1-flask ├── .gcloudignore ├── README.md ├── app.yaml ├── appengine_config.py ├── main.py ├── requirements.txt └── templates │ └── index.html ├── mod11-functions ├── .gcloudignore ├── README.md ├── main.py ├── requirements.txt └── templates │ └── index.html ├── mod12-memcache ├── .gcloudignore ├── README.md ├── app.yaml ├── appengine_config.py ├── main.py ├── requirements.txt └── templates │ └── index.html ├── mod12b-memcache ├── .gcloudignore ├── README.md ├── app.yaml ├── main.py ├── requirements.txt └── templates │ └── index.html ├── mod13a-memorystore ├── .gcloudignore ├── README.md ├── app.yaml ├── appengine_config.py ├── main.py ├── requirements.txt └── templates │ └── index.html ├── mod13b-memorystore ├── .gcloudignore ├── README.md ├── app.yaml ├── main.py ├── requirements.txt └── templates │ └── index.html ├── mod15-blobstore ├── .gcloudignore ├── README.md ├── app.yaml ├── main-gcs.py ├── main.py └── templates │ └── index.html ├── mod15b-blobstore ├── README.md ├── app.yaml ├── main.py ├── requirements.txt └── templates │ └── index.html ├── mod16-cloudstorage ├── .gcloudignore ├── README.md ├── app.yaml ├── appengine_config.py ├── main-migrate.py ├── main.py ├── requirements.txt └── templates │ └── index.html ├── mod18-gaepull ├── .gcloudignore ├── README.md ├── app.yaml ├── appengine_config.py ├── main.py ├── queue.yaml ├── requirements.txt └── templates │ └── index.html ├── mod19-pubsub ├── .gcloudignore ├── README.md ├── app.yaml ├── app3.yaml ├── appengine_config.py ├── main.py ├── maker.py ├── requirements.txt └── templates │ └── index.html ├── mod1b-flask ├── .gcloudignore ├── README.md ├── app.yaml ├── main.py ├── requirements.txt └── templates │ └── index.html ├── mod20-gaeusers ├── .gcloudignore ├── README.md ├── app.yaml ├── appengine_config.py ├── main.py ├── requirements.txt └── templates │ └── index.html ├── mod21a-idenplat ├── .gcloudignore ├── README.md ├── app.yaml ├── appengine_config.py ├── main.py ├── requirements.txt └── templates │ └── index.html ├── mod21b-idenplat ├── .gcloudignore ├── README.md ├── app.yaml ├── main.py ├── requirements.txt └── templates │ └── index.html ├── mod22-bundled ├── README.md ├── blobstore2 │ ├── .gcloudignore │ ├── README.md │ ├── app.yaml │ └── main.py ├── blobstore3 │ ├── .gcloudignore │ ├── README.md │ ├── app.yaml │ ├── main.py │ └── requirements.txt ├── deferred2 │ ├── .gcloudignore │ ├── README.md │ ├── app.yaml │ └── main.py ├── deferred3 │ ├── .gcloudignore │ ├── README.md │ ├── app.yaml │ ├── main.py │ └── requirements.txt ├── mail2 │ ├── .gcloudignore │ ├── README.md │ ├── app.yaml │ └── main.py └── mail3 │ ├── .gcloudignore │ ├── README.md │ ├── app.yaml │ ├── main.py │ └── requirements.txt ├── mod2a-cloudndb ├── .gcloudignore ├── README.md ├── app.yaml ├── appengine_config.py ├── main.py ├── requirements.txt └── templates │ └── index.html ├── mod2b-cloudndb ├── .gcloudignore ├── README.md ├── app.yaml ├── main.py ├── requirements.txt └── templates │ └── index.html ├── mod3a-datastore ├── .gcloudignore ├── README.md ├── app.yaml ├── appengine_config.py ├── main.py ├── requirements.txt └── templates │ └── index.html ├── mod3b-datastore ├── .gcloudignore ├── README.md ├── app.yaml ├── main.py ├── requirements.txt └── templates │ └── index.html ├── mod4a-rundocker ├── .dockerignore ├── .gcloudignore ├── Dockerfile ├── README.md ├── main.py ├── requirements.txt └── templates │ └── index.html ├── mod4b-rundocker ├── .dockerignore ├── .gcloudignore ├── Dockerfile ├── README.md ├── main.py ├── requirements.txt └── templates │ └── index.html ├── mod5-runbldpks ├── .gcloudignore ├── Procfile ├── README.md ├── main.py ├── requirements.txt └── templates │ └── index.html ├── mod6-firestore ├── .gcloudignore ├── README.md ├── app.yaml ├── main.py ├── requirements.txt └── templates │ └── index.html ├── mod7-gaetasks ├── .gcloudignore ├── README.md ├── app.yaml ├── appengine_config.py ├── main.py ├── requirements.txt └── templates │ └── index.html ├── mod7b-gaetasks ├── .gcloudignore ├── README.md ├── app.yaml ├── main.py ├── requirements.txt └── templates │ └── index.html ├── mod8-cloudtasks ├── .gcloudignore ├── README.md ├── app.yaml ├── appengine_config.py ├── main.py ├── requirements.txt └── templates │ └── index.html └── mod9-py3dstasks ├── .gcloudignore ├── README.md ├── app.yaml ├── main.py ├── requirements.txt └── templates └── index.html /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .git/ 2 | .gitignore 3 | env/ 4 | __pycache__/ 5 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/README.md -------------------------------------------------------------------------------- /mod0-baseline/.gcloudignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod0-baseline/.gcloudignore -------------------------------------------------------------------------------- /mod0-baseline/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod0-baseline/README.md -------------------------------------------------------------------------------- /mod0-baseline/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod0-baseline/app.yaml -------------------------------------------------------------------------------- /mod0-baseline/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod0-baseline/index.html -------------------------------------------------------------------------------- /mod0-baseline/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod0-baseline/main.py -------------------------------------------------------------------------------- /mod1-flask/.gcloudignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod1-flask/.gcloudignore -------------------------------------------------------------------------------- /mod1-flask/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod1-flask/README.md -------------------------------------------------------------------------------- /mod1-flask/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod1-flask/app.yaml -------------------------------------------------------------------------------- /mod1-flask/appengine_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod1-flask/appengine_config.py -------------------------------------------------------------------------------- /mod1-flask/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod1-flask/main.py -------------------------------------------------------------------------------- /mod1-flask/requirements.txt: -------------------------------------------------------------------------------- 1 | flask 2 | -------------------------------------------------------------------------------- /mod1-flask/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod1-flask/templates/index.html -------------------------------------------------------------------------------- /mod11-functions/.gcloudignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod11-functions/.gcloudignore -------------------------------------------------------------------------------- /mod11-functions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod11-functions/README.md -------------------------------------------------------------------------------- /mod11-functions/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod11-functions/main.py -------------------------------------------------------------------------------- /mod11-functions/requirements.txt: -------------------------------------------------------------------------------- 1 | flask 2 | google-cloud-ndb==1.11.1 3 | -------------------------------------------------------------------------------- /mod11-functions/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod11-functions/templates/index.html -------------------------------------------------------------------------------- /mod12-memcache/.gcloudignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod12-memcache/.gcloudignore -------------------------------------------------------------------------------- /mod12-memcache/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod12-memcache/README.md -------------------------------------------------------------------------------- /mod12-memcache/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod12-memcache/app.yaml -------------------------------------------------------------------------------- /mod12-memcache/appengine_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod12-memcache/appengine_config.py -------------------------------------------------------------------------------- /mod12-memcache/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod12-memcache/main.py -------------------------------------------------------------------------------- /mod12-memcache/requirements.txt: -------------------------------------------------------------------------------- 1 | flask 2 | -------------------------------------------------------------------------------- /mod12-memcache/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod12-memcache/templates/index.html -------------------------------------------------------------------------------- /mod12b-memcache/.gcloudignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod12b-memcache/.gcloudignore -------------------------------------------------------------------------------- /mod12b-memcache/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod12b-memcache/README.md -------------------------------------------------------------------------------- /mod12b-memcache/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod12b-memcache/app.yaml -------------------------------------------------------------------------------- /mod12b-memcache/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod12b-memcache/main.py -------------------------------------------------------------------------------- /mod12b-memcache/requirements.txt: -------------------------------------------------------------------------------- 1 | flask 2 | appengine-python-standard 3 | -------------------------------------------------------------------------------- /mod12b-memcache/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod12b-memcache/templates/index.html -------------------------------------------------------------------------------- /mod13a-memorystore/.gcloudignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod13a-memorystore/.gcloudignore -------------------------------------------------------------------------------- /mod13a-memorystore/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod13a-memorystore/README.md -------------------------------------------------------------------------------- /mod13a-memorystore/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod13a-memorystore/app.yaml -------------------------------------------------------------------------------- /mod13a-memorystore/appengine_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod13a-memorystore/appengine_config.py -------------------------------------------------------------------------------- /mod13a-memorystore/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod13a-memorystore/main.py -------------------------------------------------------------------------------- /mod13a-memorystore/requirements.txt: -------------------------------------------------------------------------------- 1 | flask 2 | redis 3 | google-cloud-ndb 4 | -------------------------------------------------------------------------------- /mod13a-memorystore/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod13a-memorystore/templates/index.html -------------------------------------------------------------------------------- /mod13b-memorystore/.gcloudignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod13b-memorystore/.gcloudignore -------------------------------------------------------------------------------- /mod13b-memorystore/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod13b-memorystore/README.md -------------------------------------------------------------------------------- /mod13b-memorystore/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod13b-memorystore/app.yaml -------------------------------------------------------------------------------- /mod13b-memorystore/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod13b-memorystore/main.py -------------------------------------------------------------------------------- /mod13b-memorystore/requirements.txt: -------------------------------------------------------------------------------- 1 | flask 2 | redis 3 | google-cloud-ndb 4 | -------------------------------------------------------------------------------- /mod13b-memorystore/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod13b-memorystore/templates/index.html -------------------------------------------------------------------------------- /mod15-blobstore/.gcloudignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod15-blobstore/.gcloudignore -------------------------------------------------------------------------------- /mod15-blobstore/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod15-blobstore/README.md -------------------------------------------------------------------------------- /mod15-blobstore/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod15-blobstore/app.yaml -------------------------------------------------------------------------------- /mod15-blobstore/main-gcs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod15-blobstore/main-gcs.py -------------------------------------------------------------------------------- /mod15-blobstore/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod15-blobstore/main.py -------------------------------------------------------------------------------- /mod15-blobstore/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod15-blobstore/templates/index.html -------------------------------------------------------------------------------- /mod15b-blobstore/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod15b-blobstore/README.md -------------------------------------------------------------------------------- /mod15b-blobstore/app.yaml: -------------------------------------------------------------------------------- 1 | runtime: python310 2 | app_engine_apis: true 3 | -------------------------------------------------------------------------------- /mod15b-blobstore/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod15b-blobstore/main.py -------------------------------------------------------------------------------- /mod15b-blobstore/requirements.txt: -------------------------------------------------------------------------------- 1 | Flask==2.0.1 2 | appengine-python-standard>=1.0.0 -------------------------------------------------------------------------------- /mod15b-blobstore/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod15b-blobstore/templates/index.html -------------------------------------------------------------------------------- /mod16-cloudstorage/.gcloudignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod16-cloudstorage/.gcloudignore -------------------------------------------------------------------------------- /mod16-cloudstorage/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod16-cloudstorage/README.md -------------------------------------------------------------------------------- /mod16-cloudstorage/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod16-cloudstorage/app.yaml -------------------------------------------------------------------------------- /mod16-cloudstorage/appengine_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod16-cloudstorage/appengine_config.py -------------------------------------------------------------------------------- /mod16-cloudstorage/main-migrate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod16-cloudstorage/main-migrate.py -------------------------------------------------------------------------------- /mod16-cloudstorage/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod16-cloudstorage/main.py -------------------------------------------------------------------------------- /mod16-cloudstorage/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod16-cloudstorage/requirements.txt -------------------------------------------------------------------------------- /mod16-cloudstorage/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod16-cloudstorage/templates/index.html -------------------------------------------------------------------------------- /mod18-gaepull/.gcloudignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod18-gaepull/.gcloudignore -------------------------------------------------------------------------------- /mod18-gaepull/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod18-gaepull/README.md -------------------------------------------------------------------------------- /mod18-gaepull/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod18-gaepull/app.yaml -------------------------------------------------------------------------------- /mod18-gaepull/appengine_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod18-gaepull/appengine_config.py -------------------------------------------------------------------------------- /mod18-gaepull/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod18-gaepull/main.py -------------------------------------------------------------------------------- /mod18-gaepull/queue.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod18-gaepull/queue.yaml -------------------------------------------------------------------------------- /mod18-gaepull/requirements.txt: -------------------------------------------------------------------------------- 1 | flask 2 | -------------------------------------------------------------------------------- /mod18-gaepull/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod18-gaepull/templates/index.html -------------------------------------------------------------------------------- /mod19-pubsub/.gcloudignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod19-pubsub/.gcloudignore -------------------------------------------------------------------------------- /mod19-pubsub/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod19-pubsub/README.md -------------------------------------------------------------------------------- /mod19-pubsub/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod19-pubsub/app.yaml -------------------------------------------------------------------------------- /mod19-pubsub/app3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod19-pubsub/app3.yaml -------------------------------------------------------------------------------- /mod19-pubsub/appengine_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod19-pubsub/appengine_config.py -------------------------------------------------------------------------------- /mod19-pubsub/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod19-pubsub/main.py -------------------------------------------------------------------------------- /mod19-pubsub/maker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod19-pubsub/maker.py -------------------------------------------------------------------------------- /mod19-pubsub/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod19-pubsub/requirements.txt -------------------------------------------------------------------------------- /mod19-pubsub/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod19-pubsub/templates/index.html -------------------------------------------------------------------------------- /mod1b-flask/.gcloudignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod1b-flask/.gcloudignore -------------------------------------------------------------------------------- /mod1b-flask/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod1b-flask/README.md -------------------------------------------------------------------------------- /mod1b-flask/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod1b-flask/app.yaml -------------------------------------------------------------------------------- /mod1b-flask/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod1b-flask/main.py -------------------------------------------------------------------------------- /mod1b-flask/requirements.txt: -------------------------------------------------------------------------------- 1 | flask 2 | appengine-python-standard 3 | -------------------------------------------------------------------------------- /mod1b-flask/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod1b-flask/templates/index.html -------------------------------------------------------------------------------- /mod20-gaeusers/.gcloudignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod20-gaeusers/.gcloudignore -------------------------------------------------------------------------------- /mod20-gaeusers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod20-gaeusers/README.md -------------------------------------------------------------------------------- /mod20-gaeusers/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod20-gaeusers/app.yaml -------------------------------------------------------------------------------- /mod20-gaeusers/appengine_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod20-gaeusers/appengine_config.py -------------------------------------------------------------------------------- /mod20-gaeusers/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod20-gaeusers/main.py -------------------------------------------------------------------------------- /mod20-gaeusers/requirements.txt: -------------------------------------------------------------------------------- 1 | flask 2 | -------------------------------------------------------------------------------- /mod20-gaeusers/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod20-gaeusers/templates/index.html -------------------------------------------------------------------------------- /mod21a-idenplat/.gcloudignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod21a-idenplat/.gcloudignore -------------------------------------------------------------------------------- /mod21a-idenplat/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod21a-idenplat/README.md -------------------------------------------------------------------------------- /mod21a-idenplat/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod21a-idenplat/app.yaml -------------------------------------------------------------------------------- /mod21a-idenplat/appengine_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod21a-idenplat/appengine_config.py -------------------------------------------------------------------------------- /mod21a-idenplat/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod21a-idenplat/main.py -------------------------------------------------------------------------------- /mod21a-idenplat/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod21a-idenplat/requirements.txt -------------------------------------------------------------------------------- /mod21a-idenplat/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod21a-idenplat/templates/index.html -------------------------------------------------------------------------------- /mod21b-idenplat/.gcloudignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod21b-idenplat/.gcloudignore -------------------------------------------------------------------------------- /mod21b-idenplat/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod21b-idenplat/README.md -------------------------------------------------------------------------------- /mod21b-idenplat/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod21b-idenplat/app.yaml -------------------------------------------------------------------------------- /mod21b-idenplat/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod21b-idenplat/main.py -------------------------------------------------------------------------------- /mod21b-idenplat/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod21b-idenplat/requirements.txt -------------------------------------------------------------------------------- /mod21b-idenplat/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod21b-idenplat/templates/index.html -------------------------------------------------------------------------------- /mod22-bundled/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod22-bundled/README.md -------------------------------------------------------------------------------- /mod22-bundled/blobstore2/.gcloudignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod22-bundled/blobstore2/.gcloudignore -------------------------------------------------------------------------------- /mod22-bundled/blobstore2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod22-bundled/blobstore2/README.md -------------------------------------------------------------------------------- /mod22-bundled/blobstore2/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod22-bundled/blobstore2/app.yaml -------------------------------------------------------------------------------- /mod22-bundled/blobstore2/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod22-bundled/blobstore2/main.py -------------------------------------------------------------------------------- /mod22-bundled/blobstore3/.gcloudignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod22-bundled/blobstore3/.gcloudignore -------------------------------------------------------------------------------- /mod22-bundled/blobstore3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod22-bundled/blobstore3/README.md -------------------------------------------------------------------------------- /mod22-bundled/blobstore3/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod22-bundled/blobstore3/app.yaml -------------------------------------------------------------------------------- /mod22-bundled/blobstore3/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod22-bundled/blobstore3/main.py -------------------------------------------------------------------------------- /mod22-bundled/blobstore3/requirements.txt: -------------------------------------------------------------------------------- 1 | flask 2 | appengine-python-standard 3 | -------------------------------------------------------------------------------- /mod22-bundled/deferred2/.gcloudignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod22-bundled/deferred2/.gcloudignore -------------------------------------------------------------------------------- /mod22-bundled/deferred2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod22-bundled/deferred2/README.md -------------------------------------------------------------------------------- /mod22-bundled/deferred2/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod22-bundled/deferred2/app.yaml -------------------------------------------------------------------------------- /mod22-bundled/deferred2/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod22-bundled/deferred2/main.py -------------------------------------------------------------------------------- /mod22-bundled/deferred3/.gcloudignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod22-bundled/deferred3/.gcloudignore -------------------------------------------------------------------------------- /mod22-bundled/deferred3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod22-bundled/deferred3/README.md -------------------------------------------------------------------------------- /mod22-bundled/deferred3/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod22-bundled/deferred3/app.yaml -------------------------------------------------------------------------------- /mod22-bundled/deferred3/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod22-bundled/deferred3/main.py -------------------------------------------------------------------------------- /mod22-bundled/deferred3/requirements.txt: -------------------------------------------------------------------------------- 1 | flask 2 | appengine-python-standard 3 | -------------------------------------------------------------------------------- /mod22-bundled/mail2/.gcloudignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod22-bundled/mail2/.gcloudignore -------------------------------------------------------------------------------- /mod22-bundled/mail2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod22-bundled/mail2/README.md -------------------------------------------------------------------------------- /mod22-bundled/mail2/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod22-bundled/mail2/app.yaml -------------------------------------------------------------------------------- /mod22-bundled/mail2/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod22-bundled/mail2/main.py -------------------------------------------------------------------------------- /mod22-bundled/mail3/.gcloudignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod22-bundled/mail3/.gcloudignore -------------------------------------------------------------------------------- /mod22-bundled/mail3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod22-bundled/mail3/README.md -------------------------------------------------------------------------------- /mod22-bundled/mail3/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod22-bundled/mail3/app.yaml -------------------------------------------------------------------------------- /mod22-bundled/mail3/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod22-bundled/mail3/main.py -------------------------------------------------------------------------------- /mod22-bundled/mail3/requirements.txt: -------------------------------------------------------------------------------- 1 | flask 2 | appengine-python-standard 3 | -------------------------------------------------------------------------------- /mod2a-cloudndb/.gcloudignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod2a-cloudndb/.gcloudignore -------------------------------------------------------------------------------- /mod2a-cloudndb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod2a-cloudndb/README.md -------------------------------------------------------------------------------- /mod2a-cloudndb/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod2a-cloudndb/app.yaml -------------------------------------------------------------------------------- /mod2a-cloudndb/appengine_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod2a-cloudndb/appengine_config.py -------------------------------------------------------------------------------- /mod2a-cloudndb/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod2a-cloudndb/main.py -------------------------------------------------------------------------------- /mod2a-cloudndb/requirements.txt: -------------------------------------------------------------------------------- 1 | flask 2 | google-cloud-ndb 3 | -------------------------------------------------------------------------------- /mod2a-cloudndb/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod2a-cloudndb/templates/index.html -------------------------------------------------------------------------------- /mod2b-cloudndb/.gcloudignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod2b-cloudndb/.gcloudignore -------------------------------------------------------------------------------- /mod2b-cloudndb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod2b-cloudndb/README.md -------------------------------------------------------------------------------- /mod2b-cloudndb/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod2b-cloudndb/app.yaml -------------------------------------------------------------------------------- /mod2b-cloudndb/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod2b-cloudndb/main.py -------------------------------------------------------------------------------- /mod2b-cloudndb/requirements.txt: -------------------------------------------------------------------------------- 1 | flask 2 | google-cloud-ndb 3 | -------------------------------------------------------------------------------- /mod2b-cloudndb/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod2b-cloudndb/templates/index.html -------------------------------------------------------------------------------- /mod3a-datastore/.gcloudignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod3a-datastore/.gcloudignore -------------------------------------------------------------------------------- /mod3a-datastore/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod3a-datastore/README.md -------------------------------------------------------------------------------- /mod3a-datastore/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod3a-datastore/app.yaml -------------------------------------------------------------------------------- /mod3a-datastore/appengine_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod3a-datastore/appengine_config.py -------------------------------------------------------------------------------- /mod3a-datastore/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod3a-datastore/main.py -------------------------------------------------------------------------------- /mod3a-datastore/requirements.txt: -------------------------------------------------------------------------------- 1 | flask 2 | google-cloud-datastore==1.15.3 3 | -------------------------------------------------------------------------------- /mod3a-datastore/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod3a-datastore/templates/index.html -------------------------------------------------------------------------------- /mod3b-datastore/.gcloudignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod3b-datastore/.gcloudignore -------------------------------------------------------------------------------- /mod3b-datastore/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod3b-datastore/README.md -------------------------------------------------------------------------------- /mod3b-datastore/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod3b-datastore/app.yaml -------------------------------------------------------------------------------- /mod3b-datastore/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod3b-datastore/main.py -------------------------------------------------------------------------------- /mod3b-datastore/requirements.txt: -------------------------------------------------------------------------------- 1 | flask==1.1.2 2 | google-cloud-datastore==2.3.0 3 | -------------------------------------------------------------------------------- /mod3b-datastore/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod3b-datastore/templates/index.html -------------------------------------------------------------------------------- /mod4a-rundocker/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod4a-rundocker/.dockerignore -------------------------------------------------------------------------------- /mod4a-rundocker/.gcloudignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod4a-rundocker/.gcloudignore -------------------------------------------------------------------------------- /mod4a-rundocker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod4a-rundocker/Dockerfile -------------------------------------------------------------------------------- /mod4a-rundocker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod4a-rundocker/README.md -------------------------------------------------------------------------------- /mod4a-rundocker/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod4a-rundocker/main.py -------------------------------------------------------------------------------- /mod4a-rundocker/requirements.txt: -------------------------------------------------------------------------------- 1 | gunicorn 2 | flask 3 | google-cloud-ndb==1.11.1 4 | -------------------------------------------------------------------------------- /mod4a-rundocker/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod4a-rundocker/templates/index.html -------------------------------------------------------------------------------- /mod4b-rundocker/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod4b-rundocker/.dockerignore -------------------------------------------------------------------------------- /mod4b-rundocker/.gcloudignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod4b-rundocker/.gcloudignore -------------------------------------------------------------------------------- /mod4b-rundocker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod4b-rundocker/Dockerfile -------------------------------------------------------------------------------- /mod4b-rundocker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod4b-rundocker/README.md -------------------------------------------------------------------------------- /mod4b-rundocker/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod4b-rundocker/main.py -------------------------------------------------------------------------------- /mod4b-rundocker/requirements.txt: -------------------------------------------------------------------------------- 1 | gunicorn 2 | flask 3 | google-cloud-datastore==2.3.0 4 | -------------------------------------------------------------------------------- /mod4b-rundocker/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod4b-rundocker/templates/index.html -------------------------------------------------------------------------------- /mod5-runbldpks/.gcloudignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod5-runbldpks/.gcloudignore -------------------------------------------------------------------------------- /mod5-runbldpks/Procfile: -------------------------------------------------------------------------------- 1 | web: gunicorn -b :$PORT -w 2 main:app 2 | -------------------------------------------------------------------------------- /mod5-runbldpks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod5-runbldpks/README.md -------------------------------------------------------------------------------- /mod5-runbldpks/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod5-runbldpks/main.py -------------------------------------------------------------------------------- /mod5-runbldpks/requirements.txt: -------------------------------------------------------------------------------- 1 | gunicorn 2 | flask 3 | google-cloud-ndb 4 | -------------------------------------------------------------------------------- /mod5-runbldpks/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod5-runbldpks/templates/index.html -------------------------------------------------------------------------------- /mod6-firestore/.gcloudignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod6-firestore/.gcloudignore -------------------------------------------------------------------------------- /mod6-firestore/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod6-firestore/README.md -------------------------------------------------------------------------------- /mod6-firestore/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod6-firestore/app.yaml -------------------------------------------------------------------------------- /mod6-firestore/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod6-firestore/main.py -------------------------------------------------------------------------------- /mod6-firestore/requirements.txt: -------------------------------------------------------------------------------- 1 | flask 2 | google-cloud-firestore==2.3.4 3 | -------------------------------------------------------------------------------- /mod6-firestore/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod6-firestore/templates/index.html -------------------------------------------------------------------------------- /mod7-gaetasks/.gcloudignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod7-gaetasks/.gcloudignore -------------------------------------------------------------------------------- /mod7-gaetasks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod7-gaetasks/README.md -------------------------------------------------------------------------------- /mod7-gaetasks/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod7-gaetasks/app.yaml -------------------------------------------------------------------------------- /mod7-gaetasks/appengine_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod7-gaetasks/appengine_config.py -------------------------------------------------------------------------------- /mod7-gaetasks/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod7-gaetasks/main.py -------------------------------------------------------------------------------- /mod7-gaetasks/requirements.txt: -------------------------------------------------------------------------------- 1 | flask 2 | -------------------------------------------------------------------------------- /mod7-gaetasks/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod7-gaetasks/templates/index.html -------------------------------------------------------------------------------- /mod7b-gaetasks/.gcloudignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod7b-gaetasks/.gcloudignore -------------------------------------------------------------------------------- /mod7b-gaetasks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod7b-gaetasks/README.md -------------------------------------------------------------------------------- /mod7b-gaetasks/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod7b-gaetasks/app.yaml -------------------------------------------------------------------------------- /mod7b-gaetasks/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod7b-gaetasks/main.py -------------------------------------------------------------------------------- /mod7b-gaetasks/requirements.txt: -------------------------------------------------------------------------------- 1 | flask 2 | appengine-python-standard 3 | -------------------------------------------------------------------------------- /mod7b-gaetasks/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod7b-gaetasks/templates/index.html -------------------------------------------------------------------------------- /mod8-cloudtasks/.gcloudignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod8-cloudtasks/.gcloudignore -------------------------------------------------------------------------------- /mod8-cloudtasks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod8-cloudtasks/README.md -------------------------------------------------------------------------------- /mod8-cloudtasks/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod8-cloudtasks/app.yaml -------------------------------------------------------------------------------- /mod8-cloudtasks/appengine_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod8-cloudtasks/appengine_config.py -------------------------------------------------------------------------------- /mod8-cloudtasks/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod8-cloudtasks/main.py -------------------------------------------------------------------------------- /mod8-cloudtasks/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod8-cloudtasks/requirements.txt -------------------------------------------------------------------------------- /mod8-cloudtasks/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod8-cloudtasks/templates/index.html -------------------------------------------------------------------------------- /mod9-py3dstasks/.gcloudignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod9-py3dstasks/.gcloudignore -------------------------------------------------------------------------------- /mod9-py3dstasks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod9-py3dstasks/README.md -------------------------------------------------------------------------------- /mod9-py3dstasks/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod9-py3dstasks/app.yaml -------------------------------------------------------------------------------- /mod9-py3dstasks/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod9-py3dstasks/main.py -------------------------------------------------------------------------------- /mod9-py3dstasks/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod9-py3dstasks/requirements.txt -------------------------------------------------------------------------------- /mod9-py3dstasks/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlecodelabs/migrate-python2-appengine/HEAD/mod9-py3dstasks/templates/index.html --------------------------------------------------------------------------------