Can I use IronPython to develop GUIs for the Google App Engine?

I am developing a simple Python program with a (dynamic) form interface, but it needs to be run in Google App Engine. I understand that IronPython allows you to use the Visual Studio interface interface and class builder when programming with Python, but is it compatible with the Google App Engine?

+3
source share
1 answer

The Google App Engine can only run clean Python code, and all Python is not even supported. No, you cannot do things like IronPython.

Python, Django. - .NET, Java.

+3

Source: https://habr.com/ru/post/1769003/


All Articles