Gaurav Sharma
Gaurav Sharma

Reputation: 421

Migrating app from Python2 to Python3 on appengine standard environment

I'm migrating the app from python2 to python3. While migrating I found that GAE Modules API is not supported in python3. Below docs says that:

https://cloud.google.com/appengine/docs/standard/python3/python-differences#modules

You can use a combination of environment variables and the App Engine Admin API to obtain information about and modify your application's running services

does it mean that we need to explicitly provide the URL in yaml to call that host?

Looking for an alternate solution

Upvotes: 1

Views: 539

Answers (1)

Dustin Ingram
Dustin Ingram

Reputation: 21530

If I understand your question correctly, instead of making calls to the API directly, you can use the App Engine Admin API Client Library for Python.

Upvotes: 1

Related Questions