Hui Lin
Hui Lin

Reputation: 81

How to migrate Google Appengine Python runtime 2.7 to 3.7?

I'm going to migrate Google Appengine Python runtime 2.7 to 3.7. How can I achieve it seamless?

Upvotes: 2

Views: 156

Answers (1)

CodeBoy
CodeBoy

Reputation: 3300

Understanding differences between Python 2 and Python 3 on the App Engine standard environment, buried in the official docs, describes the challenges. You will not be able to migrate seamlessly unless you do not use ndb, memcache, email, or most of the other APIs that made GAE-Std-Py27 a PaaS. Most of these APIs are not available (yet?) in GAE-Std-Py3.

Upvotes: 2

Related Questions